NumericOptions Class
Contains specific settings which define the representation of numeric values for display purposes.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.2.dll
NuGet Package: DevExpress.Wpf.Charts
#Declaration
public class NumericOptions :
ChartDependencyObject,
INumericOptions
#Related API Members
The following members return NumericOptions objects:
#Remarks
The NumericOptions class contains settings which specify the display representation of numeric values.
For more information about axis scale settings, refer to the following help topic: Axis Scale Types.
#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>
#Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the NumericOptions 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.