BootstrapChartAxisSettings.TickInterval Property
Specifies the interval between regular ticks.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
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