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

    Specifies the interval between regular ticks.

    Namespace: DevExpress.Web.Bootstrap

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

    NuGet Package: DevExpress.Web.Bootstrap

    Declaration

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

    Property Value

    Type Default Description
    Decimal "0"

    The interval.

    Remarks

    Use this property to divide the scale by ticks in a specified interval from each other. If this option is not set, ticks are automatically arranged so that their labels do not overlap each other.

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