Flot - 甜甜圈饼图 - 自定义图例

时间:2014-04-05 03:54:27

标签: charts flot legend pie-chart

我使用Flot创建了一个甜甜圈饼图。

example of my chart

有没有办法自定义“传奇”?我想将GFavorite,G2和G3字体变为粗体。我补充说:

pie: { 
    innerRadius: 0.5, 
    show: true, 
    formatter: function(label, series){ 
        return '<div style="font-style:bold">'; 
    }
}

但它没有做任何事情。

2 个答案:

答案 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的正确标记。

请参阅:http://www.w3.org/wiki/CSS/Properties/font-weight