That was interesting and relaxing at the same time. The answer to your problem is obvious, since the padding settings are apparently ignored when setting min/max for an axis. Therefore, what you should use to move points away from the border is just increase min/max values just like in the code.
First graph has min/max increased to move the points away from the borders of the plot, the below one (created for the same data) does not.
To avoid this sort of issues and manual setting of these parameters why don't you have a method which could from the given data calculate and return min/max. Then in your graph for each of the values you apply the gap (pad) you like. Just as it is done with use of the minMax(data)
method in the code.
BTW: Thanks for teaching me how to invert values of a plot I didn't know this trick. :)
EDIT
Please see another version which offers a solution that doesn't involve manipulating with the jqPlot script.
In this approach I am basically hiding the unwanted value labels, tick marks still are there. I am afraid that without interacting with canvas of the plot you cannot remove those unwanted ticks.
if i increase or decrease min or max values with the tick array present, the axis just stays the same, and if i change the values with numberticks option instead of the tick array it displays the new min and max value on the axis, which i don't want to. the values on the axis must stay with 1 and 200 on the edges.
thanks! – Keleth May 04 '12 at 16:03