Skip to main content

MapPie.RotationAngle Property

Gets or sets the angle by which the pie is rotated, relative to its default appearance.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

[DefaultValue(0)]
public double RotationAngle { get; set; }

Property Value

Type Default Description
Double 0

A Double value.

Example

private void seRotationAngle_EditValueChanged(object sender, EventArgs e) {
    pie.RotationAngle = (double)seRotationAngle.Value;
}
See Also