-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Scale changed to LinearRadialAxis - Update summaries - Fixes #110
- Loading branch information
1 parent
751354f
commit 6203279
Showing
3 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
using ChartJs.Blazor.ChartJS.Common; | ||
using ChartJs.Blazor.ChartJS.Common.Axes; | ||
|
||
namespace ChartJs.Blazor.ChartJS.RadarChart | ||
{ | ||
/// <summary> | ||
/// Represents the options-subconfig of a <see cref="RadarConfig"/>. | ||
/// </summary> | ||
public class RadarOptions : BaseConfigOptions | ||
{ | ||
public Scale Scale { get; set; } | ||
/// <summary> | ||
/// Gets or sets the scale configuration for this chart. | ||
/// </summary> | ||
public LinearRadialAxis Scale { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether or not line gaps (by NaN data) will be spanned. | ||
/// If <see langword="false"/>, NaN data causes a break in the line. | ||
/// </summary> | ||
public bool? SpanGaps { get; set; } | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.