gpt4 book ai didi

javascript - Chartist - 将文本添加到圆环图的中心

转载 作者:行者123 更新时间:2023-12-01 16:39:55 29 4
gpt4 key购买 nike

我正在尝试创建一个中间带有文本的圆环图。我需要圆环图如下所示: enter image description here

总值是我传递给创建图表的函数的变量。截至目前,这就是我所拥有的:

enter image description here

上面图表的代码如下:

new Chartist.Pie('.ct-chart', {
series: [{
value: 10,
className: 'pieChart1',
}, {
value: 6,
className: 'pieChart2',
}, {
value: 5,
className: 'pieChart3',
}]
}, {
donut: true,
donutWidth: 20,
width: '138px',
height: '138px',
showLabel: false
});

有人可以帮我在 donut 内创建文字吗?

最佳答案

它有一个插件可以做到这一点! http://gionkunz.github.io/chartist-js/plugins.html#filldonut-plugin

实现这些依赖并将此代码添加到您的对象定义参数中:

plugins: [
Chartist.plugins.fillDonut({
items: [{
content: '<h3>160<span class="small">mph</span></h3>'
}]
})
],

关于javascript - Chartist - 将文本添加到圆环图的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37486847/

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