NestedDoughnutSeriesView.InnerIndent Property
Specifies the inner indent between the outer and inner edges of nested doughnuts.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
[XtraSerializableProperty]
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; |
---|---|
To learn more on Nested Doughnut series, see the Nested Doughnut Chart topic.
See Also