This is what I would like to do.

my current options setting on axis:
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: xticks,
},
yaxis: {
min:0,
tickOptions: {formatString: '%1.0f'}
}
},
xticks is an array of strings. I can only get it to work if I dont use a renderer and my custom ticks, but I want to use my own specified ticks.
Thanks for the help!
Instead of fighting the
CategoryAxisRenderer, I’d fudge it with the default numerical one:Produces:
Fiddle here.