I am trying to build a clustered column chart like the attached screenshot, but can only get one data point per x-value (country). Can someone point out what I am doing wrong? Thanks
Thanks again Max. I forget that some properties have to be set to a new instance.
You can set the Font property to a new Font instance:chart.TitleBottom.Font = new Font("Arial", 14);
Well, That would make the difference wouldn't it? :-) Thanks Max! Is there a way to increase the font-size of the chart's TitleBottom(that displays below the x-axis)? I would like for it to stand out, but I can't seem to figure out how to get it to change.
You have ColumnSpacing set to 1. If you set it to 0, you'll see the proper grouping.
chart.ColumnChart.ColumnSpacing = 0
Isn't copy/paste a wonderful thing...lol...Thank you, I certainly missed that. The Series' aren't grouping though. Attached is the image.