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

ProcessMissingPointsMode Enum

Lists the values used to specify an action the chart control performs in the case of missing points.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum ProcessMissingPointsMode

Members

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

Related API Members

The following properties accept/return ProcessMissingPointsMode values:

Library Related API Members
Cross-Platform Class Library ScaleOptionsBase.ProcessMissingPoints
WinForms Controls ScaleOptionsBaseModel.ProcessMissingPoints

Remarks

The values listed by this enumeration are used to set the ScaleOptionsBase.ProcessMissingPoints property.

See Also