wpf-devexpress-dot-xpf-dot-map-dot-mappiesettings-640bdda3.md
Gets or sets the angle by which the pie charts are rotated, relative to its default appearance.
Namespace : DevExpress.Xpf.Map
Assembly : DevExpress.Xpf.Map.v25.2.dll
NuGet Package : DevExpress.Wpf.Map
public double RotationAngle { get; set; }
Public Property RotationAngle As Double
| Type | Description |
|---|---|
| Double |
A Double value.
|
You can access this nested property as listed below:
| Object Type | Path to RotationAngle |
|---|---|
| PieChartDataAdapter |
.PieSettings .RotationAngle
|
MapPieSettings allows specifying parameters of generated map pie charts. It can be accessed using the PieChartDataAdapter.PieSettings property.
This class contains the following properties that allow customizing the map pie chart appearance.
MapPie.RotationDirection - allows specifying the rotation direction of pie segments.
MapPie.RotationAngle - allows specifying the rotation angle of pie segments.
MapPie.HoleRadiusPercent - allows specifying the hole radius as a percentage value.
<dxm:PieChartDataAdapter DataSource="{Binding Source={StaticResource pieData}, XPath=Table1}"
ItemIdDataMember="Country" ItemMinSize="10" ItemMaxSize="50">
<dxm:PieChartDataAdapter.Mappings>
<dxm:MapPieMappingInfo Latitude="CapitalLat" Longitude="CapitalLon"
SegmentId="MedalClass" SegmentValue="Quantity"/>
</dxm:PieChartDataAdapter.Mappings>
<dxm:PieChartDataAdapter.PieSettings>
<dxm:MapPieSettings
HoleRadiusPercent="{Binding ElementName=seHoleRadius, Path=Value}"
RotationDirection="{Binding ElementName=cbRotationDirection, Path=SelectedValue}"
RotationAngle="{Binding ElementName=seRotationAngle, Path=Value}"/>
</dxm:PieChartDataAdapter.PieSettings>
</dxm:PieChartDataAdapter>
See Also