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
Enhance documentation and properties in chart datasets
- Added `<see>` references to data labels configurations for `BarChartDataset`, `DoughnutChartDataset`, `LineChartDataset`, and `PolarAreaChartDataset`.
- Improved descriptions for properties in `DoughnutChartDataset`, `PieChartDataset`, and `PolarAreaChartDataset` using bold formatting for supported values.
- Introduced new properties `Layout`, `Plugins`, `Interaction`, and `Scales` in `LineChartOptions`, `PieChartOptions`, `PolarAreaChartOptions`, and `ScatterChartOptions` with relevant documentation links.
NOTE: This commit message is auto-generated using GitHub Copilot.
Copy file name to clipboardExpand all lines: BlazorExpress.ChartJS/Models/ChartDataset/DoughnutChart/DoughnutChartDataset.cs
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ public class DoughnutChartDataset : ChartDataset<double?>
33
33
/// </summary>
34
34
[AddedVersion("1.0.0")]
35
35
[DefaultValue("center")]
36
-
[Description("Supported values are 'center' and 'inner'. When 'center' is set, the borders of arcs next to each other will overlap. When 'inner' is set, it is guaranteed that all borders will not overlap.")]
36
+
[Description("Supported values are <b>center</b> and <b>inner</b>. When <b>center</b> is set, the borders of arcs next to each other will overlap. When <b>inner</b> is set, it is guaranteed that all borders will not overlap.")]
/// When 'center' is set, the borders of arcs next to each other will overlap.
19
23
/// When 'inner' is set, it is guaranteed that all borders will not overlap.
20
-
/// </summary>
21
-
/// <remarks>
24
+
/// <para>
22
25
/// Default value is 'center'.
23
-
/// </remarks>
26
+
/// </para>
27
+
/// </summary>
28
+
[AddedVersion("1.0.0")]
29
+
[DefaultValue("center")]
30
+
[Description("Supported values are <b>center</b> and <b>inner</b>. When <b>center</b> is set, the borders of arcs next to each other will overlap. When <b>inner</b> is set, it is guaranteed that all borders will not overlap.")]
[Description("Gets or sets the data labels configuration for the polar area chart dataset. Use this property to customize the display of data labels, such as their position, format, or visibility, in the pie chart dataset. If not set, a default configuration is applied.")]
0 commit comments