wassertim
wassertim

Reputation: 3136

how to change mschart label arrow color

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

Answers (1)

Radoslav Hristov
Radoslav Hristov

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

Related Questions