using RobotNet.WebApp.Charts.Models.BarChart.Axes; using System.Text.Json.Serialization; namespace RobotNet.WebApp.Charts.Models.RadarChart.Axis; public class RadialTicks : ChartAxesTicks { /// /// Gets or sets the horizontal padding of label backdrop. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? BackdropPaddingX { get; set; } /// /// Gets or sets the vertical padding of label backdrop. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? BackdropPaddingY { get; set; } /// /// Gets or sets the value indicating whether the scale will include 0 if it is not already included. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public bool? BeginAtZero { get; set; } /// /// Gets or sets the user defined minimum number for the scale, overrides minimum value from data. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? Min { get; set; } /// /// Gets or sets the user defined maximum number for the scale, overrides minimum value from data. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? Max { get; set; } /// /// Gets or sets the maximum number of ticks and gridlines to show. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? MaxTicksLimit { get; set; } /// /// If defined and is not specified, the step size will be rounded to this many decimal places. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? Precision { get; set; } /// /// Gets or sets the user defined fixed step size for the scale. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? StepSize { get; set; } /// /// Gets or sets the adjustment used when calculating the maximum data value. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? SuggestedMax { get; set; } /// /// Gets or sets the adjustment used when calculating the minimum data value. /// [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? SuggestedMin { get; set; } }