As a result of trial and error, I discovered that you need to set the forceTickAt0 property to true for the y axis.
http://jsfiddle.net/85K6K/14/
Here's the relevant part:
yaxis: { autoscale: true, renderer: $.jqplot.LinearAxisRenderer, rendererOptions: { forceTickAt0: true } }
I think you should consider the bug. There are other problems that open up in their Y axis database with the NaN error, which is apparently related; but I think your question is worth publishing yourself. With this question and JSFiddle, it should be well documented enough for developers to solve :)
EDIT . I donβt know enough about your graph data to find out if this is suitable, but maybe you want to use the sortMergedLabels property of CategoryAxisRenderer to make your graph look like this ?
rendererOptions: { sortMergedLabels: true }
source share