Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WkhtmlToPDF / QtWeb Javascript Error #5671

Closed
syntaxc opened this issue Aug 8, 2018 · 1 comment
Closed

WkhtmlToPDF / QtWeb Javascript Error #5671

syntaxc opened this issue Aug 8, 2018 · 1 comment

Comments

@syntaxc
Copy link

syntaxc commented Aug 8, 2018

I am experiencing an error with ChartJS 2.7 on QtWeb 3.8.5 (wkhtmltopdf 0.12.4)

Javascript error:
Chart.bundle.js:15262TypeError: 'undefined' is not a function (evaluating 'onScroll.bind(expand, 'expand')')

Html code:

<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", "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
                }
            }]
        }
    }
});
</script>

Any ideas how to fix this?

@syntaxc syntaxc changed the title WkhtmlPDF / QtWeb Javascript Error WkhtmlToPDF / QtWeb Javascript Error Aug 8, 2018
@benmccann
Copy link
Contributor

Duplicate of #4767

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants