我正在尝试为canvas rect内的文本添加圆形边框。这是我的代码
ctx.save();
ctx.fillStyle = this.threshold[value].color;
ctx.fillRect(0, upperLeftCornerX , length, 15);
ctx.fillStyle = 'white';
ctx.font = '10px Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif';
ctx.fillText(name, 2, upperLeftCornerX + 11);
ctx.border = '1px black';
我已经添加了文本,但是无法应用边框。我该怎么做?谢谢。