Skip to main content
A newer version of this page is available. .

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.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Map

Declaration

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

Property Value

Type Default Description
Double 0

A Double value.

Example

View Example

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