Hi!
The line type jqchart duplicate bottom axis labels from 0-24 and below 1 - 7:
$('#chart_jqChartLineCH').jqChart({
axes: [{
type: 'linear',
location: 'bottom',
minimum: 0,
maximum: 23,
interval: 1,
title: {
text: 'Hours',
fillStyle: 'green'
},
zoomEnabled: false,
},
{
type: 'linear',
location: 'left',
minimum: 0,
maximum: 3000,
interval: 100,
}]
,
title: { text: 'Hourly Total Handled By Queue ' },
series: [
{
type: 'line',
title: 'Series 1',
data: [[1, 62], [2, 60], [3, 68], [4, 58], [5, 52], [6, 60], [7, 48]]
},
{
type: 'line',
title: 'Series 2',
data: [[1, 46], [2, 40], [3, 62], [4, 65], [5, 60], [6, 36], [7, 70]]
}
]
});