如何在Flot中为图例添加标题

时间:2015-01-06 03:01:39

标签: flot

我想为Flot中的图例框添加标题?例如,如果我的图例显示不同的产品,我希望图例框上方的标题说“产品”。

1 个答案:

答案 0 :(得分:1)

有些hacky,但你可以这样做:

var $legend = $('#chart > div.legend'); // replace #chart with the id from your div
var $legendTitle = $legend.find('div').first();
$legendTitle.html('Products').height($legendTitle.height() + 15);
$legend.find('table').first().css('top', $legendTitle.position().top + 15);