Back to Devexpress

NestedDoughnutSeriesView.Group Property

corelibraries-devexpress-dot-xtracharts-dot-nesteddoughnutseriesview.md

latest2.4 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Data)]
public object Group { get; set; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Data)>
Public Property Group As Object

Property Value

TypeDescription
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;

| | --- | --- | |

|

|

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

NestedDoughnutSeriesView Class

NestedDoughnutSeriesView Members

DevExpress.XtraCharts Namespace