今天在学习Echarts练习时,总是在路径的配置上出现错误,作为入门,总结一下,在此分享给大家,希望有用。
ECharts主页: http://echarts.baidu.com/index.html
ECharts-2.2.0下载地址: http://echarts.baidu.com/build/echarts-2.2.0.zip
ECharts官方实例: http://echarts.baidu.com/doc/example.html
ECharts官方API文档: http://echarts.baidu.com/doc/doc.html
1、项目结构
js文件夹: 下载了ECharts之后,解压缩,如解压后的根目录是echarts-2.2.0,则到echarts-2.2.0\doc\example\www路径下,把里面的js文件夹直接复制粘贴到项目的 WebRoot根目录下即可
echarts.jsp:在WebRoot根目录下新建echarts.jsp
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>ECharts-基本线性图及其配置要求</title> </head> <body> <!--Step:1 Prepare a dom for ECharts which (must) has size (width & hight)--> <!--Step:1 为ECharts准备一个具备大小(宽高)的Dom--> <div id="main" style="height:500px;border:1px solid #ccc;padding:10px;"></div> <div id="mainMap" style="width:500px;height:500px;border:1px solid #ccc;padding:10px;"></div> <!--Step:2 Import echarts.js--> <!--Step:2 引入echarts.js--> <script src="js/echarts.js"></script> <script type="text/javascript"> // Step:3 conifg ECharts‘s path, link to echarts.js from current page. // Step:3 为模块加载器配置echarts的路径,从当前页面链接到echarts.js,定义所需图表路径 require.config({ paths: { echarts: ‘./js‘ //echarts.js所在的路径 } }); // Step:4 require echarts and use it in the callback. // Step:4 动态加载echarts然后在回调函数中开始使用,注意保持按需加载结构定义图表路径 require( [ ‘echarts‘, ‘echarts/chart/bar‘, ‘echarts/chart/line‘, ‘echarts/chart/map‘ ], function (ec) {//渲染ECharts图表 ,可单独写出来作为回调函数 //--- 折柱 --- //图表渲染的容器对象 var chartContainer = document.getElementById("main"); //""、‘‘这里均可以 //加载图表 var myChart = ec.init(chartContainer); myChart.setOption({ tooltip : { trigger: ‘axis‘ }, legend: { data:[‘蒸发量‘,‘降水量‘] }, toolbox: { show : true, feature : { mark : {show: true}, dataView : {show: true, readOnly: false}, magicType : {show: true, type: [‘line‘, ‘bar‘]}, restore : {show: true}, saveAsImage : {show: true} } }, calculable : true, xAxis : [ { name : ‘月份‘, type : ‘category‘, data : [‘1月‘,‘2月‘,‘3月‘,‘4月‘,‘5月‘,‘6月‘,‘7月‘,‘8月‘,‘9月‘,‘10月‘,‘11月‘,‘12月‘] } ], yAxis : [ { name : ‘数值‘, type : ‘value‘, splitArea : {show : true} } ], series : [ { name:‘蒸发量‘, type:‘bar‘, data:[2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3] }, { name:‘降水量‘, type:‘bar‘, data:[2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3] } ] }); // --- 地图 --- var myChart2 = ec.init(document.getElementById(‘mainMap‘)); var option = { tooltip : { trigger: ‘item‘, formatter: ‘{b}‘ }, series : [ { name: ‘中国‘, type: ‘map‘, mapType: ‘china‘, selectedMode : ‘multiple‘, itemStyle:{ normal:{label:{show:true}}, emphasis:{label:{show:true}} }, data:[ {name:‘广东‘,selected:true} ] } ] }; myChart2.setOption(option); // 为echarts对象加载数据 } ); </script> </body> </html>
完成以上的步骤后,把项目发布到服务器,在浏览器上访问echarts.jsp(由于本实例还没有跟后台进行交互,只是先做一个前台用法介绍,所以可以把echart.jsp直接修改成echarts.html文件,把它跟js文件夹放在同一级目录下,然后直接用浏览器打开echarts.html),即可看到效果.
时间: 2024-11-12 00:11:01