Skip to main content
A newer version of this page is available. .

ScaleOptionsBase.ProcessMissingPoints Property

Gets or sets mode which specifies the action the chart control should perform with the missing points.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

public ProcessMissingPointsMode ProcessMissingPoints { get; set; }

Property Value

Type Description
ProcessMissingPointsMode

A ProcessMissingPointsMode enumeration value.

Available values:

Name Description
Skip

Skips missing points in series.

ProcessMissingPointsMode_Skip

InsertZeroValues

Inserts zero value points into series where there are gaps in series points.

ProcessMissingPointsMode_InsertZeroValues

InsertEmptyPoints

Inserts empty points into series where there are gaps in series points.

ProcessMissingPointsMode_InsertEmptyPoints

Remarks

Use the ProcessMissingPoints property to define which action should be performed with missing points for an X-axis:

Action Sample Description
Skip ProcessMissingPointsMode_Skip Skips missing points in series.
InsertZeroValues ProcessMissingPointsMode_InsertZeroValues Inserts zero value points into series where there are gaps in series points.
InsertEmptyPoints ProcessMissingPointsMode_InsertEmptyPoints Inserts empty points into series where there are gaps in series points.

Note

The ProcessMissingPoints property can’t be specified in the continuous scale mode.

See Also