今天5分钟快速上手Echarts.看官方文档就行。Apache ECharts
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <script src="lib/echarts.min%20(2).js"></script> <body> <!--准备一个盒子--> <div style="width: 600px;height: 400px"> </div> </body> <script> var mCharts= echarts.init(document.querySelector("div")); // 指定图表的配置项和数据 var option = { title: { text: 'ECharts 入门示例' }, tooltip: {}, legend: { data: ['销量'] }, xAxis: { data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'] }, yAxis: {}, series: [ { name: '销量', type: 'bar', data: [5, 20, 36, 10, 10, 20] } ] }; // 使用刚指定的配置项和数据显示图表。 mCharts.setOption(option); </script> </html>
标签:20,option,快速,mCharts,var,data,Echarts From: https://www.cnblogs.com/daitu66/p/17689874.html