score:3

Accepted answer

you can set the fontweight param in the style object.

datalabels: {
            style:{
                fontweight: 'normal'
            }
        }

demo:

score:1

you can remove the boldface from the labels by adding <span style="font-weight: normal;"> to the formatter function in datalabels for the "versions" series:

datalabels: {
    formatter: function () {
    // display only if larger than 1
        return this.y > 1 ? '<span style="font-weight: normal;">' + 
            this.point.name + ': ' + this.y + '%</span>' : null;
    }
}

note that the </span> goes at the end of what you're returning from this function.

the resulting chart looks like this:

enter image description here

here's an updated version of the demo fiddle: http://jsfiddle.net/brightmatrix/4tfu584x/

i hope this is helpful for you!


Related Query

More Query from same tag