I want to create a chart with Microsoft’s Chart Controls, which looks like this Excel chart:

Has somebody an idea how to group the elements on the x-axis as on this image?
What I did so far was:
Series s = new Series("Testseries");
s.ChartType = SeriesChartType.Line;
s.Color = Color.Red;
s.Points.Add(20,65);
s.Points.Add(17,66);
s.Points.Add(17,55);
Chart1.Series.Add(s);
How can I label each data point seperately on the x-axis?
OK, I solved the problem like this: