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

NestedDoughnutSeriesView.Group Property

Specifies a group for all series having the same nested group value. These items are to be placed into the same nested doughnuts.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[TypeConverter(typeof(ObjectTypeConverter))]
[NonTestableProperty]
[XtraChartsLocalizableCategory(XtraChartsCategory.Data)]
public object Group { get; set; }

Property Value

Type Description
Object

A Object value, identifying a nested group.

Remarks

Use the Group property to create nested groups for similar Nested Doughnut series. Series with a similar Group property value are nested in the same doughnuts.

((NestedDoughnutSeriesView)series1.View).Group = 0;

((NestedDoughnutSeriesView)series3.View).Group = 0;

((NestedDoughnutSeriesView)series1.View).Group = 0;

((NestedDoughnutSeriesView)series2.View).Group = 0;

NestedDoughnut_Series1_3_Group

NestedDoughnut_Series1_2_Group

Note

When using series template binding for Nested Doughnuts series, the Group property should be specified at runtime, in the ChartControl.BoundDataChanged event handler.

See Also