How to change the mschart arrow label color

Simple question. But I can't find the answer yet. How to change the color of the label of the label in mschart:

alt text http://img12.imageshack.us/img12/8816/chartjo.png

+2


a source to share


1 answer


You can do something like:



        chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.Red;
        chartArea1.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Red;

      

+4


a source







All Articles