Version

Stacked Column Series

This topic explains, with code examples, how to use the StackedColumnSeries in the XamDataChart™ control.

Introduction

Stacked Column Series belongs to a group of Category Series and it is rendered using a collection of rectangles (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. Stacked Column Series uses the same concepts of data plotting as Stacked Bar Series but data points are stacked along vertical line (y-axis) rather than along horizontal line (x-axis). In other words, the StackedColumnSeries is rendered like the StackedBarSeries but with 90 degrees counter-clockwise rotation. 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

Figures 1 and 2 demonstrate how the StackedColumnSeries and StackedBarSeries look when plotted in the XamDataChart control.

Stacked Column Series  01.png

Figure 1: Sample implementation of the StackedColumnSeries type.

Stacked Column Series  02.png

Figure 2: Sample implementation of the StackedBarSeries type.

Series Recommendations

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

Data Requirements

While the XamDataChart 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 StackedColumnSeries 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 column of the StackedColumnSeries 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 Column Series renders data using the following rules:

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

  • Each row in the data model represents a single stacked column. 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 will be 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 StackedColumnSeries type is rendered in clusters where each cluster represents a data point. The first Stacked Column Series in the Series collection of the XamDataChart control will render as a column on the left of the cluster. Each successive series will get rendered to the right of the previous series. For more information on this feature, refer to the Multiple Series topic.

Examples

Data Binding

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

In XAML:

xmlns:local="clr-namespace:[DATA_MODEL_NAMESPACE]"

In XAML:

<ig:XamDataChart x:Name="DataChart" >
    <ig:XamDataChart.Resources>
        <local:EnergyProductionDataSample x:Key="energyProdData" />
    </ig:XamDataChart.Resources>
    <ig:XamDataChart.Axes>
        <ig:NumericYAxis x:Name="YAxis" MinimumValue="0" Interval="400" Label="{}{} TWh" />
        <ig:CategoryXAxis x:Name="XAxis" ItemsSource="{StaticResource energyProdData}" Label="{}{Country}" />
    </ig:XamDataChart.Axes>
    <ig:XamDataChart.Series>
    <!-- ========================================================================== -->
        <ig:StackedColumnSeries XAxis="{Binding ElementName=XAxis}"
                                YAxis="{Binding ElementName=YAxis}"
                                ItemsSource="{StaticResource energyProdData}">
            <ig:StackedColumnSeries.Series>
                <ig:StackedFragmentSeries ValueMemberPath="Coal" Title="Coal" />
                <ig:StackedFragmentSeries ValueMemberPath="Hydro" Title="Hydro" />
                <ig:StackedFragmentSeries ValueMemberPath="Nuclear" Title="Nuclear" />
                <ig:StackedFragmentSeries ValueMemberPath="Gas" Title="Gas" />
                <ig:StackedFragmentSeries ValueMemberPath="Oil" Title="Oil" />
            </ig:StackedColumnSeries.Series>
        </ig:StackedColumnSeries>
    </ig:XamDataChart.Series>
    <!-- ========================================================================== -->
</ig:XamDataChart>

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 StackedColumnSeries()
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";
...
StackedColumnSeries series = new StackedColumnSeries();
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);