Skip to main content

ChartSeries.IgnoreEmptyPoints Property

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

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

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