如何创建一条线以在条形图中显示阈值

时间:2012-02-01 07:22:06

标签: javascript cordova flot

我正在使用flot来创建像

这样的条形图

Bar Graph

我需要指定一个阈值,例如750(y轴)的线,以显示限制...... flot包中有一个jquery.flot.threshold.js文件,但我不知道如何在条形图上使用它。怎么做?

1 个答案:

答案 0 :(得分:4)

似乎some issues使用了当前flot版本的阈值插件。如果您只想标记阈值,则可能更容易使用网格标记选项:

$.plot($("#placeholder"), [ d1, d2, d3 ], {
    series: {
        stack: true,      
        bars: { show: true, barWidth: 0.6 }
    },
    grid: {
           markings: [ { xaxis: { from: 0, to: 12 }, yaxis: { from: 0, to: 20 }, color: "#6D7B8D" }]
        }
});

制作(小提琴here):

enter image description here