我使用Flot创建了一个甜甜圈饼图。
有没有办法自定义“传奇”?我想将GFavorite,G2和G3字体变为粗体。我补充说:
pie: {
innerRadius: 0.5,
show: true,
formatter: function(label, series){
return '<div style="font-style:bold">';
}
}
但它没有做任何事情。
答案 0 :(得分:3)
你想用这个:
labelFormatter: function(label, series) {
// series is the series object for the label
return '<span style="font-style:bold">' + label + '</span>';
}
答案 1 :(得分:3)
CSS不正确......
font-weight
是使用粗体而不是font-style的正确标记。