我想使用 jqplot 绘制一些数据,但我有一个小问题。
我使用的代码是这样的(小提琴上的代码):
$.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 个水平区域,“某个值”、“其他系列”和“第三系列” “其他系列”和蓝色到“第三系列”)。
我需要如何格式化数据才能得到这个?
作为额外的问题:
我希望 yaxis 和相应的 ax 标签之间有几个像素的边距。我该如何设置?
该图具有背景颜色(淡黄色)。如何消除该颜色并获得容器具有的任何颜色?