Color of axis y and color of horizontal lines of the grid of graphic table

Only I could put color in axis x with:

chart.CategoryAxis.AxisLine.Color = Color.FromArgb(192,192,192);

Its not possible for me to put color in axis y and in horizontal lines of grid.
Is it possible to do that?
please

i mean in vertical axis


I mean in vertical axis.

Hi,


Please try using Chart.ValueAxis for your requirements:
e.g
Sample code:

chart.ValueAxis.AxisLine.Color = …;

Thank you.