gpt4 book ai didi

javascript - Chart.js - 样式图例 : smaller circles

转载 作者:行者123 更新时间:2023-12-01 16:10:53 26 4
gpt4 key购买 nike

我用 chart.js 创建了一个折线图。我使用以下方法将图例符号形式从矩形更改为圆形:

legend: {
display: true,
labels: {
usePointStyle: true,
},
}

我想改变圆圈的大小。但根据文档,这只有在我也更改字体大小时才有可能:

Label style will match corresponding point style (size is based on fontSize, boxWidth is not used in this case). - https://www.chartjs.org/docs/latest/configuration/legend.html#legend-label-configuration



有谁知道是否有另一种选择来改变大小?还是我必须使用 generateLabels()。

这是 codePen看看那个。

最佳答案

您可以使用 boxWidth 选项来影响图例中点的大小:

options: {
legend: {
labels: {
usePointStyle: true,
boxWidth: 6
}
}
}

阅读 documentation of chartjs about legend

关于javascript - Chart.js - 样式图例 : smaller circles,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54865461/

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