If so please help me how to change that color
To change the color of the X-Axis Label:
chart2.ChartAreas[0].AxisX.LabelStyle.ForeColor = Color.Yellow;
To change the color of the Y-Axis Label:
chart2.ChartAreas[0].AxisY.LabelStyle.ForeColor = Color.Blue;
Hope it helps. Happy coding.