ScaleOptionsBase.ProcessMissingPoints Property
In This Article
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
NuGet Package: DevExpress.Charts
#Declaration
public ProcessMissingPointsMode ProcessMissingPoints { get; set; }
#Property Value
Type | Description |
---|---|
Process |
A Process |
Available values:
Name | Description |
---|---|
Skip | Skips missing points in series. |
Insert |
Inserts zero value points into series where there are gaps in series points. |
Insert |
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. |
Insert |
![]() |
Inserts zero value points into series where there are gaps in series points. |
Insert |
![]() |
Inserts empty points into series where there are gaps in series points. |
Note
The Process
See Also