Version

Stacked 100-Line Series

This topic explains, with code examples, how to use the Stacked100LineSeries in the UltraDataChart™ control.

Introduction

Stacked 100-Line Series belongs to a group of Category Series and it is rendered using a collection of points connected by line segments (StackedFragmentSeries) that are stacked on top of each other. Each stacked fragment in the collection represents one visual element in each stack. Each stack can contain both positive and negative values. All positive values are grouped on the positive side of the y-axis, and all negative values are grouped on the negative side of the y-axis. The Stacked100LineSeries is identical to the StackedLineSeries in all aspects except in their treatment of the values on y-axis. Instead of presenting a direct representation of the data, the Stacked100LineSeries presents the data in terms of percent of the sum of all values in a data point. For more conceptual information, comprehension with other types of series, and supported types of axes, refer to the Category Series and Chart Axes topics.

Series Preview

Figure 1 demonstrates how the Stacked100LineSeries looks when plotted in the UltraDataChart control.

Stacked 100 Line Series 01.png

Figure 1: Sample implementation of the Stacked100LineSeries type.

Series Recommendations

Although the UltraDataChart supports plotting unlimited number of various types of series, it is recommended to use the Stacked100LineSeries with similar types of series. Refer to the Multiple Series topic for information on what types of series are recommended with the Stacked100LineSeries and how to plot multiple types of series.

Data Requirements

While the UltraDataChart control allows you to easily bind it to your own data model, be sure to supply the appropriate amount and type of data that the series requires. If the data does not meet the minimum requirements based on the type of series that you are using, an error is generated by the control. Refer to the Series Requirements and Category Series topics for more information on data series requirements.

The following is a list of data requirements for the Stacked100LineSeries type:

  • The data model must contain at least one numeric data column. It is recommended that the data model contain two or more numeric data columns so that each point of the Stacked100LineSeries has two or more stacked fragments.

  • The data model may contain an optional string or date time field for labels.

Data Rendering Rules

The Stacked 100-Line Series renders data using the following rules:

  • A StackedFragmentSeries needs be added to the Series collection property of the Stacked100LineSeries for every numeric column in the data model that you want rendered.

  • Each row in the data model represents a single stacked line. Sections are created based on the columns in the data model that are mapped to the ValueMemberPath property of StackedFragmentSeries objects.

  • When the second value in the row is rendered, its value is added to the points of the previous values in that row. Therefore, each point going upwards on the chart is a cumulative sum of the values at that point.

  • The string or date time column that is mapped to the Label property of data mapping on the x-axis is used as the category labels. If the data mapping for Label is not specified, default labels are used.

  • Category labels are drawn on the x-axis. Data values are drawn on the y-axis.

  • When rendering, multiple series of the Stacked100LineSeries type is rendered in layers with each successive series rendered in front of the previous one in the Series collection of the UltraDataChart control. For more information on this feature, refer to the Multiple Series topic.

Examples

Data Binding

The code snippet below shows how to bind the Stacked100LineSeries object to sample of category data (which is available for download from Sample Energy Data resource). Refer to the data requirements section of this topic for information about data requirements for the Stacked100LineSeries.

In Visual Basic:

Dim dataSample As New EnergyProductionDataSample()
Dim yAxis As New NumericYAxis()
Dim xAxis As New CategoryXAxis()
xAxis.DataSource = dataSample
xAxis.Label = "Country"
xAxis.ItemsSource = dataSample
xAxis.Label = "{Country}"
Me.DataChart.Axes.Add(xAxis)
Me.DataChart.Axes.Add(yAxis)
' create a stack fragment for each numeric column in your data
Dim seriesFragment As New StackedFragmentSeries()
seriesFragment.ValueMemberPath = "Coal"
seriesFragment.Title = "Coal"
' ...
Dim series As New Stacked100LineSeries()
series.ItemsSource = dataSample
series.DataSource = dataSample
series.XAxis = xAxis
series.YAxis = yAxis
' add all stack fragments to the series
series.Series.Add(seriesFragment)
' ...
Me.DataChart.Series.Add(series)

In C#:

EnergyProductionDataSample dataSample = new EnergyProductionDataSample();
NumericYAxis yAxis = new NumericYAxis();
CategoryXAxis xAxis = new CategoryXAxis();
xAxis.DataSource = dataSample;
xAxis.Label = "Country";
xAxis.ItemsSource = dataSample;
xAxis.Label = "{Country}";
this.DataChart.Axes.Add(xAxis);
this.DataChart.Axes.Add(yAxis);
// create a stack fragment for each numeric column in your data
StackedFragmentSeries seriesFragment = new StackedFragmentSeries();
seriesFragment.ValueMemberPath = "Coal";
seriesFragment.Title = "Coal";
...
Stacked100LineSeries series = new Stacked100LineSeries();
series.ItemsSource = dataSample;
series.DataSource = dataSample;
series.XAxis = xAxis;
series.YAxis = yAxis;
// add all stack fragments to the series
series.Series.Add(seriesFragment);
...
this.DataChart.Series.Add(series);