wpf-devexpress-dot-xpf-dot-treemap-dot-sunburstcontrol-7d9c12a7.md
Gets or sets the angle that specifies the first sector’s rotation in degrees.
Namespace : DevExpress.Xpf.TreeMap
Assembly : DevExpress.Xpf.TreeMap.v25.2.dll
NuGet Package : DevExpress.Wpf.TreeMap
public double StartAngle { get; set; }
Public Property StartAngle As Double
| Type | Description |
|---|---|
| Double |
The angle in degrees.
|
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.
The following markup specifies the rotation of the first Sunburst sectors at all levels:
<dxtm:SunburstControl StartAngle="60"
SweepDirection="Clockwise">
<!--...-->
</dxtm:SunburstControl>
See Also