标签:
var cjhq_chart ; var option = { title: { text: ‘均价(元/平米)‘ }, tooltip : { trigger: ‘axis‘ }, legend: { data: legendData//数组 }, grid: { left: ‘3%‘, right: ‘4%‘, bottom: ‘3%‘, containLabel: true }, xAxis : [ { type: ‘category‘, boundaryGap : false, data : xAxisData//数组 } ], yAxis : [ { type : ‘value‘ } ], series : ySeries//数组 }; cjhq_chart = echarts.init(document.getElementById(‘Chart‘)); cjhq_chart.setOption(option, true);
标签:
原文地址:http://www.cnblogs.com/itechpark/p/yinzei_js_echarts.html