ChartJs:图表未显示在VF页面中

b4wnujal  于 2022-11-06  发布在  Chart.js
关注(0)|答案(1)|浏览(160)

我正在使用Chart.Js绘制一个散点图在VF页面,但在预览,图表没有显示。没有得到任何错误,但图表没有显示。下面是我的VF页面代码。感谢您的帮助

<apex:page showHeader="true" sidebar="false" id="page" docType="html-5.0">
<html>
<head>
    <meta charset="utf-8"/>
    <title>Chart.js demo</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/0.2.0/Chart.min.js" type="text/javascript"></script>
</head>
<body>

    <h1>Chart.js Sample</h1>

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

        var ctx= document.getElementById("myChart").getContext("2d");
    new Chart(ctx, {
        type: 'scatter',
        data: {
            datasets: [{
                label: 'Scatter Dataset',
                backgroundColor: 'green',
                data: [{
                    x: -10,
                    y: 0
                }, {
                    x: 0,
                    y: 10
                }, {
                    x: 10,
                    y: 5
                }]
            }]
        },
        options: {
            scales: {
                x: {
                    type: 'linear',
                    position: 'bottom'
                }
            }
        }
    });
    </script>
</body>       
</html>
</apex:page>
wxclj1h5

wxclj1h51#

您正在使用一个非常旧的chart.js版本(事实上,这是第一个发布的版本)。
您可以通过替换以下内容来解决此问题:

<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/0.2.0/Chart.min.js" type="text/javascript"></script>

<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>

也可以找到固定版本,例如here
working codepen

相关问题