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

ChartSeries.IgnoreEmptyPoints Property

Gets or sets whether empty points are ignored when plotting the current chart series.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v19.2.Core.dll

Declaration

[DefaultValue(false)]
public bool IgnoreEmptyPoints { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to ignore empty points; otherwise, false.

Remarks

Points that have no values defined for some of their arguments are treated as empty points.

For instance, the following pivot table contains argument and series values for three dimensions: “Category 1”, “Category 2” and “Category 3”.

IgnoreEmptyPoints_DataSource

Note that the “Category 2” dimension has no value for the “3” argument, while the “Category 2” dimension has no value for the “4” argument.

Depending on the IgnoreEmptyPoints property value, chart series will be plotted in the following ways.

IgnoreEmptyPoints_sum

See Also