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.StartAngle Property

Gets or sets the angle that specifies the first sector’s rotation in degrees.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Package: DevExpress.Wpf.TreeMap

#Declaration

public double StartAngle { get; set; }

#Property Value

Type Description
Double

The angle in degrees.

#Remarks

The StartAngle property defines the first sector’s start angle of all Sunburst rings at once.

The following images depict a Sunburst chart with different start angles:

StartAngle Value Image
StartAngle = 0
StartAngle = 60

Use the SunburstControl.SweepDirection property to specify the direction in which the start angle is plotted.

#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