Chartjs:是否可以在圆环图React中为数据标签文本添加边框

iq3niunx  于 2022-11-06  发布在  Chart.js
关注(0)|答案(1)|浏览(164)

是否可以为文本添加边框颜色。

https://codesandbox.io/s/react-chartjs-2-doughnut-pie-chart-forked-j3dhsn?file=/src/index.js

wooyq4lh

wooyq4lh1#

代码中唯一缺少的thin是datalabels.borderWidth

datalabels: {
  color: "#fff",
  borderColor: "#000",
  borderWidth: 2, // <- add this 
  font: {
    size: 14,
    weight: "bold"
  }
}

请查看修改后的CodeSanbox以查看结果。

相关问题