作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Stacked Vertical 工作正常:http://jsfiddle.net/Q28Aj/1/
但是,如果我将条形更改为水平(并将标签更改为另一个轴),则格式错误:http://jsfiddle.net/e4Rkd/1/
知道我哪里出错了吗?
最佳答案
如果您希望水平堆叠起作用,则必须反转 x/y 数据:
//reverse data
for (series in data){
var s = data[series];
for (i=0;i<s.data.length;i++){
var tmp = s.data[i][0];
s.data[i][0] = s.data[i][1];
s.data[i][1] = tmp;
}
}
var options = {
series: {
stack: true,
lines: {
show: false,
steps: false
},
bars: {
show: true,
horizontal: true
},
},
yaxis: {
ticks: tick_labels
}
};
$.plot($("#placeholder"), data, options);
关于Flot Stacked Horizon Bar 格式不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9944336/
我是一名优秀的程序员,十分优秀!