RobotNet/RobotNet.WebApp/Charts/Models/BarChart/Axes/ChartAxesTicksMajor.cs
2025-10-15 15:15:53 +07:00

11 lines
360 B
C#

namespace RobotNet.WebApp.Charts.Models.BarChart.Axes;
public class ChartAxesTicksMajor
{
/// <summary>
/// If <see langword="true" />, major ticks are generated. A major tick will affect auto skipping and major will be defined
/// on ticks in the scriptable options context.
/// </summary>
public bool Enabled { get; set; } = false;
}