using RobotNet.WebApp.Charts.Models.Common; namespace RobotNet.WebApp.Charts.Models.RadarChart.Axis; public class PointLabels { /// /// Gets or sets the font color for a point label. /// See for working with colors. /// public string? Color { get; set; } /// /// If true, point labels are shown. When display: 'auto', the label is hidden if it overlaps with another label /// public bool Display { get; set; } /// /// Background color of the point label. /// public string? BackdropColor { get; set; } /// /// Border radius of the point label /// public double? BorderRadius { get; set; } /// /// Padding of label backdrop. /// public ChartPadding? BackdropPadding { get; set; } /// /// Padding between chart and point labels. /// public ChartPadding? Padding { get; set; } /// /// Font of the point label /// public ChartFont? Font { get; set; } /// /// If true, point labels are centered. /// public bool? CenterPointLabels { get; set; } }