SeriesLabelBase.ResolveOverlappingMinIndent Property
Gets or sets the minimum indent between adjacent series labels, when an overlapping resolving algorithm is applied to them.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public int ResolveOverlappingMinIndent { get; set; }
Property Value
Type | Description |
---|---|
Int32 | An integer value, which specifies the minimum indent, in pixels. |
Remarks
After an overlapping resolving mode is applied to series labels (via the SeriesLabelBase.ResolveOverlappingMode property), you can use the ResolveOverlappingMinIndent property to define the minimum indent between adjacent series labels.
Note
The ResolveOverlappingMinIndent property affects labels of all chart series whose SeriesLabelBase.ResolveOverlappingMode property’s value differs from None. Because the ResolveOverlappingMinIndent property value is initialized at the chart diagram level, it is not initialized until a newly created Series item is added to the ChartControl.Series collection.
It also means that this property value is shared with the StackedBarTotalLabel.ResolveOverlappingMinIndent property.
The following images demonstrate the ResolveOverlappingMinIndent property in action (with the SeriesLabelBase.ResolveOverlappingMode set to JustifyAroundPoint).
The property values | The resulting images |
---|---|
ResolveOverlappingMinIndent = -1 | |
ResolveOverlappingMinIndent = 10 |
For more information, refer to Series Point Labels.