PieSeriesLabel.ColumnIndent Property
Gets or sets by how much a column of labels is indented from the pie chart.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
[XtraSerializableProperty]
public int ColumnIndent { get; set; }
Property Value
Type | Description |
---|---|
Int32 | An integer value which specifies the indent, in pixels. |
Remarks
This property is in effect when the PieSeriesLabel.Position property is set to the PieSeriesLabelPosition.TwoColumns value.
Note that the entire indent between a pie chart and each column of series labels is calculated as the sum of the values set for the ColumnIndent and SeriesLabelBase.LineLength properties.
ColumnIndent = 0, LineLength = 0 | ColumnIndent = 10, LineLength = 0 | ColumnIndent = 0, LineLength = 20 | ColumnIndent = 10, LineLength = 20 |
---|---|---|---|
See Also