I'm currently evaluating jqChart and I'm impressed so far. Just a quick question:
Can a stacked column chart use a dateTime axis?
I need to graph a date interval (6 months), where only 40 days scattered throughout the interval have data.
A dateTime axis would really come in handy, so I would be able to render it, without manually generating all days as data points, but only those with data.
I've tried the following, but it doesn't quite work:
$('#jqChart').jqChart({
axes: [
{ type: 'linear', location: 'left' },
{ type: 'dateTime', location: 'bottom'}
],
series: [
{ type: 'stackedColumn', data: [ [new Date(2011, 1, 6), 5], [new Date(2011, 1, 7), 7], [new Date(2011, 1, 19), 9] ] },
]
});