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
Update documentation and descriptions in Razor and C# files
Replaced "JetBrains Rider" with "Other" in the prerequisites of several Razor files to broaden IDE acceptance. Enhanced comments and descriptions in `BarChartDataset.cs` for clarity, including rephrasing and reordering for better readability. Added links to relevant documentation to improve usability and guidance for users.
NOTE: This commit message is auto-generated using GitHub Copilot.
Copy file name to clipboardExpand all lines: BlazorExpress.ChartJS.Demo.RCL/Pages/Docs/GettingStarted/net8/GettingStarted_01_NET_8_WebAssembly_Documentation.razor
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
<Block>
15
15
<ul>
16
16
<li>.NET 8 SDK (<ahref="https://dotnet.microsoft.com/download/dotnet/8.0"target="_blank">Download</a>) or later version</li>
17
-
<li>Visual Studio 2022 or later / VS Code / JetBrains Rider</li>
17
+
<li>Visual Studio 2022 or later / VS Code / Other</li>
Copy file name to clipboardExpand all lines: BlazorExpress.ChartJS.Demo.RCL/Pages/Docs/GettingStarted/net8/GettingStarted_02_NET_8_WebApp_Server_Documentation.razor
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
<Block>
15
15
<ul>
16
16
<li>.NET 8 SDK (<ahref="https://dotnet.microsoft.com/download/dotnet/8.0"target="_blank">Download</a>) or later version</li>
17
-
<li>Visual Studio 2022 or later / VS Code / JetBrains Rider</li>
17
+
<li>Visual Studio 2022 or later / VS Code / Other</li>
Copy file name to clipboardExpand all lines: BlazorExpress.ChartJS.Demo.RCL/Pages/Docs/GettingStarted/net8/GettingStarted_03_NET_8_WebApp_Auto_Documentation.razor
[Description("Gets or sets the percent (0-1) of the available width each bar should be within the category width.")]
41
+
[Description("Percent (0-1) of the available width each bar should be within the category width. 1.0 will take the whole category width and put the bars right next to each other.")]
36
42
publicdoubleBarPercentage{get;set;}=0.9;
37
43
38
44
/// <summary>
39
-
/// Gets or sets the width of each bar, in pixels. When this is enforced, barPercentage and categoryPercentage are ignored.
45
+
/// If this value is a number, it is applied to the width of each bar, in pixels.
46
+
/// When this is enforced, <see cref="BarPercentage" /> and <see cref="CategoryPercentage" /> are ignored.
[Description("Gets or sets the width of each bar, in pixels. When this is enforced, barPercentage and categoryPercentage are ignored.")]
54
+
[Description("Gets or sets the width of each bar, in pixels. When this is enforced, <code>BarPercentage</code> and <code>CategoryPercentage</code> are ignored.")]
/// Gets or sets a value indicating whether the bars should be grouped on the index axis.
118
-
/// When <see langword="true" />, all the datasets at the same index value will be placed next to each other centering on that index value.
119
-
/// When <see langword="false" />, each bar is placed on its actual index-axis value.
130
+
/// Should the bars be grouped on index axis.
131
+
/// When true, all the datasets at same index value will be placed next to each other centering on that index value.
132
+
/// When false, each bar is placed on its actual index-axis value.
120
133
/// <para>
121
134
/// Default value is <see langword="true" />.
122
135
/// </para>
123
136
/// </summary>
124
137
[AddedVersion("1.0.0")]
125
138
[DefaultValue(true)]
126
-
[Description("Gets or sets a value indicating whether the bars should be grouped on the index axis.")]
139
+
[Description("Should the bars be grouped on index axis. When <b>true</b>, all the datasets at same index value will be placed next to each other centering on that index value. When <b>false</b>, each bar is placed on its actual index-axis value.")]
127
140
publicboolGrouped{get;set;}=true;
128
141
129
142
/// <summary>
130
-
/// Gets or sets the bar background color when hovered.
0 commit comments