Skip to main content

PercentOptions Class

Provides settings for presenting point values as percents.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public class PercentOptions :
    ChartDependencyObject

Remarks

The PercentOptions class allows you to control whether point values should be presented as percents (see the PercentOptions.ValueAsPercent property) and specify the accuracy of percent values (see the PercentOptions.PercentageAccuracy property).

A PercentOptions object is available via the PercentOptions property of the corresponding Series descendant (e.g. AreaFullStackedSeries2D.PercentOptions).

Example

This example demonstrates how to customize the PointOptions.ValueNumericOptions and PercentOptions properties.

<dxc:AreaFullStackedSeries2D.PointOptions>
    <dxc:PointOptions>
        <dxc:PointOptions.ValueNumericOptions>
            <dxc:NumericOptions Format="Percent" Precision="2" />
        </dxc:PointOptions.ValueNumericOptions>
        <dxc:AreaFullStackedSeries2D.PercentOptions>
            <dxc:PercentOptions PercentageAccuracy="3" />
        </dxc:AreaFullStackedSeries2D.PercentOptions>
    </dxc:PointOptions>
</dxc:AreaFullStackedSeries2D.PointOptions>
See Also