---
title: "Stacking Series Support for Essential Chart in 2010 Vol3"
published_at: "2010-06-16T21:01:00+00:00"
modified_at: "2025-03-20T07:51:29+00:00"
url: "https://www.syncfusion.com/blogs/post/stacking-series-support-for-essential-chart"
excerpt: "Essential Chart will support stacking a series with a group. In order to group a stacking series with another stacking series in the chart control, you can use a property called StackingGroup of the chart series with the desired group..."
taxonomy_category:
  - "ASP.NET"
  - "Desktop"
  - "Windows Forms"
taxonomy_post_tag:
  - "2010 Volume 3"
  - "ASP.NET"
  - "Chart"
  - "Window Forms"
---

# Stacking Series Support for Essential Chart in 2010 Vol3

[aspnet](https://www.syncfusion.com/blogs/author/aspnet)

![Image](https://www.syncfusion.com/blogs/wp-content/uploads/2018/08/stackcing_series_80043759.png)


Essential Chart will support stacking a series with a group. In order to group a stacking series with another stacking series in the chart control, you can use a property called StackingGroup of the chart series with the desired group name.

The below code snippet demonstrates the usage of StackingGroup for a series in the chart control.

**[C#]**

```
ChartSeries series1 = new ChartSeries("Series 1");
series1.Type = ChartSeriesType.StackingColumn;
// specifing group name .
series1.StackingGroup = "FirstGroup";
ChartSeries series2 = new ChartSeries("Series 2");
series2.Type = ChartSeriesType.StackingColumn;
// specifing group name .
series2.StackingGroup = "SecondGroup";
ChartSeries series3 = new ChartSeries("Series 3");
series3.Type = ChartSeriesType.StackingColumn;
// specifing group name .
series3.StackingGroup = "FirstGroup";
```

![clip_image001](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-1.png "clip_image001")

Column Chart with Stacking Group
