[]
        
(Showing Draft Content)

FlexChart Series

A series is a set of data or more specifically related data points that are plotted on a chart.

In FlexChart, a series is represented by the Series object, which provides the entire data plotted on the chart. And the Flexchart.Series collection comprises all data series (Series objects) in the control.

You can assign any of the following properties to a series in FlexChart:

  • An X-axis (Series.AxisX)
  • A Y-axis (Series.AxisY)
  • A property containing Y values for the series (Series.Binding)
  • A property containing X values for the series (Series.BindingX)
  • A chart type (Series.ChartType)
  • A collection of objects containing the series data (Series.ItemsSource)
  • A name (Series.SeriesName)

A series consists of a collection of data points that you can customize using the following properties:

  • To set the shape of the marker to be used for each data point in the series (Series.SymbolMarker)
  • To set the size of the symbol used to render the series (Series.SymbolSize)
  • To set the symbol style used in the data points in the series (Series.SymbolStyle)

Once you have set these properties in a series, the same settings are inherited by all data points.

Here are the links to key information regarding the Series object in FlexChart: