Chart.js不会显示在页面上,控制台中没有错误

问题描述 投票:0回答:1

我按照Chart.js文档中的说明进行了所有操作,甚至都使用了它们的示例,并且该图表只是不想显示在我的网页上,如标题中所述,控制台中没有错误,并且可以找到两个文件在网络标签上。

这是我的操作方式:

{% block script_or_link %}
<script src="{{url_for('static', filename='js/jquery/dist/jquery.min.js')}}"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.bundle.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.css">
{% endblock %}

{% block body_content %}
    {{ test }}<br>
  <div class="row">

    <canvas id="myChart" width="400" height="400"></canvas>

  </div>

{% endblock %}

<script>
    $(document).ready(function(){
     $('#dashboard').addClass('active');
    });
</script>

<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>

孔页面可以在这里找到:https://pastebin.com/XEwen44V

javascript html chart.js
1个回答
0
投票

只是一个疯狂的猜测,图表是否需要任何种类的API密钥?

© www.soinside.com 2019 - 2024. All rights reserved.