11 lines
360 B
C#
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;
|
|
}
|