Information is Wealth...: stacked bar column chart
Showing posts with label stacked bar column chart. Show all posts
Showing posts with label stacked bar column chart. Show all posts

ASP.net chart control stacked bar column chart

ASP.net chart control stacked bar column chart

To  make ASP.net chart control look like a stacked bar column chart

Add the Following in Code behind:

// Code to make the chart look like stacked
 Chart2.Series[0].ChartType = SeriesChartType.StackedColumn;

 Chart2.Series[1].ChartType = SeriesChartType.StackedColumn;

 Chart2.Series[2].ChartType = SeriesChartType.StackedColumn;

 Chart2.Series[3].ChartType = SeriesChartType.StackedColumn;