jQuery Flot Chart为每个系列添加标签

时间:2014-05-23 15:09:46

标签: javascript jquery graph flot

我正在使用http://www.flotcharts.org/库来绘制2个连接系列。 我可以成功创建Graph,你可以在下面看到我的JSFIDDLE。

待办事项: 问题是我想在每个系列的顶部中心添加一个标签。 我希望以这样的方式添加标签:如果调整图形大小,它将保持在系列的顶部中心。 我怎样才能做到这一点 ?

图片:

enter image description here

的jsfiddle: http://jsfiddle.net/bababalcksheep/ktZ5X/2/

HTML / CSS:

  

html,body {身高:100%; }

JS:

var options = {
    series: {
        lines:  { show: true,lineWidth: 2,fill: true},
        points: { show: true,radius: 3,lineWidth: 1},
        shadowSize: 2
    },
    legend: { show: false}
};

var DATA = [{
    "label": "Group-1",
        "data": [
        [0.25, 0.25],
        [0.5, 0.5],
        [0.875, 0.875],
        [1, 1]
    ]
}, {
    "label": "Group-2",
        "data": [
        [1, 0.5],
        [1.25, 0.25],
        [1.5, 0.5],
        [1.88, 0.875],
        [2, 1]
    ]
}];
var plot = $.plot("#placeholder", DATA, options);

2 个答案:

答案 0 :(得分:3)

我同意@iLikePrograms在钩子事件中添加它是最好的方法。这是一个更新的fiddle

在您的选项中添加:

hooks: { drawSeries : [addLabel] }

addLabel函数的位置:

addLabel = function(plot, ctx, series){
    var xaxis = series.xaxis;
    var yaxis = series.yaxis;
    // space midway on series
    var x = (series.data[series.data.length-1][0] + series.data[0][0])/2;
    // just below top of plot
    var y = yaxis.max - (yaxis.tickSize / 2);
    ctx.font = "16px 'Segoe UI'";
    ctx.fillStyle = "black";
    var text = series.label;
    ctx.fillText(text, xaxis.p2c(x), yaxis.p2c(y)); // add the label
} 

答案 1 :(得分:1)

您可以使用comments插件。请参阅此更新fiddle作为开始。

新选项:

    comment: {
        show: true
    },
    comments: [{
        x: 0.625,
        y: 1,
        contents: "Group-1"
    }, {
        x: 1.5,
        y: 1,
        contents: "Group-2"
    }]