Skip to content

Commit 35bfff9

Browse files
committed
Update documentation for Hidden property
Improved clarity and formatting of the summary documentation for the `Hidden` property. Replaced `<c>` tags with `<code>` for better visual representation and rephrased the comment for readability. The `Description` attribute has also been updated to reflect these changes. NOTE: This commit message is auto-generated using GitHub Copilot.
1 parent f019f2b commit 35bfff9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

BlazorExpress.ChartJS/Models/ChartDataset/ChartDataset.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ public ChartDataset()
4747
public List<TData>? Data { get; set; }
4848

4949
/// <summary>
50-
/// Configure the visibility of the dataset. Setting <c>Hidden</c> to <c>true</c> will prevent the dataset from being rendered in the Chart.
50+
/// Configure the visibility of the dataset. Setting Hidden to true will prevent the dataset from being rendered in the Chart.
5151
/// <para>
5252
/// Default value is <see langword="false"/>.
5353
/// </para>
5454
/// </summary>
5555
[AddedVersion("1.0.0")]
5656
[DefaultValue(false)]
57-
[Description("Configure the visibility of the dataset. Setting Hidden to true will prevent the dataset from being rendered in the Chart.")]
57+
[Description("Configure the visibility of the dataset. Setting <code>Hidden</code> to <b>true</b> will prevent the dataset from being rendered in the Chart.")]
5858
public bool Hidden { get; set; }
5959

6060
/// <summary>

0 commit comments

Comments
 (0)