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

BootstrapPolarChart.ResolveLabelOverlapping Property

Specifies how the chart must behave when series point labels overlap.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

[DefaultValue(ChartResolveLabelOverlapping.None)]
public ChartResolveLabelOverlapping ResolveLabelOverlapping { get; set; }

Property Value

Type Default Description
ChartResolveLabelOverlapping **None**

One of the ChartResolveLabelOverlapping enumeration values.

Available values:

Name Description
None

Do not resolve label overlapping.

Hide

Resolve overlapping by hiding labels. Labels to be hidden are determined automatically.

Stack

Arrange labels in a stack.

Remarks

Series point labels display series point values. If your chart contains several series with a large number of points in each, point labels may overlap. In this case, specify how the chart must resolve overlapping using the ResolveLabelOverlapping property. To hide certain labels, set this option to “hide“. Labels to be hidden will be determined automatically.

See Also