echart占位代码

前言:开发前页面排版会有占位,后面再详细补充内容,占位代码

function tbarshow3(){
	var ic3con = echarts.init($("#ic3con")[0]);
	option = {
	    xAxis: {type: 'category',data: ['Mon', 'Tue']},
	    yAxis: {type: 'value'},
	    series: [{data: [666, 888],type: 'line'}]
	};
	ic3con.setOption(option, true);
}
window.onresize = function(){
	    ic3con.resize();
	}
data : ['成都', '绵阳', '自贡', '攀枝花', '泸州', '德阳', '广元','遂宁','内江','乐山','资阳','宜宾','南充','达州','雅安','广安','巴中','眉山','阿坝','甘孜','凉山'],
data:[99, 88, 99, 85, 80, 90, 95,99, 88, 99, 85, 80, 90, 95,99, 88, 99, 85, 80, 90, 95],

 

你可能感兴趣的:(echarts)