Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

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 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 TickInterval option.

See Also