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.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
[TypeConverter(typeof(EnumTypeConverter))]
public enum ProcessMissingPointsMode
Members
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. |
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