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

PercentOptions Class

Provides settings for presenting point values as percents.

Namespace: DevExpress.Xpf.Charts

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

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>

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

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