You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
p9ew5o3q7/app/static/js/insideAndoutside_ConfirmRel...

75 lines
1.6 KiB

ec=echarts.init(document.getElementById("insideAndoutside_ConfirmRelative"))
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:"/insideAndoutside_ConfirmRelative",
data: null,
dataType : "json",
async: false,
error: function(request) {
alert("发送请求失败11");
},
success: function(result) {
// date,outnum,innum
for(i=0; i<result.date.length; ++i) {
option1.series[1].data.push(result.outnum[i])
option1.series[0].data.push(result.innum[i])
option1.xAxis.data.push(result.date[i])
}
console.info(result)
}
});
ec.setOption(option1)