我正在尝试更改极坐标图中标签的背景颜色。我想将背景颜色更改为黑色。
我正在使用全局变量来更改字体颜色:
Chart.defaults.global.defaultFontColor = 'rgba(255, 255, 255, 0.7)';
这是显示的图表。
new Chart(ctx, {
data: data = {
datasets: [{
data: [25, 10, 20],
backgroundColor: [
'yellow',
'blue',
'red',
],
borderColor: [
'yellow',
'blue',
'red',
],
}],
labels: [
'Yellow',
'Blue',
'Red',
]
},
type: 'polarArea',
});
感谢您的关注!