Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.

PointOptions-NumericOptions

See Also