using RobotNet.WebApp.Charts.Models.RadarChart.Axis; using RobotNet.WebApp.Charts.Models.Common; namespace RobotNet.WebApp.Charts.Models.RadarChart; public class RadarChartOptions : ChartOptions { /// /// Gets or sets the scale configuration for this chart. /// public RadarScale Scales { get; set; } = new(); /// /// Gets or sets a value indicating whether or not line gaps (by NaN data) will be spanned. /// If , NaN data causes a break in the line. /// public bool? SpanGaps { get; set; } public RadarChartPlugins Plugins { get; set; } = new(); }