Skip to main content
All docs
V23.2

BootstrapPolarChartAxisSettingsBase.MinorTickInterval Property

Specifies the interval between minor ticks.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.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:BootstrapPolarChart>
    <ArgumentAxis MinorTickInterval="1" />
    <ValueAxis MinorTickInterval="1" />
</dx:BootstrapPolarChart>
See Also