22{
33 public class RadarDataset : Dataset
44 {
5- /// <summary>
6- /// Gets or sets a value indicating whether this <see cref="RadarDataset"/> is fill.
7- /// </summary>
8- /// <value>
9- /// <c>true</c> if fill; otherwise, <c>false</c>.
10- /// </value>
11- [ JsonPropertyName ( "fill" ) ]
12- [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingDefault ) ]
13- public bool Fill { get ; set ; }
145 /// <summary>
156 /// Gets or sets the color of the background.
167 /// </summary>
@@ -20,6 +11,7 @@ public class RadarDataset : Dataset
2011 [ JsonPropertyName ( "backgroundColor" ) ]
2112 [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
2213 public string BackgroundColor { get ; set ; }
14+
2315 /// <summary>
2416 /// Gets or sets the color of the border.
2517 /// </summary>
@@ -29,6 +21,27 @@ public class RadarDataset : Dataset
2921 [ JsonPropertyName ( "borderColor" ) ]
3022 [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
3123 public string BorderColor { get ; set ; }
24+
25+ /// <summary>
26+ /// Gets or sets the width of the border.
27+ /// </summary>
28+ /// <value>
29+ /// The width of the border.
30+ /// </value>
31+ [ JsonPropertyName ( "borderWidth" ) ]
32+ [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
33+ public int ? BorderWidth { get ; set ; }
34+
35+ /// <summary>
36+ /// Gets or sets a value indicating whether this <see cref="RadarDataset"/> is fill.
37+ /// </summary>
38+ /// <value>
39+ /// <c>true</c> if fill; otherwise, <c>false</c>.
40+ /// </value>
41+ [ JsonPropertyName ( "fill" ) ]
42+ [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingDefault ) ]
43+ public bool Fill { get ; set ; }
44+
3245 /// <summary>
3346 /// Gets or sets the color of the point background.
3447 /// </summary>
@@ -38,6 +51,7 @@ public class RadarDataset : Dataset
3851 [ JsonPropertyName ( "pointBackgroundColor" ) ]
3952 [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
4053 public string PointBackgroundColor { get ; set ; }
54+
4155 /// <summary>
4256 /// Gets or sets the color of the point border.
4357 /// </summary>
@@ -47,6 +61,7 @@ public class RadarDataset : Dataset
4761 [ JsonPropertyName ( "pointBorderColor" ) ]
4862 [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
4963 public string PointBorderColor { get ; set ; }
64+
5065 /// <summary>
5166 /// Gets or sets the color of the point hover background.
5267 /// </summary>
@@ -56,6 +71,7 @@ public class RadarDataset : Dataset
5671 [ JsonPropertyName ( "pointHoverBackgroundColor" ) ]
5772 [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingNull ) ]
5873 public string PointHoverBackgroundColor { get ; set ; }
74+
5975 /// <summary>
6076 /// Gets or sets the color of the point hover border.
6177 /// </summary>
0 commit comments