How to: Use the Numeric Options of Series Points
This example demonstrates how you can access the numeric options of series points, e.g. to control the precision with which their values are displayed by series labels.
<dxc:AreaSeries2D.PointOptions>
<dxc:PointOptions Pattern="${V}">
<dxc:PointOptions.ValueNumericOptions>
<dxc:NumericOptions Precision="2" Format="FixedPoint" />
</dxc:PointOptions.ValueNumericOptions>
<dxc:PieSeries2D.PercentOptions>
<dxc:PercentOptions ValueAsPercent="False" />
</dxc:PieSeries2D.PercentOptions>
</dxc:PointOptions>
</dxc:AreaSeries2D.PointOptions>
The result is shown in the following image.
See Also