I am trying out THIS .NET MS Chart control.

Could someone who knows about it tell me how to set the axis labels without using data bindings?

eg. If there are 3 columns, I am looking for something like this

Chart1.AxisX.Labels = ["First", "Second", "Third"];

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

This does it

    for (int c = 1; c < numOfColumns; c++)
      chart.ChartAreas[0].AxisX.CustomLabels.Add(new CustomLabel(c - 0.5, c + 0.5, labels[c], 0, LabelMarkStyle.None));
link|improve this answer
feedback

Try this:

Chart1.ChartAreas["ChartArea1"].AxisX.Title = "Axis X Name"
link|improve this answer
That is to set the label of the X axis. I want to set the label for the individual bar – aximili Feb 10 '11 at 6:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.