Skip to content

Commit d83ce55

Browse files
committed
Update chart dataset properties and descriptions
- Corrected `Datalabels` description in `PolarAreaChartDataset`. - Enhanced `RadarChartDataset` with default values and new hover properties. - Updated `Datalabels` in `ScatterChartDataset` to reflect the correct dataset. NOTE: This commit message is auto-generated using GitHub Copilot.
1 parent 1606ebd commit d83ce55

3 files changed

Lines changed: 217 additions & 90 deletions

File tree

BlazorExpress.ChartJS/Models/ChartDataset/PolarAreaChart/PolarAreaChartDataset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public class PolarAreaChartDataset : ChartDataset<double?>
117117
/// </summary>
118118
[AddedVersion("1.0.0")]
119119
[DefaultValue("new()")]
120-
[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.")]
120+
[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 polar area chart dataset. If not set, a default configuration is applied.")]
121121
[ParameterTypeName(nameof(PolarAreaChartDatasetDataLabels))]
122122
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
123123
public PolarAreaChartDatasetDataLabels Datalabels { get; set; } = new();

0 commit comments

Comments
 (0)