corelibraries-devexpress-dot-xtracharts-dot-scaleoptionsbase-4dab2e14.md
Gets or sets mode which specifies the action the chart control should perform with the missing points.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
public ProcessMissingPointsMode ProcessMissingPoints { get; set; }
Public Property ProcessMissingPoints As ProcessMissingPointsMode
| Type | Description |
|---|---|
| ProcessMissingPointsMode |
A ProcessMissingPointsMode enumeration value.
|
Available values:
| 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.
|
Use the ProcessMissingPoints property to define which action should be performed with missing points for an X-axis:
| Action | Sample | 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. |
Note
The ProcessMissingPoints property can’t be specified in the continuous scale mode.
See Also