Question

I created a Donut Pie chart using Flot.

example of my chart

Is there a way to customize "Legend"? I want to GFavorite, G2 and G3 to font to be bold. I added:

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

But it does not do anything.

Was it helpful?

Solution

You want to use this:

labelFormatter: function(label, series) {
    // series is the series object for the label
    return '<span style="font-style:bold">' + label + '</span>';
}

OTHER TIPS

The CSS is incorrect...

font-weight 

is the proper tag for using bold, not font-style.

see: http://www.w3.org/wiki/CSS/Properties/font-weight

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top