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

NestedDoughnutSeriesView.InnerIndent Property

Specifies the inner indent between the outer and inner edges of nested doughnuts.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraSerializableProperty]
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public double InnerIndent { get; set; }

Property Value

Type Description
Double

A Double value that is the inner indent of nested doughnuts.

Remarks

Use the InnerIndent property to specify the inner indent between doughnuts nested one into another.

((NestedDoughnutSeriesView)series1.View).InnerIndent = 5;

((NestedDoughnutSeriesView)series2.View).InnerIndent = 5;

((NestedDoughnutSeriesView)series1.View).InnerIndent = 20;

((NestedDoughnutSeriesView)series2.View).InnerIndent = 20;

NestedDoughnut_InnerIndent_5

NestedDoughnut_InnerIndent_20

To learn more on Nested Doughnut series, see the Nested Doughnut Chart topic.

See Also