You will need to create a BarSeries for every month, and either stack or cluster them.
e.g.:
BarSeries barJan = ( BarSeries )chart.Series.Add( SeriesType.Bar );
barJan.MultiBarMode = MultiBarMode.Series;
BarSeries barFeb = ( BarSeries )chart.Series.Add( SeriesType.Bar);
barFeb.MultiBarMode = MultiBarMode.Stacked;
BarSeries barMar = ( BarSeries )chart.Series.Add( SeriesType.Bar);
barMar.MultiBarMode = MultiBarMode.Stacked;
//…
As for the labels in the center, I’m not sure what is the problem you are facing, the labels should display at the center of axis ticks by default.
Imported from legacy forums. Posted by André (had 3117 views)