Skip to main content

NestedDonutSeries2D.Group Property

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

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

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 Donut series. Series with a similar Group property value are nested in the same donuts.

Group for Series 1, Series 2= 0; Group for Series 1, Series3 = 0;
NestedDonut_Group12 NestedDonut_Group13

Note

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

See Also