1. ホーム
  2. javascript

未定義のプロパティ 'get' を読み取ることができません。

2022-02-09 12:11:36

echarts Uncaught TypeError: 未定義のプロパティ 'get' を読み取ることができません。

echarts.jsはこのエラーを報告します、ドキュメントをもっともっと読むことを忘れないでください、この場合、それはほとんどです。  オプション  は公式ドキュメントと同じ形式ではありません!

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>ECharts</title>
    <! -- introduce echarts.js -->
    <script src="echarts.min.js"></script>
</head>
<body>
    <! -- Prepare a Dom with size (width and height) for ECharts -->
    <div id="main" style="width: 600px;height:400px;"></div>
    <script type="text/javascript">
        // Initialize the echarts instance based on the prepared dom
        var myChart = echarts.init(document.getElementById('main'));

        // Specify the configuration items and data for the chart
        var option = {
            title: {
                text: 'ECharts Getting Started Example'
            },
            tooltip: {},
            legend: {
                data:['sales']
            },
            xAxis: {
                data: ["Shirts","Cardigans","Chiffon","Pants","Heels","Socks"]
            },
            yAxis: {},
            series: [{
                name: 'sales',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        };

        // Display the chart using the configuration items and data just specified.
        myChart.setOption(option);
    </script>
</body>
</html>