wpf-devexpress-dot-xpf-dot-charts-ec7eea08.md
Contains options related to empty points.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public class EmptyPointOptions :
ChartDependencyObject,
IEmptyPointColorizer
Public Class EmptyPointOptions
Inherits ChartDependencyObject
Implements IEmptyPointColorizer
The following members return EmptyPointOptions objects:
The EmptyPointOptions class contains the following options:
Refer to the following help topic for more information: Empty Points.
This example shows how to customize display options for empty points of a bar series.
Assign an EmptyPointOptions object to the XYSeries2D.EmptyPointOptions property to customize empty point settings of the line series.
Specify the EmptyPointOptions.ProcessPoints property to define how the chart handles empty points. In this example, the chart calculates mock values for empty points.
Use the EmptyPointOptions.Brush property to paint bars that display empty points.
<dxc:BarSideBySideSeries2D DisplayName="Day Temperature"
ArgumentDataMember="Date"
ValueDataMember="DayTemperature">
<dxc:BarSideBySideSeries2D.EmptyPointOptions>
<dxc:EmptyPointOptions ProcessPoints="Interpolate"
Brush="#80808080" >
</dxc:EmptyPointOptions>
</dxc:BarSideBySideSeries2D.EmptyPointOptions>
</dxc:BarSideBySideSeries2D>
Object DispatcherObject DependencyObject Freezable ChartDependencyObject EmptyPointOptions AreaEmptyPointOptions
See Also