是否可以更改范围条形图标签 Y-Axis 的颜色文本或背景

Is it possible to change color text or background of label Y-Axis of Range bar chart

如果是这样请帮我如何改变颜色

要更改 X-Axis 标签的颜色:

chart2.ChartAreas[0].AxisX.LabelStyle.ForeColor = Color.Yellow;

要更改 Y-Axis 标签的颜色:

 chart2.ChartAreas[0].AxisY.LabelStyle.ForeColor = Color.Blue;

希望对您有所帮助。编码愉快。