Hi Atanu,
The X axis grid lines are drawn for each major tick and also for the left edge - this is on top of the Y axis line itself. Since the Gridline is a 1 pixel back line and the Y axis is also a 1 pixel back line, the difference is not visible.
Please see the image below. It shows the X axis gridlines clearly by setting a different color and thickness to them:
this.chartControl1.PrimaryXAxis.GridLineType.ForeColor = System.Drawing.Color.IndianRed;
this.chartControl1.PrimaryXAxis.GridLineType.PenType = System.Drawing.Drawing2D.PenType.PathGradient;
this.chartControl1.PrimaryXAxis.GridLineType.Width = 5F;
You can differentiate the grid lines by setting the above properties.
Thanks,
Davis