如何更改图表标签的前景?这是图表的截图
我尝试使用chart1.series [0] .FontForeColor = color.white;但整个图表都变白了。
答案 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
会根据您的要求更改标签颜色。
属性LineColor
和MajorGrid.LineColor
允许修改网格线(屏幕截图中的黑色),以防您需要。当然,颜色Red和AliceBlue就是例如。