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.1.dll
NuGet Package: DevExpress.Wpf.TreeMap
Declaration
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