BootstrapChartAxisSettings.MinorTickInterval Property
Specifies the interval between minor 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
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