diff --git a/wpf/Charts/Adornments/Label.md b/wpf/Charts/Adornments/Label.md
index fb9e158188..aacce8c9e1 100644
--- a/wpf/Charts/Adornments/Label.md
+++ b/wpf/Charts/Adornments/Label.md
@@ -67,29 +67,29 @@ The following code example demonstrates the customization of label using the abo
{% highlight xaml %}
-
-
-
-
+
+
+
+
{% endhighlight %}
{% highlight c# %}
ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
- {
+ {
- ShowLabel = true,
- LabelPosition = AdornmentsLabelPosition.Outer,
- Foreground = new SolidColorBrush(Colors.Black),
- BorderBrush = new SolidColorBrush(Colors.Black),
- Background = new SolidColorBrush(Colors.DarkGray),
- BorderThickness = new Thickness(1),
- Margin = new Thickness(1),
- FontStyle = FontStyles.Italic,
- FontFamily = new FontFamily("Calibri"),
- FontSize = 11
- };
+ ShowLabel = true,
+ LabelPosition = AdornmentsLabelPosition.Outer,
+ Foreground = new SolidColorBrush(Colors.Black),
+ BorderBrush = new SolidColorBrush(Colors.Black),
+ Background = new SolidColorBrush(Colors.DarkGray),
+ BorderThickness = new Thickness(1),
+ Margin = new Thickness(1),
+ FontStyle = FontStyles.Italic,
+ FontFamily = new FontFamily("Calibri"),
+ FontSize = 11
+ };
{% endhighlight %}
@@ -148,19 +148,19 @@ The default appearance of the label can be customized using [`LabelTemplate`](ht
{% highlight c# %}
ColumnSeries series = new ColumnSeries()
- {
- ItemsSource = new ViewModel().Demands,
- XBindingPath = "Category",
- YBindingPath = "Value",
- Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
- };
+ {
+ ItemsSource = new ViewModel().Demands,
+ XBindingPath = "Category",
+ YBindingPath = "Value",
+ Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
+ };
- ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
- {
- ShowLabel = true,
- LabelPosition = AdornmentsLabelPosition.Outer,
- LabelTemplate = this.Resources["adornmentTemplate"] as DataTemplate
- };
+ ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
+ {
+ ShowLabel = true,
+ LabelPosition = AdornmentsLabelPosition.Outer,
+ LabelTemplate = this.Resources["adornmentTemplate"] as DataTemplate
+ };
series.AdornmentsInfo = adornmentInfo;
{% endhighlight %}
@@ -236,7 +236,6 @@ The connector line can be customized using the below properies.
* [`ConnectorHeight`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_ConnectorHeight)
* [`ConnectorLineStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_ConnectorLineStyle)
* [`ConnectorRotationAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_ConnectorRotationAngle)
-* [`ConnectorLineStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_ConnectorLineStyle)
The following code example shows the customization options for connector line:
@@ -272,22 +271,22 @@ The following code example shows the customization options for connector line:
{% highlight c# %}
PieSeries series = new PieSeries()
- {
- ItemsSource = new ServerViewModel().Performance,
- XBindingPath = "Year",
- YBindingPath = "Plastic",
- LabelPosition = CircularSeriesLabelPosition.OutsideExtended,
- Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
- };
+ {
+ ItemsSource = new ServerViewModel().Performance,
+ XBindingPath = "Year",
+ YBindingPath = "Plastic",
+ LabelPosition = CircularSeriesLabelPosition.OutsideExtended,
+ Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
+ };
ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
- {
- ShowLabel = true,
- ShowConnectorLine = true,
- UseSeriesPalette = true,
- ConnectorLineStyle=this.Resources["lineStyle"] as Style
- LabelPosition =AdornmentsLabelPosition.Outer,
- };
+ {
+ ShowLabel = true,
+ ShowConnectorLine = true,
+ UseSeriesPalette = true,
+ ConnectorLineStyle=this.Resources["lineStyle"] as Style
+ LabelPosition =AdornmentsLabelPosition.Outer,
+ };
series.AdornmentsInfo = adornmentInfo;
{% endhighlight %}
@@ -298,7 +297,7 @@ The following code example shows the customization options for connector line:
**Connector Type**
-[`ConnectorType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_ConnectorType) property in AccumulationSeries is used to specify the connector line type such as [`Line`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ConnectorMode.html) or [`Bezier`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ConnectorMode.html). This property is only for AccumulationSeries like PieSeries, DoughnutSeries, PyramidSeries and FunnelSeries.
+[`ConnectorType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_ConnectorType) property in AccumulationSeries is used to specify the connector line type such as [`Line`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ConnectorMode.html#Syncfusion_UI_Xaml_Charts_ConnectorMode_Line) or [`Bezier`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ConnectorMode.html#Syncfusion_UI_Xaml_Charts_ConnectorMode_Bezier). This property is only for AccumulationSeries like PieSeries, DoughnutSeries, PyramidSeries and FunnelSeries.
{% tabs %}
@@ -319,26 +318,26 @@ The following code example shows the customization options for connector line:
{% highlight c# %}
PieSeries series = new PieSeries()
- {
- ItemsSource = new ServerViewModel().Performance,
- XBindingPath = "Year",
- YBindingPath = "Plastic",
- EnableSmartLabels = true,
- ExplodeAll = true,
- ExplodeRadius = 3,
- ConnectorType=ConnectorMode.Bezier,
- LabelPosition = CircularSeriesLabelPosition.OutsideExtended,
- Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
- };
+ {
+ ItemsSource = new ServerViewModel().Performance,
+ XBindingPath = "Year",
+ YBindingPath = "Plastic",
+ EnableSmartLabels = true,
+ ExplodeAll = true,
+ ExplodeRadius = 3,
+ ConnectorType=ConnectorMode.Bezier,
+ LabelPosition = CircularSeriesLabelPosition.OutsideExtended,
+ Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
+ };
ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
- {
- ShowLabel = true,
- ShowConnectorLine = true,
- HorizontalAlignment = HorizontalAlignment.Center,
- VerticalAlignment = VerticalAlignment.Center,
- ConnectorHeight= 80
- };
+ {
+ ShowLabel = true,
+ ShowConnectorLine = true,
+ HorizontalAlignment = HorizontalAlignment.Center,
+ VerticalAlignment = VerticalAlignment.Center,
+ ConnectorHeight= 80
+ };
{% endhighlight %}
@@ -366,9 +365,9 @@ The following code example shows the customization options for connector line:
{% highlight xaml %}
-
+
-
+
{% endhighlight %}
@@ -394,12 +393,12 @@ The following code example demonstrates the EnableSmartLabels property:
{% highlight xaml %}
-
-
-
-
-
+
+
+
+
+
{% endhighlight %}
@@ -434,4 +433,4 @@ The following code example demonstrates the EnableSmartLabels property:

-N> For circular series, the adornment position can be changed to [`Inside`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesLabelPosition.html), [`Outside`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesLabelPosition.html) or [`OutsideExtended`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesLabelPosition.html) using the [`LabelPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_LabelPosition) property.
+N> For circular series, the adornment position can be changed to [`Inside`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesLabelPosition.html#Syncfusion_UI_Xaml_Charts_CircularSeriesLabelPosition_Inside), [`Outside`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesLabelPosition.html#Syncfusion_UI_Xaml_Charts_CircularSeriesLabelPosition_Outside) or [`OutsideExtended`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesLabelPosition.html#Syncfusion_UI_Xaml_Charts_CircularSeriesLabelPosition_OutsideExtended) using the [`LabelPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_LabelPosition) property.
diff --git a/wpf/Charts/Adornments/Marker.md b/wpf/Charts/Adornments/Marker.md
index b08c1dc1d1..5194c1bd5a 100644
--- a/wpf/Charts/Adornments/Marker.md
+++ b/wpf/Charts/Adornments/Marker.md
@@ -14,28 +14,28 @@ Data Marker is used to mark the data points with built-in available shapes.
## Define Data Marker
To enable the marker in adornments you have to set the [`ShowMarker`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_ShowMarker) property as True. By default, there is no symbol displayed, you have to add the desired symbol using [`Symbol`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_Symbol) property.
-The following code example demonstrates the column series with [`Diamond`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html) symbol:
+The following code example demonstrates the column series with [`Diamond`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Diamond) symbol:
{% tabs %}
{% highlight xaml %}
-
-
-
-
+
+
+
+
{% endhighlight %}
{% highlight c# %}
ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
- {
- ShowMarker = true,
- Symbol = ChartSymbol.Diamond,
- SymbolInterior=new SolidColorBrush(Colors.Black)
- };
+ {
+ ShowMarker = true,
+ Symbol = ChartSymbol.Diamond,
+ SymbolInterior=new SolidColorBrush(Colors.Black)
+ };
{% endhighlight %}
@@ -73,9 +73,9 @@ We have some predefined symbols such as
{% highlight xaml %}
-
- o>
+
+o>
{% endhighlight %}
diff --git a/wpf/Charts/Adornments/Positioning-Adornment.md b/wpf/Charts/Adornments/Positioning-Adornment.md
index 99994e5c5b..eace15e04e 100644
--- a/wpf/Charts/Adornments/Positioning-Adornment.md
+++ b/wpf/Charts/Adornments/Positioning-Adornment.md
@@ -11,9 +11,9 @@ documentation: ug
The positioning of adornments inside the series is defined using [`AdornmentsPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAdornmentInfoBase.html#Syncfusion_UI_Xaml_Charts_ChartAdornmentInfoBase_AdornmentsPosition) property.
-* [`Top`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsPosition.html) - Positions the Adornment at the top edge point of a chart segment.
-* [`Bottom`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsPosition.html) - Positions the Adornment at the bottom edge point of a chart segment.
-* [`TopAndBottom`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsPosition.html) - Positions the Adornment at the center point of a chart segment.
+* [`Top`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsPosition_Top) - Positions the Adornment at the top edge point of a chart segment.
+* [`Bottom`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsPosition_Bottom) - Positions the Adornment at the bottom edge point of a chart segment.
+* [`TopAndBottom`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsPosition_TopAndBottom) - Positions the Adornment at the center point of a chart segment.
N> This behavior varies based on the chart series type.
@@ -23,21 +23,21 @@ The following code example explains the positioning of adornments in the middle
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
ColumnSeries series = new ColumnSeries();
- ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
- {
- ShowMarker = true,
- Symbol = ChartSymbol.Ellipse,
- SymbolInterior = new SolidColorBrush(Colors.DarkGray),
- AdornmentsPosition=AdornmentsPosition.TopAndBottom
- };
+ ChartAdornmentInfo adornmentInfo = new ChartAdornmentInfo()
+ {
+ ShowMarker = true,
+ Symbol = ChartSymbol.Ellipse,
+ SymbolInterior = new SolidColorBrush(Colors.DarkGray),
+ AdornmentsPosition=AdornmentsPosition.TopAndBottom
+ };
series.AdornmentsInfo = adornmentInfo;
{% endhighlight %}
@@ -55,11 +55,11 @@ Other than the above positioning options, SfChart providing additional customiza
The following are the values for this property:
-* [`Default`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html)
-* [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html)
-* [`Inner`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html)
-* [`Outer`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html)
-* [`Center`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html)
+* [`Default`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsLabelPosition_Default)
+* [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsLabelPosition_Auto)
+* [`Inner`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsLabelPosition_Inner)
+* [`Outer`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsLabelPosition_Outer)
+* [`Center`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AdornmentsLabelPosition.html#Syncfusion_UI_Xaml_Charts_AdornmentsLabelPosition_Center)
The following code sample illustrates the center position of data marker labels,
diff --git a/wpf/Charts/Annotations.md b/wpf/Charts/Annotations.md
index 88a749b3d2..beecdfa048 100644
--- a/wpf/Charts/Annotations.md
+++ b/wpf/Charts/Annotations.md
@@ -24,21 +24,21 @@ You can create an instance for any type of Annotation and add it to [`Annotation
{% highlight xml %}
-
-
-
-
+
+
+
+
{% endhighlight %}
{% highlight c# %}
- EllipseAnnotation annotation=new EllipseAnnotation()
- {
- X1 = 1.5, Y1 = 20,
- X2 = 3, Y2 = 23,
- Text = "Ellipse"
- };
+EllipseAnnotation annotation=new EllipseAnnotation()
+{
+ X1 = 1.5, Y1 = 20,
+ X2 = 3, Y2 = 23,
+ Text = "Ellipse"
+};
chart.Annotations.Add(annotation);
@@ -61,8 +61,8 @@ To position the annotation based on axis, set the X1 and Y1, X2 and Y2 propertie
{% highlight xml %}
-
-
+
+
{% endhighlight %}
@@ -94,20 +94,20 @@ To position based on the pixel values you have to set the CoordinateUnit as Pixe
{% highlight xml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- RectangleAnnotation annotation=new RectangleAnnotation()
- {
- X1 = 50, Y1 = 150,
- X2 = 100, Y2 = 125,
- CoordinateUnit=CoordinateUnit.Pixel,
- Text="Pixel Value"
- };
+RectangleAnnotation annotation=new RectangleAnnotation()
+{
+ X1 = 50, Y1 = 150,
+ X2 = 100, Y2 = 125,
+ CoordinateUnit=CoordinateUnit.Pixel,
+ Text="Pixel Value"
+};
chart.Annotations.Add(annotation);
@@ -161,65 +161,65 @@ You can also add annotation for a particular axis when there is multiple axes us
{% highlight c# %}
- SfChart chart = new SfChart();
- chart.RowDefinitions.Add(new ChartRowDefinition());
- chart.RowDefinitions.Add(new ChartRowDefinition());
- chart.PrimaryAxis = new CategoryAxis();
- chart.SecondaryAxis = new NumericalAxis();
- ChartBase.SetRow(chart.SecondaryAxis, 0);
-
- HorizontalLineAnnotation annotation = new HorizontalLineAnnotation()
- {
- X1 = -0.5,
- Y1 = 1700,
- X2 = 3.5,
- YAxisName = "ColumnAxis",
- LineCap=LineCap.Arrow,
- Stroke=new SolidColorBrush(Colors.DarkGray)
- };
-
- RectangleAnnotation rect = new RectangleAnnotation()
- {
- YAxisName = "ScatterAxis",
- Fill = new SolidColorBrush(Colors.LightGray),
- Stroke = new SolidColorBrush(Colors.DarkGray),
- Opacity = 0.5,
- X1 = 0.5,
- Y1 = 900,
- X2 = 2.5,
- Y2 = 1600
- };
-
- ColumnSeries columnSeries = new ColumnSeries()
- {
- ItemsSource = new CategoricalViewModel().CategoricalData,
- XBindingPath = "Category",
- YBindingPath = "Plastic",
- Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
- };
-
- ScatterSeries scatterSeries = new ScatterSeries()
- {
- ItemsSource = new CategoricalViewModel().CategoricalData,
- XBindingPath = "Category",
- YBindingPath = "Plastic",
- Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
- };
-
- NumericalAxis axis = new NumericalAxis()
- {
- Name = "ScatterAxis",
- Maximum = 2000,
- FontSize = 11,
- Interval = 500,
- ShowGridLines = false
- };
-
- scatterSeries.YAxis = axis;
- ChartBase.SetRow(axis, 1);
-
- chart.Series.Add(columnSeries);
- chart.Series.Add(scatterSeries);
+SfChart chart = new SfChart();
+chart.RowDefinitions.Add(new ChartRowDefinition());
+chart.RowDefinitions.Add(new ChartRowDefinition());
+chart.PrimaryAxis = new CategoryAxis();
+chart.SecondaryAxis = new NumericalAxis();
+ChartBase.SetRow(chart.SecondaryAxis, 0);
+
+HorizontalLineAnnotation annotation = new HorizontalLineAnnotation()
+{
+ X1 = -0.5,
+ Y1 = 1700,
+ X2 = 3.5,
+ YAxisName = "ColumnAxis",
+ LineCap=LineCap.Arrow,
+ Stroke=new SolidColorBrush(Colors.DarkGray)
+};
+
+RectangleAnnotation rect = new RectangleAnnotation()
+{
+ YAxisName = "ScatterAxis",
+ Fill = new SolidColorBrush(Colors.LightGray),
+ Stroke = new SolidColorBrush(Colors.DarkGray),
+ Opacity = 0.5,
+ X1 = 0.5,
+ Y1 = 900,
+ X2 = 2.5,
+ Y2 = 1600
+};
+
+ColumnSeries columnSeries = new ColumnSeries()
+{
+ ItemsSource = new CategoricalViewModel().CategoricalData,
+ XBindingPath = "Category",
+ YBindingPath = "Plastic",
+ Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
+};
+
+ScatterSeries scatterSeries = new ScatterSeries()
+{
+ ItemsSource = new CategoricalViewModel().CategoricalData,
+ XBindingPath = "Category",
+ YBindingPath = "Plastic",
+ Interior = new SolidColorBrush(Color.FromRgb(0x77, 0x77, 0x77))
+};
+
+NumericalAxis axis = new NumericalAxis()
+{
+ Name = "ScatterAxis",
+ Maximum = 2000,
+ FontSize = 11,
+ Interval = 500,
+ ShowGridLines = false
+};
+
+scatterSeries.YAxis = axis;
+ChartBase.SetRow(axis, 1);
+
+chart.Series.Add(columnSeries);
+chart.Series.Add(scatterSeries);
{% endhighlight %}
@@ -235,21 +235,21 @@ You can also add annotation for a particular axis when there is multiple axes us
{% highlight xml %}
-
-
-
-
+
+
+
+
{% endhighlight %}
{% highlight c# %}
- TextAnnotation annotation=new TextAnnotation()
- {
- X1 = 2.5,
- Y1 = 1400,
- Text="Annotation"
- };
+TextAnnotation annotation=new TextAnnotation()
+{
+ X1 = 2.5,
+ Y1 = 1400,
+ Text="Annotation"
+};
chart.Annotations.Add(annotation);
@@ -288,24 +288,24 @@ The following properties are used to customize the text:
{% highlight xml %}
-
+
{% endhighlight %}
{% highlight c# %}
- TextAnnotation annotation = new TextAnnotation()
- {
- X1 = 3.5,
- Y1 = 500,
- Text = "Annotation",
- EnableEditing=true,
- Foreground=new SolidColorBrush(Colors.Black),
- FontStyle=FontStyles.Bold,
- HorizontalAlignment=HorizontalAlignment.Stretch,
- VerticalAlignment=VerticalAlignment.Stretch
- };
+TextAnnotation annotation = new TextAnnotation()
+{
+ X1 = 3.5,
+ Y1 = 500,
+ Text = "Annotation",
+ EnableEditing=true,
+ Foreground=new SolidColorBrush(Colors.Black),
+ FontStyle=FontStyles.Bold,
+ HorizontalAlignment=HorizontalAlignment.Stretch,
+ VerticalAlignment=VerticalAlignment.Stretch
+};
chart.Annotations.Add(annotation);
@@ -353,21 +353,21 @@ The [`EllipseAnnotation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.
{% highlight xml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- EllipseAnnotation ellipse = new EllipseAnnotation()
- {
- X1 = 1.5,
- Y1 = 1400,
- X2 = 2.5,
- Y2 = 1600,
- Text = "Ellipse"
- };
+EllipseAnnotation ellipse = new EllipseAnnotation()
+{
+ X1 = 1.5,
+ Y1 = 1400,
+ X2 = 2.5,
+ Y2 = 1600,
+ Text = "Ellipse"
+};
{% endhighlight %}
@@ -383,8 +383,8 @@ The [`RectangleAnnotation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xam
{% highlight xml %}
-
-
+
+
{% endhighlight %}
@@ -413,21 +413,21 @@ The [`LineAnnotation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Cha
{% highlight xml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- LineAnnotation line = new LineAnnotation()
- {
- X1 = 1.5,
- Y1 = 1150,
- X2 = 3.5,
- Y2 = 1600,
- Text = "Line"
- };
+LineAnnotation line = new LineAnnotation()
+{
+ X1 = 1.5,
+ Y1 = 1150,
+ X2 = 3.5,
+ Y2 = 1600,
+ Text = "Line"
+};
{% endhighlight %}
@@ -443,26 +443,25 @@ The [`VerticalLineAnnotation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.
{% highlight xml %}
-
-
+
-
+
{% endhighlight %}
{% highlight c# %}
- HorizontalLineAnnotation hor = new HorizontalLineAnnotation()
- {
- X1 = -0.5,
- Y1 = 1500,
- X2 = 4.5,
- };
+HorizontalLineAnnotation hor = new HorizontalLineAnnotation()
+{
+ X1 = -0.5,
+ Y1 = 1500,
+ X2 = 4.5,
+};
- VerticalLineAnnotation ver = new VerticalLineAnnotation()
- {
- X1 = 2.5
- };
+VerticalLineAnnotation ver = new VerticalLineAnnotation()
+{
+ X1 = 2.5
+};
{% endhighlight %}
@@ -483,28 +482,27 @@ The appearance of the LineAnnotation, VerticalLineAnnotation and HorizontalLineA
**Adding arrow to line annotation**
-To display single headed arrow, set the [`LineCap`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineAnnotation.html#Syncfusion_UI_Xaml_Charts_LineAnnotation_LineCap) property to [`Arrow`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineCap.html). The default value of the [`LineCap`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineAnnotation.html#Syncfusion_UI_Xaml_Charts_LineAnnotation_LineCap) property is [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineCap.html).
+To display single headed arrow, set the [`LineCap`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineAnnotation.html#Syncfusion_UI_Xaml_Charts_LineAnnotation_LineCap) property to [`Arrow`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineCap.html#Syncfusion_UI_Xaml_Charts_LineCap_Arrow). The default value of the [`LineCap`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineAnnotation.html#Syncfusion_UI_Xaml_Charts_LineAnnotation_LineCap) property is [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LineCap.html#Syncfusion_UI_Xaml_Charts_LineCap_None).
{% tabs %}
{% highlight xml %}
-
-
+
{% endhighlight %}
{% highlight c# %}
- LineAnnotation ellipse = new LineAnnotation()
- {
- X1 = 0.5,
- Y1 = 1500,
- X2 = 3.5,
- Y2 = 1500,
- Text = "Line",
- LineCap=LineCap.Arrow
- };
+LineAnnotation ellipse = new LineAnnotation()
+{
+ X1 = 0.5,
+ Y1 = 1500,
+ X2 = 3.5,
+ Y2 = 1500,
+ Text = "Line",
+ LineCap=LineCap.Arrow
+};
{% endhighlight %}
@@ -521,28 +519,27 @@ To display single headed arrow, set the [`LineCap`](https://help.syncfusion.com/
{% highlight xml %}
-
-
+
-
+
{% endhighlight %}
{% highlight c# %}
- HorizontalLineAnnotation hor = new HorizontalLineAnnotation()
- {
- X1 = -0.5,
- Y1 = 1500,
- X2 = 4.5,
- ShowAxisLabel=true
- };
+HorizontalLineAnnotation hor = new HorizontalLineAnnotation()
+{
+ X1 = -0.5,
+ Y1 = 1500,
+ X2 = 4.5,
+ ShowAxisLabel=true
+};
- VerticalLineAnnotation ver = new VerticalLineAnnotation()
- {
- X1 = 2.5,
- ShowAxisLabel=true
- };
+VerticalLineAnnotation ver = new VerticalLineAnnotation()
+{
+ X1 = 2.5,
+ ShowAxisLabel=true
+};
{% endhighlight %}
@@ -563,24 +560,24 @@ The text alignment can be changed using [`HorizontalTextAlignment`](https://help
{% tabs %}
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- EllipseAnnotation ellipse = new EllipseAnnotation()
- {
- X1 = 1.5,
- Y1 = 1400,
- X2 = 2.5,
- Y2 = 1600,
- HorizontalTextAlignment =HorizontalAlignment.Center,
- VerticalTextAlignment = VerticalAlignment.Center,
- FontStyle=FontStyles.Bold,
- Text = "Ellipse"
- };
+EllipseAnnotation ellipse = new EllipseAnnotation()
+{
+ X1 = 1.5,
+ Y1 = 1400,
+ X2 = 2.5,
+ Y2 = 1600,
+ HorizontalTextAlignment =HorizontalAlignment.Center,
+ VerticalTextAlignment = VerticalAlignment.Center,
+ FontStyle=FontStyles.Bold,
+ Text = "Ellipse"
+};
{% endhighlight %}
@@ -607,32 +604,30 @@ SfChart allows customization of shape annotation using the following properties.
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- SfChart chart = new SfChart();
+SfChart chart = new SfChart();
+
+HorizontalLineAnnotation annotation = new HorizontalLineAnnotation()
+{
+ X1 = -0.5,
+ X2 = 4.5,
+ Y1 = 1500,
+ StrokeThickness = 3,
+ Stroke = new SolidColorBrush(Colors.DarkGray),
+ Fill = new SolidColorBrush(Colors.LightGray),
+ StrokeDashArray = new DoubleCollection() { 1, 3 },
+ StrokeStartLineCap = PenLineCap.Square,
+ StrokeEndLineCap = PenLineCap.Square,
+ StrokeDashCap = PenLineCap.Round
+};
- HorizontalLineAnnotation annotation = new HorizontalLineAnnotation()
- {
-
- X1 = -0.5,
- X2 = 4.5,
- Y1 = 1500,
- StrokeThickness = 3,
- Stroke = new SolidColorBrush(Colors.DarkGray),
- Fill = new SolidColorBrush(Colors.LightGray),
- StrokeDashArray = new DoubleCollection() { 1, 3 },
- StrokeStartLineCap = PenLineCap.Square,
- StrokeEndLineCap = PenLineCap.Square,
- StrokeDashCap = PenLineCap.Round
- };
-
- chart.Annotations.Add(annotation);
+chart.Annotations.Add(annotation);
{% endhighlight %}
@@ -656,25 +651,24 @@ The following API’s are used in ImageAnnotation.
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- ImageAnnotation annotation = new ImageAnnotation()
- {
- Text = "Annotation",
- HorizontalTextAlignment = HorizontalAlignment.Center,
- VerticalTextAlignment = VerticalAlignment.Top,
- X1 = 2.5,
- Y1 = 1200,
- X2 = 3.6,
- Y2 = "1700",
- ImageSource = new BitmapImage(new Uri(@"Images\Graduate.png", UriKind.RelativeOrAbsolute))
- };
+ImageAnnotation annotation = new ImageAnnotation()
+{
+ Text = "Annotation",
+ HorizontalTextAlignment = HorizontalAlignment.Center,
+ VerticalTextAlignment = VerticalAlignment.Top,
+ X1 = 2.5,
+ Y1 = 1200,
+ X2 = 3.6,
+ Y2 = "1700",
+ ImageSource = new BitmapImage(new Uri(@"Images\Graduate.png", UriKind.RelativeOrAbsolute))
+};
{% endhighlight %}
@@ -704,25 +698,25 @@ The following code example demonstrates the dragging the rectangle annotation.
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- RectangleAnnotation an = new RectangleAnnotation()
- {
- X1 = 0.6,
- Y1 = 1800,
- X2 = 2.2,
- Y2 = 1500,
- Fill = new SolidColorBrush(Colors.LightGray),
- Stroke = new SolidColorBrush(Colors.DarkGray),
- CanDrag = true,
- Opacity = 0.5
- };
+RectangleAnnotation an = new RectangleAnnotation()
+{
+ X1 = 0.6,
+ Y1 = 1800,
+ X2 = 2.2,
+ Y2 = 1500,
+ Fill = new SolidColorBrush(Colors.LightGray),
+ Stroke = new SolidColorBrush(Colors.DarkGray),
+ CanDrag = true,
+ Opacity = 0.5
+};
{% endhighlight %}
@@ -741,29 +735,29 @@ You can resize the annotation by enabling [`CanResize`](https://help.syncfusion.
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- RectangleAnnotation an = new RectangleAnnotation()
- {
- X1 = 0.6,
- Y1 = 1800,
- X2 = 2.2,
- Y2 = 1500,
- Fill = new SolidColorBrush(Colors.LightGray),
- Stroke = new SolidColorBrush(Colors.DarkGray),
- CanDrag = true,
- Opacity = 0.5
- };
+RectangleAnnotation an = new RectangleAnnotation()
+{
+ X1 = 0.6,
+ Y1 = 1800,
+ X2 = 2.2,
+ Y2 = 1500,
+ Fill = new SolidColorBrush(Colors.LightGray),
+ Stroke = new SolidColorBrush(Colors.DarkGray),
+ CanDrag = true,
+ Opacity = 0.5
+};
- {% endhighlight %}
+{% endhighlight %}
- {% endtabs %}
+{% endtabs %}

@@ -785,27 +779,27 @@ The following code example demonstrates the default tooltip.
{% highlight xaml %}
-
-
+
+
{% endhighlight %}
{% highlight c# %}
- SfChart chart = new SfChart();
- EllipseAnnotation annotation=new EllipseAnnotation ()
- {
- X1 = 2.5,
- Y1 = 1500,
- X2 = 3.6,
- Y2 = 1680,
- Stroke = new SolidColorBrush(Colors.DarkGray),
- Fill = new SolidColorBrush (Colors.LightGray),
- ShowToolTip = true ,
- ToolTipContent = "Annotation"
- };
- chart.Annotations.Add(annotation);
+SfChart chart = new SfChart();
+EllipseAnnotation annotation=new EllipseAnnotation ()
+{
+ X1 = 2.5,
+ Y1 = 1500,
+ X2 = 3.6,
+ Y2 = 1680,
+ Stroke = new SolidColorBrush(Colors.DarkGray),
+ Fill = new SolidColorBrush (Colors.LightGray),
+ ShowToolTip = true ,
+ ToolTipContent = "Annotation"
+};
+chart.Annotations.Add(annotation);
{% endhighlight %}
@@ -868,29 +862,29 @@ SfChart allows you to clip the annotation if the annotation crosses the boundary
{% highlight xaml %}
-
-
-
+
+
+
-
+
{% endhighlight %}
{% highlight c# %}
- SfChart chart = new SfChart();
+SfChart chart = new SfChart();
- ImageAnnotation image = new ImageAnnotation()
- {
- X1 = 6,
- Y1 = 16,
- X2 = 9,
- Y2 = 18,
- ImageSource = new BitmapImage(new Uri("Images\Graduate.png", UriKind.RelativeOrAbsolute)),
- EnableClipping=true
- };
+ImageAnnotation image = new ImageAnnotation()
+{
+ X1 = 6,
+ Y1 = 16,
+ X2 = 9,
+ Y2 = 18,
+ ImageSource = new BitmapImage(new Uri("Images\Graduate.png", UriKind.RelativeOrAbsolute)),
+ EnableClipping=true
+};
- chart.Annotations.Add(image);
+chart.Annotations.Add(image);
{% endhighlight %}
@@ -1032,22 +1026,21 @@ The corresponding DateTime value will be given as values for X1 and X2 propertie
-
-
+
{% endhighlight %}
{% highlight c# %}
- SfChart chart = new SfChart();
- chart.PrimaryAxis = new DateTimeAxis();
- chart.SecondaryAxis = new NumericalAxis();
- RectangleAnnotation annotation = new RectangleAnnotation()
- {
- X1 = new DateTime(2019,12,17), X2 = new DateTime(2020,02,19), Y1 = 1200, Y2 = 1300,
- };
- chart.Annotations.Add(annotation);
+SfChart chart = new SfChart();
+chart.PrimaryAxis = new DateTimeAxis();
+chart.SecondaryAxis = new NumericalAxis();
+RectangleAnnotation annotation = new RectangleAnnotation()
+{
+ X1 = new DateTime(2019,12,17), X2 = new DateTime(2020,02,19), Y1 = 1200, Y2 = 1300,
+};
+chart.Annotations.Add(annotation);
{% endhighlight %}
diff --git a/wpf/Charts/Appearance.md b/wpf/Charts/Appearance.md
index 2f0d29c06a..5029a1c0cd 100644
--- a/wpf/Charts/Appearance.md
+++ b/wpf/Charts/Appearance.md
@@ -55,7 +55,7 @@ chart.Palette = ChartColorPalette.Metro;

-The following code example defined Palette as [`BlueChrome`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartColorPalette.html).
+The following code example defined Palette as [`BlueChrome`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartColorPalette.html#Syncfusion_UI_Xaml_Charts_ChartColorPalette_BlueChrome).
{% tabs %}
diff --git a/wpf/Charts/Area.md b/wpf/Charts/Area.md
index 5c8a744749..415970224f 100644
--- a/wpf/Charts/Area.md
+++ b/wpf/Charts/Area.md
@@ -104,15 +104,12 @@ The following code example demonstrates, how you can create multiple panes in th
-
-
-
ItemsSource="{Binding SneakersDetail}"
-YBindingPath="ItemsCount1"
-
-/>
-
-
+YBindingPath="ItemsCount1" />
- TextBlock FontSize="10" VerticalAlignment="Center" Text="K"/>
+
@@ -778,7 +778,7 @@ chart.PrimaryAxis = new NumericalAxis()
**Smart** **Axis** **Labels**
-When there are more number of axis labels, they may overlap with each other. SfChart provides support to handle the overlapping labels using the [`LabelsIntersectAction`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_LabelsIntersectAction) property. By default the [`LabelsIntersectAction`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_LabelsIntersectAction) value is [`Hide`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AxisLabelsIntersectAction.html).
+When there are more number of axis labels, they may overlap with each other. SfChart provides support to handle the overlapping labels using the [`LabelsIntersectAction`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_LabelsIntersectAction) property. By default the [`LabelsIntersectAction`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_LabelsIntersectAction) value is [`Hide`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AxisLabelsIntersectAction.html#Syncfusion_UI_Xaml_Charts_AxisLabelsIntersectAction_Hide).
The following are the options for intersecting action.
@@ -917,7 +917,7 @@ chart.PrimaryAxis = new CategoryAxis()
**EdgeLabelsDrawingMode**
-SfChart provides support to customize the position of the edge labels in axis using the [`EdgeLabelsDrawingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsDrawingMode) property. [`EdgeLabelsDrawingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsDrawingMode) property default value is [`Center`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EdgeLabelsDrawingMode.html).
+SfChart provides support to customize the position of the edge labels in axis using the [`EdgeLabelsDrawingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsDrawingMode) property. [`EdgeLabelsDrawingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsDrawingMode) property default value is [`Center`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EdgeLabelsDrawingMode.html#Syncfusion_UI_Xaml_Charts_EdgeLabelsDrawingMode_Center).
The following are the customizing options in [`EdgeLabelsDrawingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsDrawingMode).
@@ -1053,7 +1053,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**EdgeLabelsVisibilityMode**
-The visibility of the extreme labels of the axis can be controlled using [`EdgeLabelsVisibilityMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsVisibilityMode) property. By default the [`Default`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EdgeLabelsVisibilityMode.html) option in [`EdgeLabelsVisibilityMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsVisibilityMode) is set, which displays the edge label based on auto interval calculations .The following image depicts the default option in [`EdgeLabelsVisibilityMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsVisibilityMode) while zooming.
+The visibility of the extreme labels of the axis can be controlled using [`EdgeLabelsVisibilityMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsVisibilityMode) property. By default the [`Default`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EdgeLabelsVisibilityMode.html#Syncfusion_UI_Xaml_Charts_EdgeLabelsVisibilityMode_Default) option in [`EdgeLabelsVisibilityMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsVisibilityMode) is set, which displays the edge label based on auto interval calculations .The following image depicts the default option in [`EdgeLabelsVisibilityMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_EdgeLabelsVisibilityMode) while zooming.

@@ -1146,7 +1146,7 @@ chart.PrimaryAxis = new NumericalAxis()
-
+
@@ -1704,15 +1704,16 @@ The [`RangeStyles`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -1885,7 +1886,7 @@ The following image demonstrates the default positioning of header when the axis

-If you want to position the header outside of the chart area then you can set the [`Far`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AxisHeaderPosition.html) option in [`HeaderPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_HeaderPosition) property.
+If you want to position the header outside of the chart area then you can set the [`Far`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AxisHeaderPosition.html#Syncfusion_UI_Xaml_Charts_AxisHeaderPosition_Far) option in [`HeaderPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html#Syncfusion_UI_Xaml_Charts_ChartAxis_HeaderPosition) property.
The following code example demonstrates the positioning of the header outside even when the axis is moved inside.
@@ -2180,7 +2181,7 @@ chart.PrimaryAxis = new CategoryAxis();
**LabelPlacement**
-In [`CategoryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html), labels is placed based on tick lines using [`LabelPlacement`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html#Syncfusion_UI_Xaml_Charts_CategoryAxis_LabelPlacement) property. By default the labels is placed [`OnTicks`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LabelPlacement.html). The following code example demonstrates placing the label between ticks in [`CategoryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html)
+In [`CategoryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html), labels is placed based on tick lines using [`LabelPlacement`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html#Syncfusion_UI_Xaml_Charts_CategoryAxis_LabelPlacement) property. By default the labels is placed [`OnTicks`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.LabelPlacement.html#Syncfusion_UI_Xaml_Charts_LabelPlacement_OnTicks). The following code example demonstrates placing the label between ticks in [`CategoryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html)
{% tabs %}
@@ -2258,12 +2259,12 @@ N> This feature is not applicable for Accumulation series, ErrorBarSeries, Radar
When the [`IsIndexed`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html#Syncfusion_UI_Xaml_Charts_CategoryAxis_IsIndexed) property of the [`CategoryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html) is disabled, the same index values(XValue) are grouped by [`AggregateFunctions`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html#Syncfusion_UI_Xaml_Charts_CategoryAxis_AggregateFunctions) property of the axis. The following are the types of [`AggregateFunctions`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html#Syncfusion_UI_Xaml_Charts_CategoryAxis_AggregateFunctions),
- * [`Average`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html)
- * [`Count`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html)
- * [`Max`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html)
- * [`Min`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html)
- * [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html)
- * [`Sum`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html)
+ * [`Average`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html#Syncfusion_UI_Xaml_Charts_AggregateFunctions_Average)
+ * [`Count`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html#Syncfusion_UI_Xaml_Charts_AggregateFunctions_Count)
+ * [`Max`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html#Syncfusion_UI_Xaml_Charts_AggregateFunctions_Max)
+ * [`Min`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html#Syncfusion_UI_Xaml_Charts_AggregateFunctions_Min)
+ * [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html#Syncfusion_UI_Xaml_Charts_AggregateFunctions_None)
+ * [`Sum`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.AggregateFunctions.html#Syncfusion_UI_Xaml_Charts_AggregateFunctions_Sum)
The default value of [`AggregateFunctions`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CategoryAxis.html#Syncfusion_UI_Xaml_Charts_CategoryAxis_AggregateFunctions) is None, and it is shown in the following code example.
@@ -3002,7 +3003,7 @@ chart.PrimaryAxis = new CategoryAxis()
The DateTimeAxis [`Interval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_Interval) value corresponds to the type specified in the [`IntervalType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_IntervalType) property.
-For instance, if the [`Interval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_Interval) is set as 2 and [`IntervalType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_IntervalType) is set as [`Days`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), the labels are plotted for every two days. The following are the options for [`IntervalType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_IntervalType) property
+For instance, if the [`Interval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_Interval) is set as 2 and [`IntervalType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_IntervalType) is set as [`Days`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Days), the labels are plotted for every two days. The following are the options for [`IntervalType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_IntervalType) property
Auto
* Days
@@ -3165,7 +3166,7 @@ The [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chart
**Auto**
-By default the date time range padding is [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html).
+By default the date time range padding is [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_Auto).

@@ -3206,7 +3207,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**Round**
-When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`Round`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html), the range of the chart axis is rounded off to the nearest possible DateTime value, as shown in the following screenshot.
+When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`Round`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_Round), the range of the chart axis is rounded off to the nearest possible DateTime value, as shown in the following screenshot.
{% tabs %}
@@ -3240,7 +3241,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**None**
-When the [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for a [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html).
+When the [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for a [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_None).
The following screenshot demonstrates a chart’s x-axis with `RangePadding` set to `None`.
@@ -3275,7 +3276,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**RoundStart**
-When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`RoundStart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html), the range of the chart axis is rounded in the start off to the nearest possible DateTime value, as shown in the following screenshot.
+When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`RoundStart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_RoundStart), the range of the chart axis is rounded in the start off to the nearest possible DateTime value, as shown in the following screenshot.
{% tabs %}
@@ -3309,7 +3310,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**RoundEnd**
-When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`RoundEnd`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html), the range of the chart axis is rounded in the end off to the nearest possible DateTime value, as shown in the following screenshot.
+When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`RoundEnd`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_RoundEnd), the range of the chart axis is rounded in the end off to the nearest possible DateTime value, as shown in the following screenshot.
{% tabs %}
@@ -3343,7 +3344,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**PrependInterval**
-When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`PrependInterval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html), the DateTime interval of the axis is added in the start as padding, as shown in the following screenshot.
+When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`PrependInterval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_PrependInterval), the DateTime interval of the axis is added in the start as padding, as shown in the following screenshot.
{% tabs %}
@@ -3377,7 +3378,7 @@ chart.PrimaryAxis = new DateTimeAxis()
**AppendInterval**
-When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`AppendInterval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html), the DateTime interval of the axis is added in the end as padding, as shown in the following screenshot.
+When [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_RangePadding) for [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html) is set to [`AppendInterval`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeRangePadding.html#Syncfusion_UI_Xaml_Charts_DateTimeRangePadding_AppendInterval), the DateTime interval of the axis is added in the end as padding, as shown in the following screenshot.
{% tabs %}
@@ -3425,18 +3426,18 @@ The following types are available for [`NumericalAxis`](https://help.syncfusion.
**Round**
-By default, the default [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) value for [`PrimaryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html#Syncfusion_UI_Xaml_Charts_SfChart_PrimaryAxis) is Auto and for [`SecondaryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html#Syncfusion_UI_Xaml_Charts_SfChart_SecondaryAxis), the default value is [`Round`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html).
+By default, the default [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) value for [`PrimaryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html#Syncfusion_UI_Xaml_Charts_SfChart_PrimaryAxis) is Auto and for [`SecondaryAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html#Syncfusion_UI_Xaml_Charts_SfChart_SecondaryAxis), the default value is [`Round`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_Round).
-The following screenshot illustrates a chart’s y-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`Round`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html).
+The following screenshot illustrates a chart’s y-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`Round`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_Round).

**Normal**
-[`Normal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html) [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for a [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is used mostly for the y-axis to have padding based on the Range calculation.
+[`Normal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_Normal) [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for a [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is used mostly for the y-axis to have padding based on the Range calculation.
-The following screenshot illustrates a chart’s y-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`Normal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html).
+The following screenshot illustrates a chart’s y-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`Normal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_Normal).
{% tabs %}
@@ -3470,9 +3471,9 @@ chart.PrimaryAxis = new NumericalAxis()
**Additional**
-If [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is set to [`Additional`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html), the interval of the axis is added as padding.
+If [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is set to [`Additional`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_Additional), the interval of the axis is added as padding.
-The following screenshot demonstrates a chart’s x-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`Additional`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html).
+The following screenshot demonstrates a chart’s x-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`Additional`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_Additional).
{% tabs %}
@@ -3506,7 +3507,7 @@ chart.PrimaryAxis = new NumericalAxis()
**None**
-The following screenshot demonstrates [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) as [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html), where no padding is applied for the axis.
+The following screenshot demonstrates [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) as [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_None), where no padding is applied for the axis.
{% tabs %}
@@ -3539,9 +3540,9 @@ chart.PrimaryAxis = new NumericalAxis()
**RoundStart**
-If [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is set to [`RoundStart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html), rounds the range of the chart axis in the start to the nearest possible value.
+If [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is set to [`RoundStart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_RoundStart), rounds the range of the chart axis in the start to the nearest possible value.
-The following screenshot demonstrates a chart’s x-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`RoundStart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html).
+The following screenshot demonstrates a chart’s x-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`RoundStart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_RoundStart).
{% tabs %}
@@ -3575,9 +3576,9 @@ chart.PrimaryAxis = new NumericalAxis()
**RoundEnd**
-If [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is set to [`RoundEnd`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html), rounds the range of the chart axis in the end to the nearest possible value.
+If [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) for [`NumericalAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html) is set to [`RoundEnd`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_RoundEnd), rounds the range of the chart axis in the end to the nearest possible value.
-The following screenshot demonstrates a chart’s x-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`RoundEnd`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html).
+The following screenshot demonstrates a chart’s x-axis with [`RangePadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalAxis.html#Syncfusion_UI_Xaml_Charts_NumericalAxis_RangePadding) set to [`RoundEnd`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.NumericalPadding.html#Syncfusion_UI_Xaml_Charts_NumericalPadding_RoundEnd).
{% tabs %}
@@ -3833,7 +3834,7 @@ By activating the [`EnableScrollBar`](https://help.syncfusion.com/cr/wpf/Syncfus
### AutoScrollingDeltaType
-In [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html), you can apply auto scrolling delta value in [`Years`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), [`Months`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), [`Days`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), [`Hours`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), [`Minutes`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), [`Seconds`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html) and [`Milliseconds`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html) by setting the [`AutoScrollingDeltaType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_AutoScrollingDeltaType) property. The default value of this property is [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html), and the delta will be calculated automatically based on range.
+In [`DateTimeAxis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html), you can apply auto scrolling delta value in [`Years`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Years), [`Months`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Months), [`Days`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Days), [`Hours`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Hours), [`Minutes`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Minutes), [`Seconds`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Seconds) and [`Milliseconds`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Milliseconds) by setting the [`AutoScrollingDeltaType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeAxis.html#Syncfusion_UI_Xaml_Charts_DateTimeAxis_AutoScrollingDeltaType) property. The default value of this property is [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DateTimeIntervalType.html#Syncfusion_UI_Xaml_Charts_DateTimeIntervalType_Auto), and the delta will be calculated automatically based on range.
{% tabs %}
@@ -3862,7 +3863,7 @@ chart.PrimaryAxis = new DateTimeAxis()
### AutoScrollingMode
-The [`AutoScrollingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_AutoScrollingMode) property is used to determine whether the axis should be scrolled from the start position or end position. The default value of this property is [`End`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAutoScrollingMode.html).
+The [`AutoScrollingMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_AutoScrollingMode) property is used to determine whether the axis should be scrolled from the start position or end position. The default value of this property is [`End`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAutoScrollingMode.html#Syncfusion_UI_Xaml_Charts_ChartAutoScrollingMode_End).
{% tabs %}
@@ -4187,7 +4188,7 @@ chart.PrimaryAxis.MultiLevelLabels.Add(label);
**Border** **Type**
-[`Chart Axis`](https://help.syncfusion.com/wpf/charts/axis) provides support to various types of border for [`ChartMultiLevelLabels`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartMultiLevelLabel.html). It can be applied by using its [`MultiLevelLabelsBorderType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_MultiLevelLabelsBorderType) property. The default [`MultiLevelLabelsBorderType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_MultiLevelLabelsBorderType) is [`Rectangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html). The another supported border types are [`Brace`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html) ,[`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html) and [`WithoutTopAndBottomBorder`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html).
+[`Chart Axis`](https://help.syncfusion.com/wpf/charts/axis) provides support to various types of border for [`ChartMultiLevelLabels`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartMultiLevelLabel.html). It can be applied by using its [`MultiLevelLabelsBorderType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_MultiLevelLabelsBorderType) property. The default [`MultiLevelLabelsBorderType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_MultiLevelLabelsBorderType) is [`Rectangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html#Syncfusion_UI_Xaml_Charts_BorderType_Rectangle). The another supported border types are [`Brace`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html#Syncfusion_UI_Xaml_Charts_BorderType_Brace) ,[`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html#Syncfusion_UI_Xaml_Charts_BorderType_None) and [`WithoutTopAndBottomBorder`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BorderType.html#Syncfusion_UI_Xaml_Charts_BorderType_WithoutTopAndBottomBorder).
**Rectangle**
diff --git a/wpf/Charts/CodedUI.md b/wpf/Charts/CodedUI.md
index 4fcf4a6a0e..6b056c422b 100644
--- a/wpf/Charts/CodedUI.md
+++ b/wpf/Charts/CodedUI.md
@@ -117,23 +117,23 @@ Once the record is completed, click the GenerateCode icon in CodedUITestBuilder
WpfSfChart uISfChartCustom = this.UICUITestSampleDemoWindow.UISfChartCustom;
- WpfChartSeries uIColumnSeriesCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIColumnSeriesCustom;
+ WpfChartSeries uIColumnSeriesCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIColumnSeriesCustom;
- WpfLegend uIChartLegendCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIChartLegendCustom;
+ WpfLegend uIChartLegendCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIChartLegendCustom;
- WpfChartAxis uINumericalAxisCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UINumericalAxisCustom;
+ WpfChartAxis uINumericalAxisCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UINumericalAxisCustom;
- WpfChartAxis uICategoryAxisCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UICategoryAxisCustom;
+ WpfChartAxis uICategoryAxisCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UICategoryAxisCustom;
- WpfZoomingBehavior uIZoomInCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomInCustom;
+ WpfZoomingBehavior uIZoomInCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomInCustom;
- WpfZoomingBehavior uIZoomOutCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomOutCustom;
+ WpfZoomingBehavior uIZoomOutCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomOutCustom;
- WpfZoomingBehavior uIZoomResetCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomResetCustom;
+ WpfZoomingBehavior uIZoomResetCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomResetCustom;
- WpfZoomingBehavior uIZoomPanCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomPanCustom;
+ WpfZoomingBehavior uIZoomPanCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UIZoomPanCustom;
- WpfZoomingBehavior uISelectionZoomCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UISelectionZoomCustom;
+ WpfZoomingBehavior uISelectionZoomCustom = this.UICUITestSampleDemoWindow.UISfChartCustom.UISelectionZoomCustom;
#endregion
@@ -176,9 +176,9 @@ public void AssertMethod1()
#endregion
- // Verify that the 'SegmentsCount' property of 'ColumnSeries' custom control equals '10'
+ // Verify that the 'SegmentsCount' property of 'ColumnSeries' custom control equals '10'
- Assert.AreEqual(this.AssertMethod1ExpectedValues.UIColumnSeriesCustomSegmentsCount, uIColumnSeriesCustom.SegmentsCount, "Segemnts Count Mismatched...");
+ Assert.AreEqual(this.AssertMethod1ExpectedValues.UIColumnSeriesCustomSegmentsCount, uIColumnSeriesCustom.SegmentsCount, "Segemnts Count Mismatched...");
}
diff --git a/wpf/Charts/DataBinding.md b/wpf/Charts/DataBinding.md
index ed04eb93f0..fae47cdc2c 100644
--- a/wpf/Charts/DataBinding.md
+++ b/wpf/Charts/DataBinding.md
@@ -30,7 +30,6 @@ YBindingPath="Year2010">
-
{% endhighlight %}
diff --git a/wpf/Charts/FastChart/Fast-BitmapSeries.md b/wpf/Charts/FastChart/Fast-BitmapSeries.md
index 83c7b1dd1a..3ddcc46c46 100644
--- a/wpf/Charts/FastChart/Fast-BitmapSeries.md
+++ b/wpf/Charts/FastChart/Fast-BitmapSeries.md
@@ -313,7 +313,7 @@ chart.Series.Add(series);
## Fast Scatter Bitmap
-[`FastScatterBitmapSeries`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#) used to render high number scatter points. The [`ScatterHeight`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#Syncfusion_UI_Xaml_Charts_FastScatterBitmapSeries_ScatterHeight) and [`ScatterWidth`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#Syncfusion_UI_Xaml_Charts_FastScatterBitmapSeries_ScatterWidth) also available as in ScatterSeries. [`ShapeType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#Syncfusion_UI_Xaml_Charts_FastScatterBitmapSeries_ShapeType) is used to change the rendering shape of fast scatter bitmap series. The available shapes are [`Cross`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`Diamond`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`Ellipse`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`Hexagon`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`InvertedTriangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`Pentagon`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`Plus`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html), [`Rectangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html) and [`Triangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html).
+[`FastScatterBitmapSeries`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#) used to render high number scatter points. The [`ScatterHeight`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#Syncfusion_UI_Xaml_Charts_FastScatterBitmapSeries_ScatterHeight) and [`ScatterWidth`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#Syncfusion_UI_Xaml_Charts_FastScatterBitmapSeries_ScatterWidth) also available as in ScatterSeries. [`ShapeType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FastScatterBitmapSeries.html#Syncfusion_UI_Xaml_Charts_FastScatterBitmapSeries_ShapeType) is used to change the rendering shape of fast scatter bitmap series. The available shapes are [`Cross`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Cross), [`Diamond`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Diamond), [`Ellipse`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Ellipse), [`Hexagon`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Hexagon), [`InvertedTriangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_InvertedTriangle), [`Pentagon`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Pentagon), [`Plus`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Plus), [`Square`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Square) and [`Triangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSymbol.html#Syncfusion_UI_Xaml_Charts_ChartSymbol_Triangle).
{% tabs %}
diff --git a/wpf/Charts/Getting-Started.md b/wpf/Charts/Getting-Started.md
index 8afc160fce..81d15c9098 100644
--- a/wpf/Charts/Getting-Started.md
+++ b/wpf/Charts/Getting-Started.md
@@ -240,9 +240,8 @@ N> You need to set [`XBindingPath`](https://help.syncfusion.com/cr/wpf/Syncfusio
-
-
-
+
+
@@ -391,7 +390,7 @@ series.AdornmentsInfo = New ChartAdornmentInfo() With {.ShowLabel = True}
{% endtabs %}
-Refer to [`this`](https://help.syncfusion.com/uwp/charts/adornments) link to learn more about the options available in [`SfChart`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Charts.SfChart.html) to customize chart adornments.
+Refer to [`this`](https://help.syncfusion.com/wpf/charts/annotations) link to learn more about the options available in [`SfChart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html) to customize chart adornments.
## Enable legend
@@ -471,7 +470,7 @@ series.Label = "Heights"
{% endtabs %}
-Refer to this [`link`](https://help.syncfusion.com/uwp/charts/legend) to learn more about the options available in [`SfChart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html) to customize legend.
+Refer to this [`link`](https://help.syncfusion.com/wpf/charts/legend) to learn more about the options available in [`SfChart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html) to customize legend.
## Enable tooltip
@@ -515,7 +514,7 @@ series.ShowTooltip = True
{% endtabs %}
-Refer to [`this`](https://help.syncfusion.com/uwp/charts/interactive-features#tooltip) link to learn more about the options available in [`SfChart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html) to customize tooltip.
+Refer to [`this`](https://help.syncfusion.com/wpf/charts/interactive-features/tooltip) link to learn more about the options available in [`SfChart`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart.html) to customize tooltip.
The following code example gives you the complete code of above configurations.
diff --git a/wpf/Charts/How-To/Add-range-of-points-dynamically.md b/wpf/Charts/How-To/Add-range-of-points-dynamically.md
index 95395321a0..3bc9cd1b20 100644
--- a/wpf/Charts/How-To/Add-range-of-points-dynamically.md
+++ b/wpf/Charts/How-To/Add-range-of-points-dynamically.md
@@ -23,6 +23,4 @@ Chart.SuspendSeriesNotification();
Chart.ResumeSeriesNotification();
-
-
{% endhighlight %}
\ No newline at end of file
diff --git a/wpf/Charts/How-To/Export-Chart-to-Image-Windows-8-1.md b/wpf/Charts/How-To/Export-Chart-to-Image-Windows-8-1.md
index ab1eef98d3..0adaca78f6 100644
--- a/wpf/Charts/How-To/Export-Chart-to-Image-Windows-8-1.md
+++ b/wpf/Charts/How-To/Export-Chart-to-Image-Windows-8-1.md
@@ -54,25 +54,18 @@ chart.Save("sfchart.jpg", KnownFolders.PicturesLibrary);
{% highlight c# %}
var memoryStream = new InMemoryRandomAccessStream();
- chart.Save(memoryStream, BitmapEncoder.BmpEncoderId);
+chart.Save(memoryStream, BitmapEncoder.BmpEncoderId);
+StorageFolder storageFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
+var file = await storageFolder.CreateFileAsync("chartwithstream.jpg", CreationCollisionOption.GenerateUniqueName);
- StorageFolder storageFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
+var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.ReadWrite);
+{
+chart.Save(stream, BitmapEncoder.BmpEncoderId);
-
- var file = await storageFolder.CreateFileAsync("chartwithstream.jpg", CreationCollisionOption.GenerateUniqueName);
-
-
-
- var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.ReadWrite);
-
- {
-
- chart.Save(stream, BitmapEncoder.BmpEncoderId);
-
- }
+}
{% endhighlight %}
diff --git a/wpf/Charts/How-To/Transform-axis-value-to-pixel-value-and-vice-versa.md b/wpf/Charts/How-To/Transform-axis-value-to-pixel-value-and-vice-versa.md
index feae888ae6..da09db6374 100644
--- a/wpf/Charts/How-To/Transform-axis-value-to-pixel-value-and-vice-versa.md
+++ b/wpf/Charts/How-To/Transform-axis-value-to-pixel-value-and-vice-versa.md
@@ -18,42 +18,30 @@ SfChart offers two utility methods for converting your data points into pixel va
{% highlight c# %}
private void LineChart_MouseMove(object sender, MouseEventArgs e)
+{
- {
+ Point mousePoint = new Point
+ {
- Point mousePoint = new Point
+ X = e.GetPosition(LineChart).X - LineChart.SeriesClipRect.Left - LineChart.Margin.Left,
- {
+ Y = e.GetPosition(LineChart).Y - LineChart.SeriesClipRect.Top - LineChart.Margin.Top
- X = e.GetPosition(LineChart).X - LineChart.SeriesClipRect.Left - LineChart.Margin.Left,
+ };
- Y = e.GetPosition(LineChart).Y - LineChart.SeriesClipRect.Top - LineChart.Margin.Top
+ // Converts mouse co-ordinate points into a value related to ChartAxis.
- };
+ double xValue = this.LineChart.PointToValue(this.LineChart.PrimaryAxis, mousePoint);
+ double yValue = this.LineChart.PointToValue(this.LineChart.SecondaryAxis, mousePoint);
+ // Converts the data point value of the chart to Chart coordinate.
- // Converts mouse co-ordinate points into a value related to ChartAxis.
+ double chartPointX = this.LineChart.ValueToPoint(this.LineChart.PrimaryAxis, xValue);
+ double chartPointY = this.LineChart.ValueToPoint(this.LineChart.SecondaryAxis, yValue);
-
- double xValue = this.LineChart.PointToValue(this.LineChart.PrimaryAxis, mousePoint);
-
- double yValue = this.LineChart.PointToValue(this.LineChart.SecondaryAxis, mousePoint);
-
-
-
-
-
- // Converts the data point value of the chart to Chart coordinate.
-
- double chartPointX = this.LineChart.ValueToPoint(this.LineChart.PrimaryAxis, xValue);
-
- double chartPointY = this.LineChart.ValueToPoint(this.LineChart.SecondaryAxis, yValue);
-
-
-
- }
+}
{% endhighlight %}
diff --git a/wpf/Charts/Interactive-Features/Crosshair.md b/wpf/Charts/Interactive-Features/Crosshair.md
index c4c51f574f..ba8cda2f60 100644
--- a/wpf/Charts/Interactive-Features/Crosshair.md
+++ b/wpf/Charts/Interactive-Features/Crosshair.md
@@ -200,13 +200,13 @@ The vertical line in contact with the x axes shows axis label. The horizontal ax
Axis Label can be aligned by Near, Far, Center, Auto and None Options.
-* [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html) – Axis label is aligned in Near/Far positions based on the movement of vertical line.
+* [`Auto`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html#Syncfusion_UI_Xaml_Charts_ChartAlignment_Auto) – Axis label is aligned in Near/Far positions based on the movement of vertical line.
-* [`Far`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html) - Axis label is positioned far from the position of vertical line in cross hair.
+* [`Far`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html#Syncfusion_UI_Xaml_Charts_ChartAlignment_Far) - Axis label is positioned far from the position of vertical line in cross hair.
-* [`Near`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html) - Axis label is near to the position of trackball.
+* [`Near`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html#Syncfusion_UI_Xaml_Charts_ChartAlignment_Near) - Axis label is near to the position of trackball.
-* [`Center`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html) - Axis label is aligned to the center of the vertical line. By default the axis label will positioned in center.
+* [`Center`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAlignment.html#Syncfusion_UI_Xaml_Charts_ChartAlignment_Center) - Axis label is aligned to the center of the vertical line. By default the axis label will positioned in center.
The following image demonstrates the horizontal axis label positioned center to the vertical line.
diff --git a/wpf/Charts/Interactive-Features/Selection.md b/wpf/Charts/Interactive-Features/Selection.md
index cdbef15da4..570825bb5e 100644
--- a/wpf/Charts/Interactive-Features/Selection.md
+++ b/wpf/Charts/Interactive-Features/Selection.md
@@ -11,7 +11,7 @@ documentation: ug
SfChart supports selection that allows you to select a segment in a series or series itself by using [`ChartSelectionBehavior`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSelectionBehavior.html#).
-### Adding Selection Behavior to SfChart
+## Adding Selection Behavior to SfChart
You can create an instance [`ChartSelectionBehavior`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSelectionBehavior.html#) and add it to the Behaviors collection.
@@ -491,7 +491,7 @@ chart.Series.Add(series2);
SfChart provides support to select using mouse move or mouse click. By default the selection will take place in mouse click. The selection mode can be defined using [`SelectionMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSelectionBehavior.html#Syncfusion_UI_Xaml_Charts_ChartSelectionBehavior_SelectionMode) property for segment and series selection.
-The following code snippet demonstrates the selection mode using [`MouseMove`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SelectionMode.html).
+The following code snippet demonstrates the selection mode using [`MouseMove`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SelectionMode.html#Syncfusion_UI_Xaml_Charts_SelectionMode_MouseMove).
{% tabs %}
@@ -526,7 +526,7 @@ chart.Behaviors.Add(selection);
## Customizing the Selection
-SfChart allows you to select single or multiple segment /series using [`SelectionStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSelectionBehavior.html#Syncfusion_UI_Xaml_Charts_ChartSelectionBehavior_SelectionStyle) property. By default the SelectionStyle is [`Single`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SelectionStyle.html).
+SfChart allows you to select single or multiple segment /series using [`SelectionStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSelectionBehavior.html#Syncfusion_UI_Xaml_Charts_ChartSelectionBehavior_SelectionStyle) property. By default the SelectionStyle is [`Single`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SelectionStyle.html#Syncfusion_UI_Xaml_Charts_SelectionStyle_Single).
The following code snippet demonstrates multiple segment selection.
diff --git a/wpf/Charts/Interactive-Features/Tooltip.md b/wpf/Charts/Interactive-Features/Tooltip.md
index 5b0884586d..9ffe25c0c9 100644
--- a/wpf/Charts/Interactive-Features/Tooltip.md
+++ b/wpf/Charts/Interactive-Features/Tooltip.md
@@ -22,7 +22,8 @@ The tooltip will be visible if you enable [`ShowTooltip`](https://help.syncfusio
{% highlight xaml %}
-
diff --git a/wpf/Charts/Interactive-Features/Trackball.md b/wpf/Charts/Interactive-Features/Trackball.md
index 3cb2fd5060..62f91b681b 100644
--- a/wpf/Charts/Interactive-Features/Trackball.md
+++ b/wpf/Charts/Interactive-Features/Trackball.md
@@ -468,7 +468,7 @@ chart.Behaviors.Add(behavior);
### Label Display Mode
-When there is a multiple series, by default, the trackball series label will be displayed only for the nearest point. If you want to display all the y values with respect to the x value then the [`LabelDisplayMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartTrackBallBehavior.html#Syncfusion_UI_Xaml_Charts_ChartTrackBallBehavior_LabelDisplayMode) property is set to [`FloatAllPoints`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrackballLabelDisplayMode.html).
+When there is a multiple series, by default, the trackball series label will be displayed only for the nearest point. If you want to display all the y values with respect to the x value then the [`LabelDisplayMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartTrackBallBehavior.html#Syncfusion_UI_Xaml_Charts_ChartTrackBallBehavior_LabelDisplayMode) property is set to [`FloatAllPoints`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrackballLabelDisplayMode.html#Syncfusion_UI_Xaml_Charts_TrackballLabelDisplayMode_FloatAllPoints).
**FloatAllPoints**
diff --git a/wpf/Charts/Interactive-Features/zoompan.md b/wpf/Charts/Interactive-Features/zoompan.md
index 622759f78c..e0740f8cf5 100644
--- a/wpf/Charts/Interactive-Features/zoompan.md
+++ b/wpf/Charts/Interactive-Features/zoompan.md
@@ -276,7 +276,7 @@ chart.Behaviors.Add(zooming);
The zooming can be done both horizontally and vertically. The zooming direction is defined using [`ZoomMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartZoomPanBehavior.html#Syncfusion_UI_Xaml_Charts_ChartZoomPanBehavior_ZoomMode) property.
-Zooming along [`X`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ZoomMode.html) axis
+Zooming along [`X`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ZoomMode.html#Syncfusion_UI_Xaml_Charts_ZoomMode_X) axis
{% tabs %}
diff --git a/wpf/Charts/Legend.md b/wpf/Charts/Legend.md
index d67167ba52..3ca59a73ab 100644
--- a/wpf/Charts/Legend.md
+++ b/wpf/Charts/Legend.md
@@ -45,7 +45,7 @@ Each legend composed of the following parts:
## Legend Icon
-Represents the symbol associated with each legend item. By default, the legend icon is [`Rectangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegendIcon.html).
+Represents the symbol associated with each legend item. By default, the legend icon is [`Rectangle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegendIcon.html#Syncfusion_UI_Xaml_Charts_ChartLegendIcon_Rectangle).
This can be customized using the [`LegendIcon`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_LegendIcon) property in any series as in below code snippet:
@@ -59,11 +59,10 @@ This can be customized using the [`LegendIcon`](https://help.syncfusion.com/cr/w
-
+
{% endhighlight %}
@@ -239,12 +238,13 @@ We can add custom icon for the legend using [`LegendIconTemplate`](https://help.
+
@@ -294,7 +294,7 @@ This allows us to specify the label for each series which is to be displayed in
+ ItemsSource="{Binding List}" YBindingPath="India"/>
{% endhighlight %}
@@ -445,7 +445,7 @@ chart.Legend = new ChartLegend()
Legends can be docked left, right, and top or bottom around the chart area using [`DockPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegend.html#Syncfusion_UI_Xaml_Charts_ChartLegend_DockPosition) property.
By default, the ChartLegend is docked at the top of the chart as mentioned earlier.
-To display the legend at the bottom, you can set the [`DockPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegend.html#Syncfusion_UI_Xaml_Charts_ChartLegend_DockPosition) as [`Bottom`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartDock.html) as in below code snippet.
+To display the legend at the bottom, you can set the [`DockPosition`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegend.html#Syncfusion_UI_Xaml_Charts_ChartLegend_DockPosition) as [`Bottom`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartDock.html#Syncfusion_UI_Xaml_Charts_ChartDock_Bottom) as in below code snippet.
{% tabs %}
@@ -597,7 +597,7 @@ The following code example shows how to create multiple legends in a single char
ItemsSource="{Binding SneakersDetail}" XBindingPath="Brand"
- YBindingPath="ItemsCount1" />
+ YBindingPath="ItemsCount1" />
+ ItemsSource="{Binding Tax}" YBindingPath="Percentage"/>
{% endhighlight %}
@@ -809,7 +809,7 @@ chart.Series.Add(columnSeries);
## Legend Orientation
-Orientation of the Legend can be vertical or horizontal. By default the [`Orientation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegend.html#Syncfusion_UI_Xaml_Charts_ChartLegend_Orientation) is [`Horizontal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartOrientation.html).
+Orientation of the Legend can be vertical or horizontal. By default the [`Orientation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartLegend.html#Syncfusion_UI_Xaml_Charts_ChartLegend_Orientation) is [`Horizontal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartOrientation.html#Syncfusion_UI_Xaml_Charts_ChartOrientation_Horizontal).
{% tabs %}
diff --git a/wpf/Charts/Migrating-from-Chart-to-SfChart.md b/wpf/Charts/Migrating-from-Chart-to-SfChart.md
index bd364629d8..794fc7c135 100644
--- a/wpf/Charts/Migrating-from-Chart-to-SfChart.md
+++ b/wpf/Charts/Migrating-from-Chart-to-SfChart.md
@@ -272,8 +272,6 @@ legend.DockPosition = ChartDock.Top;
legend.LegendPosition = LegendPosition.Outside;
-
-
chart.Legend = legend;
{% endhighlight %}
{% endtabs %}
@@ -1211,8 +1209,6 @@ adornment.SegmentLabelRotation = 30d;
adornment.AdornmentsPosition = AdornmentsPosition.Top;
-
-
lineseries.AdornmentsInfo = adornment;
{% endhighlight %}
@@ -1279,8 +1275,6 @@ adornment.UseSeriesPalette = true;
adornment.ShowConnectorLine = true;
-
-
lineseries.AdornmentsInfo = adornment;
{% endhighlight %}
{% endtabs %}
@@ -2504,19 +2498,18 @@ Chart chart = new Chart();
SaveFileDialog saveFileDialog = new SaveFileDialog();
- string C_imageFilesFilter = "Bitmap(*.bmp)|*.bmp|JPEG(*.jpg,*.jpeg)|*.jpg;*.jpeg|Gif (*.gif)|*.gif|TIFF(*.tiff)|*.tiff|PNG(*.png)|*.png|WDP(*.wdp)|*.wdp|Xps file (*.xps)|*.xps|All files (*.*)|*.*";
+string C_imageFilesFilter = "Bitmap(*.bmp)|*.bmp|JPEG(*.jpg,*.jpeg)|*.jpg;*.jpeg|Gif (*.gif)|*.gif|TIFF(*.tiff)|*.tiff|PNG(*.png)|*.png|WDP(*.wdp)|*.wdp|Xps file (*.xps)|*.xps|All files (*.*)|*.*";
saveFileDialog.Filter = C_imageFilesFilter;
if (saveFileDialog.ShowDialog() == true)
+{
- {
-
- chart.Save(saveFileDialog.FileName);
+ chart.Save(saveFileDialog.FileName);
- }
+}
{% endhighlight %}
### SfChart
@@ -2527,21 +2520,21 @@ SfChart sfchart = new SfChart();
SaveFileDialog sfd = new SaveFileDialog();
- sfd.Filter = "Bitmap(*.bmp)|*.bmp|JPEG(*.jpg,*.jpeg)|*.jpg;*.jpeg|Gif (*.gif)|*.gif|PNG(*.png)|*.png|All files (*.*)|*.*";
+sfd.Filter = "Bitmap(*.bmp)|*.bmp|JPEG(*.jpg,*.jpeg)|*.jpg;*.jpeg|Gif (*.gif)|*.gif|PNG(*.png)|*.png|All files (*.*)|*.*";
- if (sfd.ShowDialog() == true)
+if (sfd.ShowDialog() == true)
- {
+{
- using (Stream fs = sfd.OpenFile())
+ using (Stream fs = sfd.OpenFile())
- {
+ {
- sfchart.Save(fs, new PngBitmapEncoder());
+ sfchart.Save(fs, new PngBitmapEncoder());
- }
+ }
- }
+}
{% endhighlight %}
##Printing Chart
diff --git a/wpf/Charts/ScaleBreaks.md b/wpf/Charts/ScaleBreaks.md
index f4a37e0207..7a050c3246 100644
--- a/wpf/Charts/ScaleBreaks.md
+++ b/wpf/Charts/ScaleBreaks.md
@@ -127,7 +127,7 @@ chart.SecondaryAxis = axis;
### Scale
-[`Scale`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ScaleBreakPosition.html) option allows you to position the breaks based on the delta of each axis range relative to the other.
+[`Scale`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ScaleBreakPosition.html#Syncfusion_UI_Xaml_Charts_ScaleBreakPosition_Scale) option allows you to position the breaks based on the delta of each axis range relative to the other.
{% tabs %}
@@ -314,7 +314,7 @@ chart.SecondaryAxis = axis;
The following are the customizing options for scale break.
-Line type such as [`Wave`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BreakLineType.html) or [`StraightLine`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BreakLineType.html), background, spacing, stroke, stroke thickness of the scale break can be customized using [`LineType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_LineType), [`Fill`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_Fill), [`BreakSpacing`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_BreakSpacing), [`Stroke`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_Stroke), [`StrokeThickness`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_StrokeThickness) properties respectively.
+Line type such as [`Wave`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BreakLineType.html#Syncfusion_UI_Xaml_Charts_BreakLineType_StraightLine) or [`StraightLine`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BreakLineType.html#Syncfusion_UI_Xaml_Charts_BreakLineType_StraightLine), background, spacing, stroke, stroke thickness of the scale break can be customized using [`LineType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_LineType), [`Fill`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_Fill), [`BreakSpacing`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_BreakSpacing), [`Stroke`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_Stroke), [`StrokeThickness`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisScaleBreak.html#Syncfusion_UI_Xaml_Charts_ChartAxisScaleBreak_StrokeThickness) properties respectively.
{% tabs %}
diff --git a/wpf/Charts/SeriesTypes/Area.md b/wpf/Charts/SeriesTypes/Area.md
index 0d2e35a962..7c43a263de 100644
--- a/wpf/Charts/SeriesTypes/Area.md
+++ b/wpf/Charts/SeriesTypes/Area.md
@@ -47,7 +47,7 @@ chart.Series.Add(series);

-N> You can refer to our [WPF Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-area-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Area.xaml) to know how to render and configure the area chart.
+N> You can refer to our [WPF Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-area-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Area/Area.xaml) to know how to render and configure the area chart.
## Step Area Chart
@@ -88,7 +88,7 @@ chart.Series.Add(series);

-N> You can explore our [WPF Step Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-step-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Step Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/StepArea.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
+N> You can explore our [WPF Step Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-step-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Step Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Step%20Area/StepArea.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
## Closed Area Chart
diff --git a/wpf/Charts/SeriesTypes/BubbleandScatter.md b/wpf/Charts/SeriesTypes/BubbleandScatter.md
index 69d7421ed7..3c8fcc0dfc 100644
--- a/wpf/Charts/SeriesTypes/BubbleandScatter.md
+++ b/wpf/Charts/SeriesTypes/BubbleandScatter.md
@@ -56,7 +56,7 @@ chart.Series.Add(series);

-N> You can refer to our [WPF Bubble Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-bubble-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Bubble Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Bubble.xaml) to know how to render and configure the bubble chart.
+N> You can refer to our [WPF Bubble Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-bubble-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Bubble Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Bubble/DefaultBubble.xaml) to know how to render and configure the bubble chart.
**Show Zero Bubbles**
diff --git a/wpf/Charts/SeriesTypes/ColumnandBar.md b/wpf/Charts/SeriesTypes/ColumnandBar.md
index 0caf766d61..07ac74d585 100644
--- a/wpf/Charts/SeriesTypes/ColumnandBar.md
+++ b/wpf/Charts/SeriesTypes/ColumnandBar.md
@@ -46,7 +46,7 @@ chart.Series.Add(series);

-N> You can also explore our [WPF Column Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Column.xaml) to know how to render and configure the column chart.
+N> You can also explore our [WPF Column Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Column/DefaultColumn.xaml) to know how to render and configure the column chart.
## Bar Chart
@@ -83,7 +83,7 @@ BarSeries series = new BarSeries()

-N> You can also explore our [WPF Bar Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Bar.xaml) to know how to render and configure the bar chart.
+N> You can also explore our [WPF Bar Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Bar/DefaultBar.xaml) to know how to render and configure the bar chart.
### Spacing
diff --git a/wpf/Charts/SeriesTypes/Distribution.md b/wpf/Charts/SeriesTypes/Distribution.md
index 5fcc034401..33f74a82e5 100644
--- a/wpf/Charts/SeriesTypes/Distribution.md
+++ b/wpf/Charts/SeriesTypes/Distribution.md
@@ -171,4 +171,4 @@ chart.Series.Add(series);

-N> You can explore our [WPF Histogram Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-histogram-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Histogram Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Other%20Charts/Histogram.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
\ No newline at end of file
+N> You can explore our [WPF Histogram Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-histogram-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Histogram Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Histogram/Histogram.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
\ No newline at end of file
diff --git a/wpf/Charts/SeriesTypes/EmptyPoints.md b/wpf/Charts/SeriesTypes/EmptyPoints.md
index b514b2768f..b827fe776f 100644
--- a/wpf/Charts/SeriesTypes/EmptyPoints.md
+++ b/wpf/Charts/SeriesTypes/EmptyPoints.md
@@ -39,8 +39,8 @@ You can show these empty points by setting the [`ShowEmptyPoints`](https://help
This is an enum property having the following values:
-* [`Zero`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointValue.html) - Replace all the empty points with zero (0), this is the default value.
-* [`Average`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointValue.html) - Replace all the empty points with average value.
+* [`Zero`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointValue.html#Syncfusion_UI_Xaml_Charts_EmptyPointValue_Zero) - Replace all the empty points with zero (0), this is the default value.
+* [`Average`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointValue.html#Syncfusion_UI_Xaml_Charts_EmptyPointValue_Average) - Replace all the empty points with average value.
The following code examples shows how to display the empty points:
@@ -144,9 +144,9 @@ The following code example shows the [`EmptyPointValue`](https://help.syncfusion
You can customize the empty points using [`EmptyPointStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_EmptyPointStyle) property. The following are the values of EmptyPointStyle:
-* [`Interior`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointStyle.html) - Used to define the custom brush for the empty points.
-* [`Symbol`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointStyle.html) - Used to add symbols for the empty points.
-* [`SymbolAndInterior`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointStyle.html) - This is similar to Symbol, which includes empty point brush also.
+* [`Interior`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointStyle.html#Syncfusion_UI_Xaml_Charts_EmptyPointStyle_Interior) - Used to define the custom brush for the empty points.
+* [`Symbol`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointStyle.html#Syncfusion_UI_Xaml_Charts_EmptyPointStyle_Symbol) - Used to add symbols for the empty points.
+* [`SymbolAndInterior`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.EmptyPointStyle.html#Syncfusion_UI_Xaml_Charts_EmptyPointStyle_SymbolAndInterior) - This is similar to Symbol, which includes empty point brush also.
**Interior**
diff --git a/wpf/Charts/SeriesTypes/ErrorBars.md b/wpf/Charts/SeriesTypes/ErrorBars.md
index 590d3b7c50..98843ec332 100644
--- a/wpf/Charts/SeriesTypes/ErrorBars.md
+++ b/wpf/Charts/SeriesTypes/ErrorBars.md
@@ -89,7 +89,7 @@ chart.Series.Add(errorBar);
## Mode
-This [`Mode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarSeries.html#Syncfusion_UI_Xaml_Charts_ErrorBarSeries_Mode) property is used to define whether to identify horizontal error or vertical error. By default, the Mode value is [`Both`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarMode.html), which will display both horizontal and vertical error values.
+This [`Mode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarSeries.html#Syncfusion_UI_Xaml_Charts_ErrorBarSeries_Mode) property is used to define whether to identify horizontal error or vertical error. By default, the Mode value is [`Both`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarMode.html#Syncfusion_UI_Xaml_Charts_ErrorBarMode_Both), which will display both horizontal and vertical error values.
**Horizontal**
@@ -191,9 +191,9 @@ chart.Series.Add(errorBar);
[`HorizontalDirection`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarSeries.html#Syncfusion_UI_Xaml_Charts_ErrorBarSeries_HorizontalDirection) property of [`ErrorBarSeries`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarSeries.html) allows you to view the horizontal error value in the following type of directions:
- * [`Both`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarDirection.html) – It indicates the actual data point value along with specific amount of positive and negative error values.
- * [`Minus`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarDirection.html) – It indicates the actual data point value along with specific amount of negative error value.
- * [`Plus`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarDirection.html) – It indicates the actual data point value along with specific amount of positive error value.
+ * [`Both`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarDirection.html#Syncfusion_UI_Xaml_Charts_ErrorBarDirection_Both) – It indicates the actual data point value along with specific amount of positive and negative error values.
+ * [`Minus`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarDirection.html#Syncfusion_UI_Xaml_Charts_ErrorBarDirection_Minus) – It indicates the actual data point value along with specific amount of negative error value.
+ * [`Plus`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarDirection.html#Syncfusion_UI_Xaml_Charts_ErrorBarDirection_Plus) – It indicates the actual data point value along with specific amount of positive error value.
**Both**
@@ -376,10 +376,10 @@ chart.Series.Add(errorBar);
SfChart supports the following type of error bar series.
-* [`Fixed`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html)
-* [`Percentage`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html)
-* [`StandardDeviation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html)
-* [`StandardError`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html)
+* [`Fixed`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html#Syncfusion_UI_Xaml_Charts_ErrorBarType_Fixed)
+* [`Percentage`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html#Syncfusion_UI_Xaml_Charts_ErrorBarType_Percentage)
+* [`StandardDeviation`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html#Syncfusion_UI_Xaml_Charts_ErrorBarType_StandardDeviation)
+* [`StandardError`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ErrorBarType.html#Syncfusion_UI_Xaml_Charts_ErrorBarType_StandardErrors)
N> The default error bar series is Fixed.
diff --git a/wpf/Charts/SeriesTypes/Financial.md b/wpf/Charts/SeriesTypes/Financial.md
index 8c92845af1..f735ce3325 100644
--- a/wpf/Charts/SeriesTypes/Financial.md
+++ b/wpf/Charts/SeriesTypes/Financial.md
@@ -17,7 +17,7 @@ The APIs present in the financial series are,
* [`Close`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_Close)- Gets or sets the string that describes close value in Y-axis.
* [`BearFillColor`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_BearFillColor)-Represents the brush color for the segments that show stock price has gone up in measured time interval.
* [`BullFillColor`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_BullFillColor)-Represents that brush color for the segments that show stock price has gone down in measured time interval.
-* [`ComparisonMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_ComparisonMode) - Specifies which price need to be considered for the formation from [`High`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html), [`Low`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html), [`Open`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html), [`Close`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html) or [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html) financial price.
+* [`ComparisonMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_ComparisonMode) - Specifies which price need to be considered for the formation from [`High`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html#Syncfusion_UI_Xaml_Charts_FinancialPrice_High), [`Low`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html#Syncfusion_UI_Xaml_Charts_FinancialPrice_Low), [`Open`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html#Syncfusion_UI_Xaml_Charts_FinancialPrice_Open), [`Close`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html#Syncfusion_UI_Xaml_Charts_FinancialPrice_Close) or [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html#Syncfusion_UI_Xaml_Charts_FinancialPrice_None) financial price.
## OHLC Chart
@@ -155,7 +155,7 @@ N> You can refer to our [WPF Candlestick Chart](https://www.syncfusion.com/wpf-c
## Comparison Modes
[`ComparisonMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_ComparisonMode) property of [`FinancialSeries`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html) is used to compare the current (High, Low, Open, and Close) values with previous (High, Low, Open, and Close) values in the series data points.
-By default, the [`ComparisonMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_ComparisonMode) value is [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html).
+By default, the [`ComparisonMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialSeriesBase.html#Syncfusion_UI_Xaml_Charts_FinancialSeriesBase_ComparisonMode) value is [`None`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FinancialPrice.html#Syncfusion_UI_Xaml_Charts_FinancialPrice_None).
**Comparing the open values**
diff --git a/wpf/Charts/SeriesTypes/Funnelandpyramid.md b/wpf/Charts/SeriesTypes/Funnelandpyramid.md
index 8cb96f1075..314d0cbd34 100644
--- a/wpf/Charts/SeriesTypes/Funnelandpyramid.md
+++ b/wpf/Charts/SeriesTypes/Funnelandpyramid.md
@@ -47,7 +47,7 @@ chart.Series.Add(series);

-The [`PyramidMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PyramidSeries.html#Syncfusion_UI_Xaml_Charts_PyramidSeries_PyramidMode) is used to define the rendering mode such as [`Surface`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPyramidMode.html) or [`Linear`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPyramidMode.html) pyramid segments.
+The [`PyramidMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PyramidSeries.html#Syncfusion_UI_Xaml_Charts_PyramidSeries_PyramidMode) is used to define the rendering mode such as [`Surface`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPyramidMode.html#Syncfusion_UI_Xaml_Charts_ChartPyramidMode_Surface) or [`Linear`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPyramidMode.html#Syncfusion_UI_Xaml_Charts_ChartPyramidMode_Linear) pyramid segments.
**PyramidMode** **as** **Surface**
@@ -128,7 +128,7 @@ chart.Series.Add(series);

-N> You can explore our [WPF Pyramid Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-pyramid-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Pyramid Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Funnel%20and%20Pyramid%20Chart/PyramidChart.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
+N> You can explore our [WPF Pyramid Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-pyramid-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Pyramid Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Triangular%20Charts/PyramidChart.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
## Funnel Chart
@@ -170,7 +170,7 @@ chart.Series.Add(series);
### Funnel Mode
-The [`FunnelMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FunnelSeries.html#Syncfusion_UI_Xaml_Charts_FunnelSeries_FunnelMode) defines a rendering mode for the funnel series which define, where to bind your values (to height or width). The following example demonstrates [`ValueIsHeight`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartFunnelMode.html) and [`ValueIsWidth`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartFunnelMode.html) funnel mode:
+The [`FunnelMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.FunnelSeries.html#Syncfusion_UI_Xaml_Charts_FunnelSeries_FunnelMode) defines a rendering mode for the funnel series which define, where to bind your values (to height or width). The following example demonstrates [`ValueIsHeight`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartFunnelMode.html#Syncfusion_UI_Xaml_Charts_ChartFunnelMode_ValueIsHeight) and [`ValueIsWidth`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartFunnelMode.html#Syncfusion_UI_Xaml_Charts_ChartFunnelMode_ValueIsWidth) funnel mode:
**ValueIsHeight**
@@ -333,7 +333,7 @@ chart.Series.Add(series);

-N> You can refer to our [WPF Funnel Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-funnel-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Funnel Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Funnel%20and%20Pyramid%20Chart/FunnelChart.xaml) to know how to render and configure the funnel chart.
+N> You can refer to our [WPF Funnel Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-funnel-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Funnel Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Triangular%20Charts/FunnelChart.xaml) to know how to render and configure the funnel chart.
## See also
diff --git a/wpf/Charts/SeriesTypes/LineandStepLine.md b/wpf/Charts/SeriesTypes/LineandStepLine.md
index 19124bf8c8..44aec70c8c 100644
--- a/wpf/Charts/SeriesTypes/LineandStepLine.md
+++ b/wpf/Charts/SeriesTypes/LineandStepLine.md
@@ -69,7 +69,7 @@ chart.Series.Add(series2);

-N> You can explore our [WPF Line Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-line-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Line Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Line.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
+N> You can explore our [WPF Line Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-line-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Line Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Line/DefaultLine.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
## Step Line Chart
@@ -107,7 +107,7 @@ SteplineChart.Series.Add(stepLine);

-N> You can explore our [WPF Step Line Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-step-line-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Step Line Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/StepLine.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
+N> You can explore our [WPF Step Line Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-step-line-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Step Line Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Step%20Line/StepLine.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
## See also
diff --git a/wpf/Charts/SeriesTypes/Other.md b/wpf/Charts/SeriesTypes/Other.md
index ab9ac0a470..9ac676608e 100644
--- a/wpf/Charts/SeriesTypes/Other.md
+++ b/wpf/Charts/SeriesTypes/Other.md
@@ -47,15 +47,15 @@ boxWhiskerChart.Series.Add(boxAndWhisker);
N>By default, the `BoxPlotMode` property value is Exclusive.
-N> You can refer to our [WPF Box and Whisker Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-box-and-whisker-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Box and Whisker Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Other%20Charts/BoxAndWhiskerChart.xaml) to know how to render and configure the box and whisker chart.
+N> You can refer to our [WPF Box and Whisker Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-box-and-whisker-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Box and Whisker Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Box%20Plot/BoxAndWhiskerChart.xaml) to know how to render and configure the box and whisker chart.
**Customize the series Box mode**
The series box plotting mode can be changed by using [`BoxPlotMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxAndWhiskerSeries.html#Syncfusion_UI_Xaml_Charts_BoxAndWhiskerSeries_BoxPlotMode) property of [`BoxAndWhiskerSeries`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxAndWhiskerSeries.html). The plotting mode of series can be calculated as follows:
-* [`Exclusive`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxPlotMode.html) – The quartile values are calculated by using the formula (N+1) * P (N count, P percentile) and its index value starts from 1 in the list.
-* [`Inclusive`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxPlotMode.html) – The quartile values are calculated by using the formula (N−1) * P (N count, P percentile) and its index value starts from 0 in the list.
-* [`Normal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxPlotMode.html) – The quartile values are calculated by splitting the list and getting the median values.
+* [`Exclusive`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxPlotMode.html#Syncfusion_UI_Xaml_Charts_BoxPlotMode_Exclusive) – The quartile values are calculated by using the formula (N+1) * P (N count, P percentile) and its index value starts from 1 in the list.
+* [`Inclusive`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxPlotMode.html#Syncfusion_UI_Xaml_Charts_BoxPlotMode_Inclusive) – The quartile values are calculated by using the formula (N−1) * P (N count, P percentile) and its index value starts from 0 in the list.
+* [`Normal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.BoxPlotMode.html#Syncfusion_UI_Xaml_Charts_BoxPlotMode_Normal) – The quartile values are calculated by splitting the list and getting the median values.
**Normal**
@@ -432,4 +432,4 @@ series.ConnectorLineStyle = style;

-N> You can explore our [WPF Waterfall Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-waterfall-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Waterfall Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Other%20Charts/Waterfall.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
\ No newline at end of file
+N> You can explore our [WPF Waterfall Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-waterfall-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Waterfall Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Waterfall/Waterfall.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
\ No newline at end of file
diff --git a/wpf/Charts/SeriesTypes/PieandDoughnut.md b/wpf/Charts/SeriesTypes/PieandDoughnut.md
index 0c2c4448e1..7f7134e082 100644
--- a/wpf/Charts/SeriesTypes/PieandDoughnut.md
+++ b/wpf/Charts/SeriesTypes/PieandDoughnut.md
@@ -88,7 +88,7 @@ chart.Series.Add(series);
### Group small data points into “others”
The small segments in the pie chart can be grouped into the “others” category using the [`GroupTo`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupTo) and [`GroupMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupMode) properties of PieSeries.
- The [`GroupMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupMode) property is used to specify the grouping type based on slice [`Angle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PieGroupMode.html), actual data point [`Value`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PieGroupMode.html), or [`Percentage`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PieGroupMode.html), and the [`GroupTo`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupTo) property is used to set the limit to group data points into a single slice. The grouped segment is labeled as “Others” in legend and toggled as other segment. The default value of the [`GroupTo`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupTo) property is [`double.NAN`], and the default value of the [`GroupMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupMode) property is Value.
+ The [`GroupMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupMode) property is used to specify the grouping type based on slice [`Angle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PieGroupMode.html#Syncfusion_UI_Xaml_Charts_PieGroupMode_Angle), actual data point [`Value`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PieGroupMode.html#Syncfusion_UI_Xaml_Charts_PieGroupMode_Value), or [`Percentage`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.PieGroupMode.html#Syncfusion_UI_Xaml_Charts_PieGroupMode_Percentage), and the [`GroupTo`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupTo) property is used to set the limit to group data points into a single slice. The grouped segment is labeled as “Others” in legend and toggled as other segment. The default value of the [`GroupTo`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupTo) property is `double.NAN`, and the default value of the [`GroupMode`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase_GroupMode) property is Value.
**Pie series without grouping**
@@ -224,7 +224,7 @@ pieSeries.AdornmentsInfo = adornmentInfo;

-N> You can explore our [WPF Pie Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-pie-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Pie Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Circular%20Charts/PieChart.xaml) to know how to render and configure the pie chart.
+N> You can explore our [WPF Pie Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-pie-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Pie Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Circular%20Charts/Pie/PieChart.xaml) to know how to render and configure the pie chart.
## Doughnut Chart
@@ -452,7 +452,7 @@ chart.Series.Add(series);
Doughnut segments can be separated as individual circles using the [`IsStackedDoughnut`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutSeries.html#Syncfusion_UI_Xaml_Charts_DoughnutSeries_IsStackedDoughnut) property. The following properties are used to customize the stacked doughnut chart:
-• [`CapStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutSeries.html#Syncfusion_UI_Xaml_Charts_DoughnutSeries_CapStyle) - Specifies the shapes of the start and end points of a circular segment. The supported values are [`BothFlat`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html), [`BothCurve`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html), [`StartCurve`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html), and [`EndCurve`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html). The default value of the this property is BothFlat.
+• [`CapStyle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutSeries.html#Syncfusion_UI_Xaml_Charts_DoughnutSeries_CapStyle) - Specifies the shapes of the start and end points of a circular segment. The supported values are [`BothFlat`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html#Syncfusion_UI_Xaml_Charts_DoughnutCapStyle_BothFlat), [`BothCurve`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html#Syncfusion_UI_Xaml_Charts_DoughnutCapStyle_BothCurve), [`StartCurve`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html#Syncfusion_UI_Xaml_Charts_DoughnutCapStyle_StartCurve), and [`EndCurve`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutCapStyle.html#Syncfusion_UI_Xaml_Charts_DoughnutCapStyle_EndCurve). The default value of the this property is BothFlat.
• [`SegmentSpacing`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutSeries.html#Syncfusion_UI_Xaml_Charts_DoughnutSeries_SegmentSpacing) - Changes the spacing between two individual segments. The default value of spacing is 0, and the value ranges from 0 to 1. Here, 1 represents 100%, and 0 represents 0% of the available space.
• [`MaximumValue`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutSeries.html#Syncfusion_UI_Xaml_Charts_DoughnutSeries_MaximumValue) - Represents the entire span of an individual circle. The default value of the this property is double.NaN.
• [`TrackColor`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.DoughnutSeries.html#Syncfusion_UI_Xaml_Charts_DoughnutSeries_TrackColor) - Changes the color of the track area.
@@ -641,7 +641,7 @@ chart.Series.Add(series);

-N> You can refer to our [WPF Doughnut Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-doughnut-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Doughnut Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Circular%20Charts/DoughnutChart.xaml) to know how to render and configure the doughnut chart.
+N> You can refer to our [WPF Doughnut Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-doughnut-chart) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Doughnut Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Circular%20Charts/Doughnut/DoughnutChart.xaml) to know how to render and configure the doughnut chart.
## See also
diff --git a/wpf/Charts/SeriesTypes/RadarandPolar.md b/wpf/Charts/SeriesTypes/RadarandPolar.md
index 170fca11cc..11d42d01dd 100644
--- a/wpf/Charts/SeriesTypes/RadarandPolar.md
+++ b/wpf/Charts/SeriesTypes/RadarandPolar.md
@@ -54,7 +54,7 @@ chart.Series.Add(series);

-N> You can explore our [WPF Radar Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-radar-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Radar Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Polar%20and%20Radar%20Chart/RadarChart.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
+N> You can explore our [WPF Radar Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-radar-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Radar Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Polar%20and%20Radar%20Chart/Radar/RadarChart.xaml) to know how to represent time-dependent data, showing trends in data at equal intervals.
## Polar Chart
@@ -157,7 +157,7 @@ chart.Series.Add(series);
### DrawType
-This property defines type of curve, whether its [`Line`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesDrawType.html) or [`Area`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesDrawType.html).
+This property defines type of curve, whether its [`Line`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesDrawType.html#Syncfusion_UI_Xaml_Charts_ChartSeriesDrawType_Line) or [`Area`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesDrawType.html#Syncfusion_UI_Xaml_Charts_ChartSeriesDrawType_Area).
**DrawType** **as** **Area**
@@ -251,11 +251,11 @@ chart.Series.Add(series);
### Polar Angle
-[`Chart axis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html) provides support to render polar and radar series on 0,90,180 and 270 degrees. It can be achieved by its [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) property.The [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) is type of [`ChartPolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html) and its default value is [`Rotate270`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html).`Rotate0`, `Rotate90` and `Rotate180` are another supported values of [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle). Both the primary and secondary axes can be rotated individually based on its [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value.
+[`Chart axis`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxis.html) provides support to render polar and radar series on 0,90,180 and 270 degrees. It can be achieved by its [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) property.The [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) is type of [`ChartPolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html) and its default value is [`Rotate270`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate270).[Rotate0](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate0), [Rotate90](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate90) and [Rotate180](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate180) are another supported values of [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle). Both the primary and secondary axes can be rotated individually based on its [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value.
**Rotate0**
-The below snippet explains how the axes of series has been rotated when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate0`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html),
+The below snippet explains how the axes of series has been rotated when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate0`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate0),
{% tabs %}
@@ -302,7 +302,7 @@ chart.SecondaryAxis = new NumericalAxis()
**Rotate90**
-The below snippet explains how the axes of series has been rotated when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate90`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html),
+The below snippet explains how the axes of series has been rotated when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate90`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate90),
{% tabs %}
@@ -349,7 +349,7 @@ chart.SecondaryAxis = new NumericalAxis()
**Rotate180**
-The below snippet explains how the axes of series has been rotated when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate180`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html),
+The below snippet explains how the axes of series has been rotated when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate180`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate180),
{% tabs %}
@@ -396,7 +396,7 @@ chart.SecondaryAxis = new NumericalAxis()
**Rotate270**
-The below snippet explains how the axes of series has been rotated, when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate270`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html),
+The below snippet explains how the axes of series has been rotated, when [`PolarAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartAxisBase2D.html#Syncfusion_UI_Xaml_Charts_ChartAxisBase2D_PolarAngle) value is [`Rotate270`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartPolarAngle.html#Syncfusion_UI_Xaml_Charts_ChartPolarAngle_Rotate270),
{% tabs %}
@@ -440,4 +440,4 @@ chart.SecondaryAxis = new NumericalAxis()

-N> You can explore our [WPF Polar Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-polar-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Polar Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Polar%20and%20Radar%20Chart/PolarChart.xaml) to know how to render and configure the polar line type charts.
\ No newline at end of file
+N> You can explore our [WPF Polar Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-polar-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Polar Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Polar%20and%20Radar%20Chart/Polar/Polar.xaml) to know how to render and configure the polar line type charts.
\ No newline at end of file
diff --git a/wpf/Charts/SeriesTypes/Range.md b/wpf/Charts/SeriesTypes/Range.md
index 6a5dab38a2..75e038ada2 100644
--- a/wpf/Charts/SeriesTypes/Range.md
+++ b/wpf/Charts/SeriesTypes/Range.md
@@ -95,7 +95,7 @@ chart.Series.Add(series);

-N> You can explore our [WPF Range Column Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-range-column-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Range Column Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/RangeColumn.xaml) to know how to displays multiple series of data as range column.
+N> You can explore our [WPF Range Column Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-range-column-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Range Column Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Range%20Column/RangeBar.xaml) to know how to displays multiple series of data as range column.
## Range Area Chart
@@ -186,7 +186,7 @@ chart.Series.Add(series);

-N> You can explore our [WPF Range Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-range-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Range Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/RangeArea.xaml) to know how to displays multiple series of data as range area.
+N> You can explore our [WPF Range Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-range-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Range Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Range%20Area/RangeArea.xaml) to know how to displays multiple series of data as range area.
## Spline Range Area Chart
@@ -231,4 +231,4 @@ chart.Series.Add(splineRangeAreaSeries);

-N> You can explore our [WPF Spline Range Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-spline-range-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Spline Range Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/SplineRangeArea.xaml) to know how to displays multiple series of data as spline range area.
\ No newline at end of file
+N> You can explore our [WPF Spline Range Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-spline-range-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Spline Range Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Spline%20Range%20Area/SplineRangeArea.xaml) to know how to displays multiple series of data as spline range area.
\ No newline at end of file
diff --git a/wpf/Charts/SeriesTypes/Spline.md b/wpf/Charts/SeriesTypes/Spline.md
index a11c6bb349..64ab4e1358 100644
--- a/wpf/Charts/SeriesTypes/Spline.md
+++ b/wpf/Charts/SeriesTypes/Spline.md
@@ -100,7 +100,7 @@ chart.Series.Add(series);
{% endtabs %}
-N> You can explore our [WPF Spline Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-spline-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Spline Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Spline.xaml) to know how to displays multiple series of data as spline.
+N> You can explore our [WPF Spline Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-spline-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Spline Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Spline/DefaultSpline.xaml) to know how to displays multiple series of data as spline.
## Spline Area Chart
@@ -141,22 +141,22 @@ chart.Series.Add(series);

-N> You can explore our [WPF Spline Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-spline-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Spline Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/SplineArea.xaml) to know how to displays multiple series of data as spline area.
+N> You can explore our [WPF Spline Area Chart](https://www.syncfusion.com/wpf-controls/charts/wpf-spline-area-chart) feature tour page for its groundbreaking features. You can also explore our [WPF Spline Area Chart example](https://github.com/syncfusion/wpf-demos/blob/master/chart/Views/Basic%20Charts/Spline%20Area/SplineArea.xaml) to know how to displays multiple series of data as spline area.
## Spline Type
[`Spline`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineSeries.html) and [`SplineArea`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineAreaSeries.html) series provide support for various spline type. The spline type of the series can be changed by using its [`SplineType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineSeries.html#Syncfusion_UI_Xaml_Charts_SplineSeries_SplineType) property. The following spline types are supported by Spline and SplineArea series:
-* [`Natural`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html)
-* [`Monotonic`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html)
-* [`Cardinal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html)
-* [`Clamped`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html)
+* [`Natural`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html#Syncfusion_UI_Xaml_Charts_SplineType_Natural)
+* [`Monotonic`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html#Syncfusion_UI_Xaml_Charts_SplineType_Monotonic)
+* [`Cardinal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html#Syncfusion_UI_Xaml_Charts_SplineType_Cardinal)
+* [`Clamped`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html#Syncfusion_UI_Xaml_Charts_SplineType_Clamped)
**Cardinal**
The cardinal spline algorithm ensures that the resulting curve passes through each data point, while also providing a smooth and visually appealing interpolation with continuous derivatives up to a certain order at each point.
-The following code illustrates how to set the [`SplineType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineSeries.html#Syncfusion_UI_Xaml_Charts_SplineSeries_SplineType) value as [`Cardinal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html).
+The following code illustrates how to set the [`SplineType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineSeries.html#Syncfusion_UI_Xaml_Charts_SplineSeries_SplineType) value as [`Cardinal`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SplineType.html#Syncfusion_UI_Xaml_Charts_SplineType_Cardinal).
{% tabs %}
diff --git a/wpf/Charts/Sorting.md b/wpf/Charts/Sorting.md
index 9edf4395e0..ad2574a156 100644
--- a/wpf/Charts/Sorting.md
+++ b/wpf/Charts/Sorting.md
@@ -20,7 +20,7 @@ The [`SortDirection`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Char
### Changing sorting axis
-This [`SortBy`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_SortBy) property decides whether sorting should be done based on [`X`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SortingAxis.html) or [`Y`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SortingAxis.html) values.
+This [`SortBy`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_SortBy) property decides whether sorting should be done based on [`X`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SortingAxis.html#Syncfusion_UI_Xaml_Charts_SortingAxis_X) or [`Y`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SortingAxis.html#Syncfusion_UI_Xaml_Charts_SortingAxis_Y) values.
The following example illustrates a simple chart (without apply sorting):
@@ -36,11 +36,8 @@ The following example illustrates a simple chart (without apply sorting):
{% highlight xml %}
{% endhighlight %}
@@ -81,12 +78,9 @@ chart.Series.Add(columnSeries);
{% highlight xml %}
-
{% endhighlight %}
@@ -127,15 +121,11 @@ chart.Series.Add(columnSeries);
{% highlight xml %}
-
-
{% endhighlight %}
{% highlight c# %}
@@ -175,11 +165,8 @@ chart.Series.Add(columnSeries);
{% highlight xml %}
diff --git a/wpf/Charts/Striplines.md b/wpf/Charts/Striplines.md
index 4c6104b921..f4416fd208 100644
--- a/wpf/Charts/Striplines.md
+++ b/wpf/Charts/Striplines.md
@@ -275,9 +275,9 @@ N> Here, Start and Width of the stripline as adjusted based on the rotation angl
Label="Stock Price"
- Background="#C3C3C3"
+ Background="#C3C3C3"
- LabelTemplate="{StaticResource labelTemplate}"/>
+ LabelTemplate="{StaticResource labelTemplate}"/>
diff --git a/wpf/Charts/Technical-Indicators.md b/wpf/Charts/Technical-Indicators.md
index 71bccdc094..976930bd18 100644
--- a/wpf/Charts/Technical-Indicators.md
+++ b/wpf/Charts/Technical-Indicators.md
@@ -88,13 +88,11 @@ chart.TechnicalIndicators.Add(indicator);
-
-
-
+
+
+
@@ -188,7 +186,7 @@ The following code example demonstrates the usage of [`SimpleAverageIndicator`](
- Here we have enabled the [`CheckBoxVisibility`](https://help.syncfusion.com/c
SfChart supports the following type of Trendlines.
-* [`Linear`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html)
-* [`Exponential`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html)
-* [`Power`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html)
-* [`Logarithmic`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html)
-* [`Polynomial`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html)
+* [`Linear`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html#Syncfusion_UI_Xaml_Charts_TrendlineType_Linear)
+* [`Exponential`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html#Syncfusion_UI_Xaml_Charts_TrendlineType_Exponential)
+* [`Power`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html#Syncfusion_UI_Xaml_Charts_TrendlineType_Power)
+* [`Logarithmic`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html#Syncfusion_UI_Xaml_Charts_TrendlineType_Logarithmic)
+* [`Polynomial`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.TrendlineType.html#Syncfusion_UI_Xaml_Charts_TrendlineType_Polynomial)
### Linear