Skip to main content

ScaleOptionsBaseModel.ProcessMissingPoints Property

Gets or sets the value of the ScaleOptionsBase.ProcessMissingPoints within the model.

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v23.2.Wizard.dll

NuGet Package: DevExpress.Win.Charts

Declaration

[PropertyForOptions]
public ProcessMissingPointsMode ProcessMissingPoints { get; set; }

Property Value

Type Description
ProcessMissingPointsMode

The identifier of an action whose chart control is executed in the case of missing points.

Available values:

Name Description
Skip

Skips missing points in series.

ProcessMissingPointsMode_Skip

InsertZeroValues

Inserts zero value points into series where there are gaps in series points.

ProcessMissingPointsMode_InsertZeroValues

InsertEmptyPoints

Inserts empty points into series where there are gaps in series points.

ProcessMissingPointsMode_InsertEmptyPoints

See Also