Skip to main content

PercentOptions.PercentageAccuracy Property

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

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

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