Skip to main content

SimpleSeries Class

A Simple series.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public class SimpleSeries :
    ChartSeries

Remarks

A Simple series presents regular two-dimensional data, in which each data point corresponds to one argument value and one Y-axis value.

Simple series can be plotted in various ways: area, line or bar charts, etc. To specify how to plot a simple series, use the SimpleSeries.SeriesType property.

BarSeries_Bar LineSeries AreaSeries

A Simple series requires one measure to calculate the Y-coordinates of data points. Use the SimpleSeries.Value property to specify this measure.

To plot a series within the ChartDashboardItem, add the SimpleSeries 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