Your points are valid and we will take them into consideration in subsequent revisions of the software.
If you know your data is of this form, the simplest thing to do is to peg the low end of the y-scale to 0.0. This will display the data as if the y-values had 0 range, instead of the 10-13 range you used.
pTransform1.AutoScale(DatasetArray, ChartObj.AUTOAXES_FAR , ChartObj.AUTOAXES_FAR);
if (pTransform1.GetYScale().GetRange() < 10-13)
pTransform1.ScaleStartY = 0;