Back to Devexpress

NumericOptions.Precision Property

wpf-devexpress-dot-xpf-dot-charts-dot-numericoptions.md

latest3.9 KB
Original Source

NumericOptions.Precision Property

Gets or sets the maximum number of digits displayed to the right of the decimal point.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public int Precision { get; set; }
vb
Public Property Precision As Integer

Property Value

TypeDescription
Int32

An integer value that specifies the maximum number of digits displayed in the fractional part of the value.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to Precision
PointOptions

.ArgumentNumericOptions .Precision

| | PointOptions |

.ValueNumericOptions .Precision

|

Remarks

Use the Precision property to specify the maximum number of digits displayed to the right of a value’s decimal point, when the NumericOptions.Format property is not set to the NumericFormat.General value.

Example

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

xaml
<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 Precision 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.

wpf-data-grid-display-chart-control-in-grid-details/CS/WpfApplication19/MainWindow.xaml#L27

xml
<dxc:PointOptions.ValueNumericOptions>
    <dxc:NumericOptions Format="Percent" Precision="0"/>
</dxc:PointOptions.ValueNumericOptions>

wpf-data-grid-create-master-detail-grid-in-code/CS/MasterDetailInCode/MainWindow.xaml#L24

xml
<dxc:PointOptions.ValueNumericOptions>
    <dxc:NumericOptions Format="Percent" Precision="0"/>
</dxc:PointOptions.ValueNumericOptions>

See Also

NumericOptions Class

NumericOptions Members

DevExpress.Xpf.Charts Namespace