corelibraries-devexpress-dot-xtracharts-5be959fc.md
Lists the values used to specify an action the chart control performs in the case of missing points.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum ProcessMissingPointsMode
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum ProcessMissingPointsMode
| Name | Description |
|---|---|
Skip |
Skips missing points in series.
|
| InsertZeroValues |
Inserts zero value points into series where there are gaps in series points.
|
| InsertEmptyPoints |
Inserts empty points into series where there are gaps in series points.
|
The following properties accept/return ProcessMissingPointsMode values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | ScaleOptionsBase.ProcessMissingPoints |
| WinForms Controls | ScaleOptionsBaseModel.ProcessMissingPoints |
The values listed by this enumeration are used to set the ScaleOptionsBase.ProcessMissingPoints property.
See Also