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.v24.2.dll
Declaration
Property Value
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. |
Remarks
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