Flot 積み上げ棒グラフを作成しましたが、ブロックが積み上げられていないように見えます。ブロックはすべて 0 (グラフの下部) から始まります。
4 つのブロックの値は次のとおりです。
- 明るい緑 - 1
- パープル - 28
- 赤 - 83
- ライトグリーン - 195
正しく積み重ねられていれば、高さは 307 になるはずです。
drawLineChart: function(el,data,ticks,labelstr) {
var plot = $.plot(el, data, {
series: {stack: true,
lines: {show: false, steps: false},
bars: {show: true, barWidth: 0.4, align: 'center'}
},
xaxis: {
ticks: ticks
},
yaxis: {
min: 0,
},
grid: {
color: '#aaa',
borderWidth:0,
axisMargin:0,
hoverable: true,
autoHighlight: false
},
legend: {
show: true,
position: "ne",
noColumns: 1
}
});
}