Reputation: 3136
Simple question. But I can't find an answer yet. How to change label line color in mschart:
alt text http://img12.imageshack.us/img12/8816/chartjo.png
Upvotes: 2
Views: 1154
Reputation: 1053
You can do something like:
chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.Red;
chartArea1.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Red;
Upvotes: 4