Table of Contents
StartAngle Property

Gets or sets a value that indicates the start angle of scale. This is a dependency property.

Syntax
 public Double StartAngle { get; set; }

Property Value

The default value is 0.

Remarks

A circular scale starts at the value specified by the value of StartAngle and ends at the value specified by the value of EndAngle.

Note that the values of the angle increase clockwise and decrease counterclockwise.

The following XAML code demonstrates how to create a half-top gauge scale:

XAML
<eo:CircularScale Minimum="0" Maximum="12" 
    MajorInterval="1" ShowMinorTicks="false" StartAngle="180" EndAngle="360" />

See Also