Skip to main content
All docs
V25.1
  • BootstrapChartAxisSettings.MinorTickInterval Property

    Specifies the interval between minor ticks.

    Namespace: DevExpress.Web.Bootstrap

    Assembly: DevExpress.Web.Bootstrap.v25.1.dll

    NuGet Package: DevExpress.Web.Bootstrap

    Declaration

    [DefaultValue(typeof(decimal), "0")]
    public decimal MinorTickInterval { get; set; }

    Property Value

    Type Default Description
    Decimal "0"

    The interval.

    Remarks

    To divide a lengthy chart axis into shorter segments, major and minor ticks are used. Major ticks are accompanied with axis labels. Between each pair of neighboring major ticks, several minor ticks reside. Minor ticks are required when major ticks are far from each other. To set a custom minor tick interval, use the MinorTickInterval property. If this property is not set, minor ticks are arranged automatically.

    <dx:BootstrapChart>
        <ArgumentAxis TickInterval="1" />
        <ValueAxisCollection>
            <dx:BootstrapChartValueAxis TickInterval="1" />
        </ValueAxisCollection>
    </dx:BootstrapChart>
    
    See Also