gpt4 book ai didi

chart.js - ChartJS V3 雷达图标签字体大小

转载 作者:行者123 更新时间:2023-12-05 00:44:12 24 4
gpt4 key购买 nike

var myChart = new Chart(ctx, {
type: 'radar',
data: chartData,
options: {
scale: {
min: 0,
max: 5,
stepSize: 1
},
scales: {
r: {
pointLabels: {
fontSize: 100
}
}
},
elements: {
line: {
borderWidth: 3
}
}
}
})

我正在尝试更改雷达图上点标签的字体大小。看来这是您应该这样做的方式,但它对我不起作用。非常感谢任何帮助。

最佳答案

在 V3 中,他们引入了一个 font 对象,而不是单独的属性,因此您必须像这样放置它:

r: {
pointLabels: {
font: {
size: 100
}
}
}

例子:

var options = {
type: 'radar',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderWidth: 1
}]
},
options: {
scales: {
r: {
pointLabels: {
font: {
size: 100
}
}
}
}
}
}

var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.2.0/chart.js"></script>
</body>

字体文档:https://www.chartjs.org/docs/latest/general/fonts.html

关于chart.js - ChartJS V3 雷达图标签字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67643949/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com