corelibraries-devexpress-dot-xtracharts-dot-nesteddoughnutseriesview.md
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
[XtraChartsLocalizableCategory(XtraChartsCategory.Data)]
public object Group { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Data)>
Public Property Group As Object
| Type | Description |
|---|---|
| Object |
A Object value, identifying a nested group.
|
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