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

RangeSeries Class

A Range series.

Namespace: DevExpress.DashboardCommon

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

Declaration

public class RangeSeries :
    ChartSeries

Remarks

A Range series contains two values for each argument value. These values can be presented with bars displayed along the Y-axis (the Range Bar series type) or lines can be stroked through the adjacent points, filling the area between them (the Range Area series type).

To specify whether to use the Range Bar or Range Area presentation, use the RangeSeries.SeriesType property.

RangeBar RangeArea

A Range series requires two measures. They are used to calculate the limits of the data range.

Use the following properties to specify these measures.

RangeSeries.Value1

Gets or sets a measure that provides data used to calculate the first series of values.

RangeSeries.Value2

Gets or sets a measure that provides data used to calculate the second series of values.

To plot a series within the ChartDashboardItem, add the RangeSeries object to the ChartPane.Series collection of a pane where you need to display this series. To access a desired pane, use the ChartDashboardItem.Panes property.

See Also