I have my jqplot with log scale axis which is look like this:
And here is my x and y axis setting for my jqplot:
axes : {
xaxis : {
renderer : $j.jqplot.LogAxisRenderer,
ticks : [0.1, 1, 10, 100],
},
yaxis : {
renderer : $j.jqplot.LogAxisRenderer,
ticks : [0.1, 1, 10, 100],
},
}
But I would like to show the minor grids which is looks exactly like this:
How could I do this?