You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.MVC/title-and-sub-title.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ Accumulation Chart can be customized a title using [`TitleStyle`](https://help.s
70
70
71
71
### Position
72
72
73
-
The [`Position`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart title. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The Custom option allows you to position the title anywhere on the chart using x and y coordinates, providing flexible title alignment based on layout requirements.
73
+
The [`Position`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart title. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The custom option allows you to position the title anywhere on the chart using x and y coordinates, providing flexible title alignment based on layout requirements.
74
74
75
75
{% if page.publishingplatform == "aspnet-core" %}
76
76
@@ -157,7 +157,7 @@ Accumulation Chart can be customized a subtitle using [`SubTitleStyle`](https://
157
157
158
158
### Position
159
159
160
-
The [`Position`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart subtitle. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The Custom option allows you to position the subtitle anywhere on the chart using x and y coordinates, providing flexible subtitle alignment based on layout requirements.
160
+
The [`Position`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart subtitle. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The custom option allows you to position the subtitle anywhere on the chart using x and y coordinates, providing flexible subtitle alignment based on layout requirements.
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.NETCORE/title-and-sub-title.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ public class PieChartData
82
82
83
83
### Position
84
84
85
-
The [`Position`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart title. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The Custom option allows you to position the title anywhere on the chart using x and y coordinates, providing flexible title alignment based on layout requirements.
85
+
The [`Position`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart title. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The custom option allows you to position the title anywhere on the chart using x and y coordinates, providing flexible title alignment based on layout requirements.
86
86
87
87
{% if page.publishingplatform == "aspnet-core" %}
88
88
@@ -181,7 +181,7 @@ public class PieChartData
181
181
182
182
### Position
183
183
184
-
The [`Position`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart subtitle. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The Custom option allows you to position the subtitle anywhere on the chart using x and y coordinates, providing flexible subtitle alignment based on layout requirements.
184
+
The [`Position`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart subtitle. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The custom option allows you to position the subtitle anywhere on the chart using x and y coordinates, providing flexible subtitle alignment based on layout requirements.
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/chart/EJ2_ASP.MVC/chart-types/bar.md
+39-37Lines changed: 39 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -399,116 +399,118 @@ Use the `Border` property to customize the width and color of the border for emp
399
399
{% endtabs %}
400
400
{% endif %}
401
401
402
-
## Events
403
402
404
-
### Series render
405
403
406
-
The `SeriesRender` event allows you to customize series properties, such as data, fill, and name, before they are rendered on the chart.
404
+
## Corner radius
405
+
406
+
The [`CornerRadius`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.ChartSeries.html#Syncfusion_EJ2_Charts_ChartSeries_CornerRadius) property in the chart series is used to customize the corner radius for bar series. This allows you to create bars with rounded corners, giving your chart a more polished appearance. You can customize each corner of the bars using the topLeft, topRight, bottomLeft, and bottomRight properties.
407
407
408
408
{% if page.publishingplatform == "aspnet-core" %}
409
409
410
410
{% tabs %}
411
411
{% highlight cshtml tabtitle="CSHTML" %}
412
-
{% include code-snippet/chart/series/bar/series-render/tagHelper %}
412
+
{% include code-snippet/chart/series/bar/corner-radius/tagHelper %}
413
413
{% endhighlight %}
414
-
{% highlight c# tabtitle="Series-render.cs" %}
415
-
{% include code-snippet/chart/series/bar/series-render/series-render.cs %}
414
+
{% highlight c# tabtitle="Corner-radius.cs" %}
415
+
{% include code-snippet/chart/series/bar/corner-radius/corner-radius.cs %}
{% include code-snippet/chart/series/bar/series-render/razor %}
423
+
{% include code-snippet/chart/series/bar/corner-radius/razor %}
424
424
{% endhighlight %}
425
-
{% highlight c# tabtitle="Series-render.cs" %}
426
-
{% include code-snippet/chart/series/bar/series-render/series-render.cs %}
425
+
{% highlight c# tabtitle="Corner-radius.cs" %}
426
+
{% include code-snippet/chart/series/bar/corner-radius/corner-radius.cs %}
427
427
{% endhighlight %}
428
428
{% endtabs %}
429
429
{% endif %}
430
430
431
-
### Point render
432
431
433
-
The `PointRender` event allows you to customize each data point before it is rendered on the chart.
434
-
432
+
433
+
### Point corner radius
434
+
435
+
We can customize the corner radius for individual points in the chart series using the [`PointRender`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.Chart.html#Syncfusion_EJ2_Charts_Chart_PointRender) event by setting the [`CornerRadius`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.ChartSeries.html#Syncfusion_EJ2_Charts_ChartSeries_CornerRadius) property in its event argument.
436
+
435
437
{% if page.publishingplatform == "aspnet-core" %}
436
438
437
439
{% tabs %}
438
440
{% highlight cshtml tabtitle="CSHTML" %}
439
-
{% include code-snippet/chart/series/bar/point-render/tagHelper %}
441
+
{% include code-snippet/chart/series/bar/point-corner-radius/tagHelper %}
440
442
{% endhighlight %}
441
-
{% highlight c# tabtitle="Point-render.cs" %}
442
-
{% include code-snippet/chart/series/bar/point-render/point-render.cs %}
{% include code-snippet/chart/series/bar/point-corner-radius/point-corner-radius.cs %}
454
456
{% endhighlight %}
455
457
{% endtabs %}
456
458
{% endif %}
457
459
458
460
459
461
460
-
## Corner radius
462
+
## Events
461
463
462
-
The [`CornerRadius`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.ChartSeries.html#Syncfusion_EJ2_Charts_ChartSeries_CornerRadius) property in the chart series is used to customize the corner radius for bar series. This allows you to create bars with rounded corners, giving your chart a more polished appearance. You can customize each corner of the bars using the topLeft, topRight, bottomLeft, and bottomRight properties.
464
+
### Series render
465
+
466
+
The `SeriesRender` event allows you to customize series properties, such as data, fill, and name, before they are rendered on the chart.
463
467
464
468
{% if page.publishingplatform == "aspnet-core" %}
465
469
466
470
{% tabs %}
467
471
{% highlight cshtml tabtitle="CSHTML" %}
468
-
{% include code-snippet/chart/series/bar/corner-radius/tagHelper %}
472
+
{% include code-snippet/chart/series/bar/series-render/tagHelper %}
469
473
{% endhighlight %}
470
-
{% highlight c# tabtitle="Corner-radius.cs" %}
471
-
{% include code-snippet/chart/series/bar/corner-radius/corner-radius.cs %}
474
+
{% highlight c# tabtitle="Series-render.cs" %}
475
+
{% include code-snippet/chart/series/bar/series-render/series-render.cs %}
{% include code-snippet/chart/series/bar/corner-radius/razor %}
483
+
{% include code-snippet/chart/series/bar/series-render/razor %}
480
484
{% endhighlight %}
481
-
{% highlight c# tabtitle="Corner-radius.cs" %}
482
-
{% include code-snippet/chart/series/bar/corner-radius/corner-radius.cs %}
485
+
{% highlight c# tabtitle="Series-render.cs" %}
486
+
{% include code-snippet/chart/series/bar/series-render/series-render.cs %}
483
487
{% endhighlight %}
484
488
{% endtabs %}
485
489
{% endif %}
486
490
491
+
### Point render
487
492
488
-
489
-
### Point corner radius
490
-
491
-
We can customize the corner radius for individual points in the chart series using the [`PointRender`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.Chart.html#Syncfusion_EJ2_Charts_Chart_PointRender) event by setting the [`CornerRadius`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.ChartSeries.html#Syncfusion_EJ2_Charts_ChartSeries_CornerRadius) property in its event argument.
492
-
493
+
The `PointRender` event allows you to customize each data point before it is rendered on the chart.
494
+
493
495
{% if page.publishingplatform == "aspnet-core" %}
494
496
495
497
{% tabs %}
496
498
{% highlight cshtml tabtitle="CSHTML" %}
497
-
{% include code-snippet/chart/series/bar/point-corner-radius/tagHelper %}
499
+
{% include code-snippet/chart/series/bar/point-render/tagHelper %}
0 commit comments