I want to programmatically turn on/off the labels on an Chart Control.

The chart is for a load of stats, by person, and I want to be able to anonymise it by removing the labels.

Can this be done from the Chart Control, or do I need to do it at the underlying data-table?

Thanks.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Yes just set the AxisX.LabelStyle to false

e.g

Chart1.ChartAreas["ChartArea1"].AxisX.LabelStyle.Enabled = false;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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