Skip to content

Commit 2b22bf4

Browse files
committed
Enhance property descriptions in chart datasets
Updated `LineChartDataset` and `ScatterChartDataset` classes to provide detailed descriptions and default values for various properties. Key changes include the addition of new properties such as `BackgroundColor`, `BorderColor`, `CubicInterpolationMode`, and hover-related properties. Existing properties were also enhanced with clearer documentation, improving usability and guidance for developers. NOTE: This commit message is auto-generated using GitHub Copilot.
1 parent d83ce55 commit 2b22bf4

2 files changed

Lines changed: 258 additions & 122 deletions

File tree

BlazorExpress.ChartJS/Models/ChartDataset/LineChart/LineChartDataset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public LineChartDataset FillToValue(double value)
144144
/// </summary>
145145
[AddedVersion("1.0.0")]
146146
[DefaultValue("butt")]
147-
[Description("Cap style of the line.")]
147+
[Description("Cap style of the line. Supported values are 'butt', 'round', and 'square'.")]
148148
public string BorderCapStyle { get; set; } = "butt";
149149

150150
/// <summary>

0 commit comments

Comments
 (0)