在QtWeb 3.8.5上运行ChartJs 2.7时出现错误。
尝试绘制基本图表(ChartJS示例)失败。
我正在用QtWeb进行测试,因为它是wkhtmltopdf在后端使用的功能。使用wkhtmlpdf 0.12.4时,相同的代码将失败。
HTML代码:
<div style="width:400px;height:400px;">
<canvas id="myChart" style="width:400px;height:400px;"></canvas>
</div>
<script>
var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ["Red", "Blue", "Yellow"],
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)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1),
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
</script>
JavaScript错误:
Chart.bundle.js:15262TypeError: 'undefined' is not a function (evaluating 'onScroll.bind(expand, 'expand')')
图表无法绘制。 有什么想法吗?