Version

Stacked 100-Column Series

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

Introduction

Stacked 100-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. The Stacked100ColumnSeries is identical to the StackedColumnSeries in all aspects except in their treatment of the values on y-axis. Instead of presenting a direct representation of the data, the Stacked100ColumnSeries presents the data in terms of percent of the sum of all values in a data point. In addition, the Stacked 100-Column Series uses the same concepts of data plotting as Stacked 100-Bar Series but data points are stacked along vertical line (y-axis) rather than along horizontal line (x-axis). In other words, the Stacked100ColumnSeries is rendered like the Stacked100BarSeries 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 Category Series and Chart Axes topics.

Series Preview

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

Using the xamDataChart Stacked 100 Column Series 01.png

Figure 1: Sample implementation of the Stacked100ColumnSeries type.

Using the xamDataChart Stacked 100 Column Series 02.png

Figure 2: Sample implementation of the StackedColumnSeries type.

Series Recommendations

Although the XamDataChart supports plotting unlimited number of various types of series, it is recommended to use the Stacked 100-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 100-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 Stacked100ColumnSeries 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 Stacked100ColumnSeries 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-Column Series renders data using the following rules:

  • A StackedFragmentSeries needs be added to the Series collection property of the Stacked100ColumnSeries 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 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 Stacked100ColumnSeries type will get 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 is 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 Stacked100ColumnSeries 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 Stacked100ColumnSeries.

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" Label="{}{} %" />
        <ig:CategoryXAxis x:Name="XAxis" ItemsSource="{StaticResource energyProdData}" Label="{}{Country}" />
    </ig:XamDataChart.Axes>
    <ig:XamDataChart.Series>
    <!-- ========================================================================== -->
        <ig:Stacked100ColumnSeries XAxis="{Binding ElementName=XAxis}"
                                YAxis="{Binding ElementName=YAxis}"
                                ItemsSource="{StaticResource energyProdData}">
            <ig:Stacked100ColumnSeries.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:Stacked100ColumnSeries.Series>
        </ig:Stacked100ColumnSeries>
    </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 Stacked100ColumnSeries()
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";
...
Stacked100ColumnSeries series = new Stacked100ColumnSeries();
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);