echarts官方文档的快速上手案例 报错TypeError: Cannot read properties of undefined (reading 'get') ECharts // 基于准备好的dom,初始化echarts实例 var myChart = echarts.init(document.getElementById('main')); // 指定图表的配置项和数据 var option = { title: { text: 'ECharts 入门示例' }, tooltip: {}, legend: { data: ['销量'] }, xAxis: { data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'] }, yAxis: {}, series: [ { name: '销量', type: 'bar', data: [5, 20, 36, 10, 10, 20] } ] }; // 使用刚指定的配置项和数据显示图表。 myChart.setOption(option); echarts.js文件报错 function collectAxesInfo(result, ecModel, api) { var globalTooltipModel = ecModel.getComponent('tooltip'); var globalAxisPointerModel = ecModel.getComponent('axisPointer'); // links can only be set on global. var linksOption = globalAxisPointerModel.get('link', true) || []; var linkGroups = []; // Collect axes info. 发生异常: TypeError: Cannot read properties of undefined (reading 'get') at collectAxesInfo (file:///Y:/Echarts/echarts.js:50056:46) at collect (file:///Y:/Echarts/echarts.js:50046:5) at file:///Y:/Echarts/echarts.js:77276:62 at detectSeriseType (file:///Y:/Echarts/echarts.js:28189:7) at Scheduler.wrapStageHandler (file:///Y:/Echarts/echarts.js:28111:23) at normalizeRegister (file:///Y:/Echarts/echarts.js:32925:34) at Object.registerProcessor (file:///Y:/Echarts/echarts.js:32819:5) at Object.install$m [as install] (file:///Y:/Echarts/echarts.js:77273:15) at use (file:///Y:/Echarts/echarts.js:38285:9) at Object.install$l [as install] (file:///Y:/Echarts/echarts.js:78529:5) 是什么原因?