If you are trying to set the AxisScrollBar.Value to adjust it to the first data point, you can actually use this property:
c1Chart1.View.AxisX.UseExactLimits = true;
this will remove the dead space between the Y Axis and the first data point.
Is that the issue you are trying to solve?