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

PercentOptions.PercentageAccuracy Property

Gets or sets the percentage accuracy, when the PercentOptions.ValueAsPercent property is enabled.

Namespace: DevExpress.Xpf.Charts

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

Declaration

public int PercentageAccuracy { get; set; }

Property Value

Type Description
Int32

An integer value which specifies the number of decimal places used in the percentage display.

Remarks

Use the PercentageAccuracy property to specify the precision level of the percentage value for series point labels, when the PercentOptions.ValueAsPercent property is set to true.

The default value is 2, indicating that two decimal places are displayed.

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 snippet (auto-collected from DevExpress Examples) contains a reference to the PercentageAccuracy 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