2
我試圖設置使用jqplot水平條形圖如下:jqplot單槓問題
var plot1 = $.jqplot('graph', [gData], {
seriesDefaults: {
renderer:$.jqplot.BarRenderer,
rendererOptions: {
barDirection: 'horizontal'
}
},
axes: {
yaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: gTicks
}
}
});
此代碼工作正常豎線,如:
var plot1 = $.jqplot('graph', [gData], {
seriesDefaults: {
renderer:$.jqplot.BarRenderer
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: gTicks
}
}
});
但是,當我去使它水平,突然酒吧不再排隊蜱。例如,對於某些滴答,可能有兩個或更多個重疊的條。對於一些人來說,可能根本沒有。最後,還有一個'未定義'的勾號,似乎有很多條重疊。
gData和gTicks都是javascript數組。
有什麼想法?
編輯:未定義的類別實際上是我自己的創作,但問題保持不變。