Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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