Just as the title says. Have a look at the screen-shot below the see what I mean. Version is 0.9.7r635. Any ideas?
There is a years worth of data, that is, a plot for every single day. Here is a sample:
[[["01-01-2012", 0], ["01-02-2012", 0], ["01-03-2012", 0],...]]
And here is the javascript:
$.jqplot('jqplot', chartData, {
seriesDefaults: {
color: '#09c',
showMarker: false,
rendererOptions: {
smooth: true
}
},
axes: {
xaxis: {
pad: 0,
renderer: $.jqplot.DateAxisRenderer,
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
tickOptions: {
angle: -90
},
tickInterval: ( 'year' == duration ) ? '1 month' : '1 day'
},
yaxis: {
min: 0,
tickOptions: {
formatString: '%d',
}
}
}
});
In this instance, the tickInterval is set to '1 month'.