Skip to main content
A newer version of this page is available. .

BootstrapPolarChartArgumentAxis.AxisDivisionFactor Property

Specifies the minimum distance between two neighboring major ticks in pixels. Applies only to the axes of the “continuous“ and “logarithmictypes.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v18.2.dll

Declaration

[DefaultValue(50)]
public int AxisDivisionFactor { get; set; }

Property Value

Type Default Description
Int32 50

An integer number that specifies the minimum distance in pixels.

Remarks

For axes displaying numbers, the distance between major ticks depends on two interconnected properties: AxisDivisionFactor and BootstrapChartCommonAxisSettings.TickInterval. Consider that you have specified both these properties. If the specified tick interval leads the pixel distance between two ticks to being less than the AxisDivisionFactor value, this tick interval will be ignored.

Use the AxisDivisionFactor property only if you need to set the distance between ticks not knowing the axis values. Otherwise, use the BootstrapChartCommonAxisSettings.TickInterval option.

See Also