Skip to main content
All docs
V23.2

BootstrapPolarChartAxisSettingsBase.TickInterval Property

Specifies the interval between regular ticks.

Namespace: DevExpress.Web.Bootstrap

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