gpt4 book ai didi

javascript - Chart js : I'm getting the labels crossed on my pieChart and doughnut. 无法获取图表本身

转载 作者:行者123 更新时间:2023-12-03 00:26:01 28 4
gpt4 key购买 nike

我正在尝试使用 vue js 实现图表。我得到的图表本身没有图表,但标签交叉。我不知道出了什么问题。

enter image description here

这应该是我的饼图。正如您所看到的,我交叉了标签,这意味着删除所有标记的数据,因此给了我一个空图表。这是我的代码。

export const productChartData = {

type: 'pie',
data: {
labels: ['Purchased', 'Return', 'Cancelled', 'Shipped', 'Returned'],
datasets:[
{
data: ['22, 33, 12, 18, 19'],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)'
],
borderWidth: 1
}
]
},
options:{
maintainAspectRatio:false,
title:{
display:true,
fontSize:18,
text: "Products"
}
}

}

export default productChartData;

在我的 .vue 文件中,

methods: {
createChart(chartId, chartData){
const canvas = document.getElementById(chartId);
const ctx = canvas.getContext('2d');
const myChart = new Chart(ctx, {
type: chartData.type,
data: chartData.data,
options: chartData.options
});
}
}

最佳答案

您的图表渲染代码存在问题:

data: ['22, 33, 12, 18, 19'] 应作为 data: [22, 33, 12, 18, 19] 传递。我已经修改了笔并且它可以工作 -> https://codepen.io/anon/pen/dwKjqM

关于javascript - Chart js : I'm getting the labels crossed on my pieChart and doughnut. 无法获取图表本身,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54088904/

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