如何更改图表标签的前景色?

时间:2014-02-17 07:06:00

标签: c# winforms charts label

如何更改图表标签的前景?这是图表的截图 enter image description here

我尝试使用chart1.series [0] .FontForeColor = color.white;但整个图表都变白了。

1 个答案:

答案 0 :(得分:2)

试试这个:

        this.chart1.BackColor = Color.AliceBlue;

        this.chart1.ChartAreas[0].AxisX.LineColor = Color.Red;
        this.chart1.ChartAreas[0].AxisX.MajorGrid.LineColor = Color.Red;
        this.chart1.ChartAreas[0].AxisX.LabelStyle.ForeColor = Color.Red;

        this.chart1.ChartAreas[0].AxisY.LineColor = Color.Red;
        this.chart1.ChartAreas[0].AxisY.MajorGrid.LineColor = Color.Red;
        this.chart1.ChartAreas[0].AxisY.LabelStyle.ForeColor = Color.Red;

此处LabelStyle.ForeColor会根据您的要求更改标签颜色。

属性LineColorMajorGrid.LineColor允许修改网格线(屏幕截图中的黑色),以防您需要。当然,颜色Red和AliceBlue就是例如。