ec=echarts.init(document.getElementById("inside_curConAndConfirmed")) var option1 = { tooltip: { trigger: 'axis' }, title:{ subtext:'单位:例', text:"全国 累计确诊/现有确诊 趋势", left: 'left', textStyle:{ color:'black', } }, legend: { left:'right', top:'30', data: ['累计确诊', '现有确诊'] }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, toolbox: { feature: { saveAsImage: {} } }, xAxis: { type: 'category', data: [] }, yAxis: { axisLine: { show: false }, type: 'value' }, series: [{ name:'累积确诊', data: [], type: 'line', smooth: true },{ name:'现有确诊', data: [], type: 'line', smooth: true }] }; $.ajax({ cache: false, type:"GET", url:"/inside_curConAndConfirmed", data: null, dataType : "json", async: false, error: function(request) { alert("发送请求失败!10"); }, success: function(result) { // confirm,curConfirm,date console.info(result) for(i=0;i