我想在我的圆环图中设置 bold text (使用chart.js)

下面的代码运行良好,但是-fontStyle和fontWeight-这些根本不起作用 .

如何将中心文字更改为粗体?

let ctx = chart.chart.ctx;

ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.font = '3vh Montserrat';
ctx.fontStyle = 'bold';  // not working!
ctx.fontWeight = '900';  // not working!

http://jsfiddle.net/wh5kcqzy/3/