Skip to main content
All docs
V23.2

SunburstControl.SweepDirection Property

Gets or sets the direction in which the first sector’s start angle is plotted.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Package: DevExpress.Wpf.TreeMap

Declaration

public SunburstSweepDirection SweepDirection { get; set; }

Property Value

Type Description
SunburstSweepDirection

Specifies the direction in which the Sunburst chart is rotated.

Available values:

Name Description
Clockwise

A Sunburst chart rotates clockwise.

Counterclockwise

A Sunburst chart rotates counterclockwise.

Remarks

Use the StartAngle property to specify the rotation of the Sunburst chart.

Example

The following markup specifies the rotation of the first Sunburst sectors at all levels:

<dxtm:SunburstControl StartAngle="60" 
                      SweepDirection="Clockwise">
    <!--...-->
</dxtm:SunburstControl>
See Also