Skip to main content
A newer version of this page is available. .

ScaleOptionsBaseModel.ProcessMissingPoints Property

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

Namespace: DevExpress.XtraCharts.Designer

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

NuGet Packages: DevExpress.Win.Charts, DevExpress.Win.Design

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