gpt4 book ai didi

javascript - Canvas.js 圆环图厚度

转载 作者:行者123 更新时间:2023-11-30 16:43:13 25 4
gpt4 key购买 nike

我目前正在使用 Canvas.JS 制作一些圆环图图表,但我找不到合适的方法来设置图表的厚度。

文档非常广泛(您可以去 over here 查看它们)但我似乎无法为我的“问题”找到合适的解决方案。

现在我正在使用以下代码生成图表:

CanvasJS.addColorSet('circColors', [
'#7583B2',
'#E6866A'
]);

var circChartOptions = {
animationEnabled: true,
colorSet: 'circColors',
data: [
{
labelFontColor: '#9EA4AC',
labelFontFamily: 'Lato, sans-serif',
labelFontWeight: 'normal',
indexLabelLineColor: 'white',
type: 'doughnut',
startAngle:-90,
toolTipContent: '{label}: {y} - <strong>#percent%</strong>',
indexLabel: '{label} #percent%',
dataPoints: [
{ y: 37.47, label: 'Mobile' },
{ y: 62.53, label: 'Desktop' }
]
}
]
};

$('#circChart').CanvasJSChart(circChartOptions);

Canvas.JS 是否提供了一种控制图表厚度的方法?任何帮助将不胜感激。

谢谢!

最佳答案

data: [
{
labelFontColor: '#9EA4AC',
labelFontFamily: 'Lato, sans-serif',
labelFontWeight: 'normal',
indexLabelLineColor: 'white',
type: 'doughnut',
innerRadius: "85%",
startAngle:-90,
toolTipContent: '{label}: {y} - <strong>#percent%</strong>',
indexLabel: '{label} #percent%',
dataPoints: [
{ y: 37.47, label: 'Mobile' },
{ y: 62.53, label: 'Desktop' }
]
}

使用innerRadius控制刻度

关于javascript - Canvas.js 圆环图厚度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31622435/

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