更改图表控件轴颜色?

时间:2014-03-13 17:24:03

标签: c# charts mschart

请看一下:

enter image description here

我可以修改Axis的默认黑色吗? 我已经搜索了这个并更改了几个属性,但它仍然是黑色的。

1 个答案:

答案 0 :(得分:6)

你试过这个吗,Chart会是你创建的图表对象

//0 would be indice of chart area you wish to Change, Color.ColorYouWant
Chart.ChartAreas[0].AxisX.LineColor = Color.Red;
Chart.ChartAreas[0].AxisX.LineColor = Color.Red;

//To change the Colors of the interlacing lines you access them like so
Chart.ChartAreas[0].AxisX.InterlacedColor = Color.Red;
Chart.ChartAreas[0].AxisY.InterlacedColor = Color.Red;

//If you are looking to change the color of the Grid Lines
Chart.ChartAreas[0].AxisX.MajorGrid.LineColor = Color.Red;
Chart.ChartAreas[0].AxisY.MajorGrid.LineColor = Color.Red;
相关问题