我想为Flot中的图例框添加标题?例如,如果我的图例显示不同的产品,我希望图例框上方的标题说“产品”。
答案 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);