提问人:Lee.Do.Do 提问时间:10/16/2023 最后编辑:Lee.Do.Do 更新时间:10/16/2023 访问量:37
ChartJs (v 2.7.3) - 未应用边框半径
ChartJs (v 2.7.3) - border radius didn't applied
问:
我想要图表中的边框半径。 但所有方法都不起作用。我该如何应用它?
我尝试了插件,option:elements。但是所有方法都不起作用
我无法更改图表 js 的版本,因为我的项目是由 2.7.3 版制作的。
var hwajuStockinChart = new Chart(hwajuStockin, {
type: 'horizontalBar',
data: {
labels: dataHwaju.stockin.name,
datasets: [
{
label:"완료 입고량",
backgroundColor: [
"rgba(64, 0, 255, 0.5)",
"rgba(0, 255, 255, 0.5)",
"rgba(4, 180, 4, 0.5)",
"rgba(132, 132, 132, 0.5)",
"rgba(223, 1, 1, 0.5)",
"rgba(255, 128, 0, 0.5)"
],
data: dataHwaju.stockin.qty_per
}, {
label:"남은 입고량",
data: dataHwaju.stockin.req_per
}
]
},
options: {
responsive:false,
legend: {
display: true,
labels: {
fontSize: 0,
padding: 0,
boxWidth: 0,
},
},
title: {
display: false
},
scales:{
xAxes:[{
stacked:true
}],
yAxes:[{
stacked:true,
gridLines: {
display: false,
drawBorder: false,
},
}]
}
}
});
我在选项中添加以下代码:{}
elements: {
rectangle: {
borderRadius: 10
}
}
但它没有用。
答: 暂无答案
评论