0
我想使用jqplot繪製一些數據,我有一個小問題。jqplot:繪製系列
我使用的代碼是這樣(code on fiddle):
$.jqplot('chart1', [[202],[249],[148]], {
seriesColors : ['#ff0000', '#0f0', '#00f'],
seriesDefaults : {
renderer :$.jqplot.BarRenderer,
pointLabels : {
show : true
},
tickRenderer : $.jqplot.CanvasAxisTickRenderer,
rendererOptions : {
barDirection : 'horizontal'
}
},
axes: {
yaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: ["some value", "other series", "third series"],
},
},
});
該圖具有3個水平區域,「一些值」,「等系列」和「第三系列」 我需要每個圖巴至在相應的區域下,並保持現在的顏色(紅色爲「某些值」,綠色爲「其他系列」,藍色爲「第三系列」)。
我該如何格式化數據才能得到它?
由於額外的問題:
我想幾個像素,Y軸和相應的斧頭標籤之間的餘量。我如何設置?
該圖具有bg顏色(淡黃色)。我該如何消除這種顏色並獲得容器的顏色?
不錯。但是,如果仔細觀察,您可以看到每個酒吧並不居中居中。你知道如何居中嗎? (如綠條,與標籤文字對齊)。 – 2013-04-10 13:37:20
將數據從data = [[[202,1]],[[249,2]],[[148,3]]];到data = [[[202,1],[248,2],[148,3]]]; (抱歉括號錯誤)。 – AnthonyLeGovic 2013-04-10 14:06:38
已更新示例[此處](http://jsfiddle.net/AnthonyLeGovic/vTwU2/14/)回答(不是乾淨的方式來做)你的第一個額外問題 – AnthonyLeGovic 2013-04-10 14:20:47