flot.js に問題があります。グラフの xaxis がバーの中央にありません。align: 'center' を試してみましたが、うまくいきません。グラフの真下にある xaxis (日付ラベル) が必要です。私のコード
$.plot('#grafik-presensi', [data], {
series: {
bars: {
show: true,
barWidth: 0.6,
align:'center',
fill: true,
fillColor: {
colors: [{
opacity: 0.9
}, {
opacity: 0.9
}]
}
}
},
colors: ['#25476a'],
yaxis: {
},
xaxis: {
ticks: ticks,
},
grid: {
hoverable: true,
clickable: true,
tickColor: '#eeeeee',
borderWidth: 0
},
legend: {
show: true,
position: 'nw'
},
tooltip: {
show: true,
content: 'Presensi %x, Jumlah %y'
}
});
});