Skip to main content
A newer version of this page is available. .
All docs
V20.2

BootstrapChartAxisSettings.TickInterval Property

Specifies the interval between regular ticks.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v20.2.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