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

MapPieSettings.RotationAngle Property

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

Declaration

public double RotationAngle { get; set; }

Property Value

Type Description
Double

A Double value.

Property Paths

You can access this nested property as listed below:

Object Type Path to RotationAngle
PieChartDataAdapter
.PieSettings.RotationAngle

Example

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.

<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>

The following code snippets (auto-collected from DevExpress Examples) contain references to the RotationAngle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also