gpt4 book ai didi

jquery - 使用 Chart.js 时 $(...).getContext ("2d") 不是函数

转载 作者:太空宇宙 更新时间:2023-11-03 21:56:40 26 4
gpt4 key购买 nike

我正在使用nodejs和jade View 引擎。我想使用chart.js 在我的页面中加载图表,我添加了jquery 和chart.js 库,但它仍然按标题给出错误$(...).getContext("2d") is not a function。请帮我解答这个问题,谢谢。

$(document).ready(function(){
var ctx = $("#myChart").getContext("2d");
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
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)',
'rgba(255, 159, 64, 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)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
});

最佳答案

这个问题已经得到解答,但是,如果有人偶然发现这篇文章,为了让 getContext 函数正常工作,请确保您在 <canvas id='myChart'> </canvas> 内渲染图表。元素。

关于jquery - 使用 Chart.js 时 $(...).getContext ("2d") 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38979768/

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