Skip to content

Commit 9d8e7b0

Browse files
982808: Updated the content changes mentioned in the PR.
1 parent 2c9fcd1 commit 9d8e7b0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

blazor/chart/chart-types/area.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Area in Blazor Charts Component | Syncfusion
4-
description: Check out and learn how to render and customize the Area chart in Syncfusion Blazor Charts, including data binding, fills, gradients, opacity, borders, empty points, and render events.
4+
description: Check out and learn how to configure and customize the area chart in Syncfusion Blazor Charts.
55
platform: Blazor
66
control: Chart
77
documentation: ug

blazor/chart/chart-types/line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Line Chart in Blazor Charts Component | Syncfusion
4-
description: Check out and learn how to render and customize the Line chart in the Syncfusion Blazor Charts component, including data binding, customization options, handling empty points, and related events.
4+
description: Check out and learn how to configure and customize the line chart in the Syncfusion Blazor Charts component.
55
platform: Blazor
66
control: Chart
77
documentation: ug

blazor/chart/chart-types/spline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Spline in Blazor Charts Component | Syncfusion
4-
description: Check out and learn how to render and customize the Spline chart in the Syncfusion Blazor Charts component, including data binding, spline types, customization options, empty points handling, and related events.
4+
description: Check out and learn how to configure and customize the spline chart in the Syncfusion Blazor Charts component.
55
platform: Blazor
66
control: Chart
77
documentation: ug
@@ -58,7 +58,7 @@ N> Refer to the [Blazor Spline Chart](https://www.syncfusion.com/blazor-componen
5858

5959
## Binding data with series
6060

61-
Bind data to the chart using the series [`DataSource`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_DataSource) property. The [`DataSource`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_DataSource) can be a list of business objects or an [`SfDataManager`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html). For correct rendering, map fields to the series [`XName`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_XName) and [`YName`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_YName). Learn more in [Working with data](../working-with-data).
61+
Bind data to the chart using the series [`DataSource`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_DataSource) property. The [`DataSource`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_DataSource) can be a list of business objects or [`SfDataManager`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html). For correct rendering, map fields to the series [`XName`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_XName) and [`YName`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_YName). Learn more in [Working with data](../working-with-data).
6262

6363
```cshtml
6464

blazor/chart/chart-types/stack-line.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: 100% Stacked Line in Blazor Charts Component | Syncfusion
4-
description: Check out and learn how to render and customize the 100% Stacked Line chart in Syncfusion Blazor Charts, including data binding, styling, empty points, stack labels, gradients, and render events.
4+
description: Check out and learn how to configure and customize the 100% stacked Line chart in Syncfusion Blazor Charts.
55
platform: Blazor
66
control: Chart
77
documentation: ug
@@ -613,7 +613,7 @@ Use the [`Fill`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.
613613
new ChartData { X = "Electricity", Y = 55, Y1 = 95, Y2 = 55, Y3 = 75},
614614
new ChartData { X = "Tax", Y = 20, Y1 = 50, Y2 = 40, Y3 = 65 },
615615
new ChartData { X = "Pet Care", Y = 40, Y1 = 20, Y2 = 80, Y3 = 95 },
616-
new ChartData { X = "Education", Y = 45, Y1 = 15, Y2 = 45, Y 3= 195 },
616+
new ChartData { X = "Education", Y = 45, Y1 = 15, Y2 = 45, Y3 = 195 },
617617
new ChartData { X = "Entertainment", Y = 75, Y1 = 45, Y2 = 65, Y3 = 115 }
618618
};
619619
}

blazor/chart/chart-types/stacked-line.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Stacked Line Chart in Blazor Charts Component | Syncfusion
4-
description: Check out and learn how to render and customize the Stacked Line series in Syncfusion Blazor Charts, including data binding, styling, empty points, stack labels, gradients, and render events.
4+
description: Check out and learn how to configure and customize the stacked Line series in Syncfusion Blazor Charts.
55
platform: Blazor
66
control: Chart
77
documentation: ug
@@ -785,7 +785,7 @@ The [Visible](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.Cha
785785
new ChartData { X = "Medical",Y = 50, Y2= 120, Y3= 50 },
786786
new ChartData { X = "Clothes",Y = 70, Y2= 60, Y3= 180 },
787787
new ChartData { X = "Personal Care", Y = 30, Y2= 80, Y3= 30 },
788-
new ChartData { X = "Books", Y = 10, Y2= 30, Y3= 270},
788+
new ChartData { X = "Books", Y = 10, Y2= 30, Y3= 270 },
789789
new ChartData { X = "Fitness",Y = 100, Y2= 70, Y3= 40 }
790790
};
791791
}
@@ -950,7 +950,7 @@ The [`OnSeriesRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.C
950950
new ChartData { X = "Personal Care", Y = 30, Y1 = 80, Y2= 80, Y3= 30 },
951951
new ChartData { X = "Books", Y = 10, Y1 = 40, Y2= 30, Y3= 270},
952952
new ChartData { X = "Fitness",Y = 100, Y1 = 30, Y2= 70, Y3= 40 },
953-
new ChartData { X = "Electricity", Y = 55, Y1 = 95, Y2= 55, Y3= 75},
953+
new ChartData { X = "Electricity", Y = 55, Y1 = 95, Y2= 55, Y3= 75 },
954954
new ChartData { X = "Tax", Y = 20, Y1 = 50, Y2= 40, Y3= 65 },
955955
new ChartData { X = "Pet Care", Y = 40, Y1 = 20, Y2= 80, Y3= 95 },
956956
new ChartData { X = "Education", Y = 45, Y1 = 15, Y2= 45, Y3= 195 },

blazor/chart/chart-types/step-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Step Line Chart in Blazor Charts Component | Syncfusion
4-
description: Check out and learn about the Blazor Step Line Chart in Syncfusion Blazor Charts, including data binding, series customization, empty points handling, and events.
4+
description: Check out and learn how to configure and customize step Line chart in Syncfusion Blazor Charts.
55
platform: Blazor
66
control: Chart
77
documentation: ug

0 commit comments

Comments
 (0)