最近項目裏面遇到一些圖表須要用echarts來作。而我以前只用過一次echarts,也只是作了一個簡單的餅狀圖,並無涉及到不少的配置。可是如今這個項目,這些圖表須要本身配置不少東西。像什麼多餘的網格線不顯示啊,每一個柱子的不同的顏色漸變啊,這些都還好。問題在一個頁面有多個柱狀圖,而這些柱狀圖除了數據和顏色不同其餘的都一毛同樣。最後模仿老大作的整合多個option本身作了一個demo,本身寫了詳細的註釋。效果圖以下:html
html代碼以下:前端
1 <!-- 爲ECharts準備一個具有大小(寬高)的Dom --> 2 <div id="chart1" style="width: 300px;height:300px;"></div> 3 <div id="chart2" style="width: 300px;height:300px;"></div> 4 <div id="chart3" style="width: 300px;height:300px;"></div> 5 <div id="chart4" style="width: 300px;height:300px;"></div> 6 <script src="aa.js"></script> 7 <script> 8 new aa(); 9 </script>
js代碼以下:數組
1 function aa(){ 2 //初始化加載圖表 3 this.initchart(); 4 } 5 aa.prototype = { 6 initchart:function(){ 7 //定義每一個圖表的顏色數組,我這裏是漸變色的柱子,有四個 8 var color = [ "#ad3f3b", "#df8380","#89a54e","#b7c894","#3c8d91","#78b1b5","#db853c","#f2b582"]; 9 var dex = 0; 10 //遍歷裝圖表的盒子 11 for(var i = 1; i <= 4; i++){ 12 //把echarts初始化圖表的方法提出來經過拼接id的方法找到每一個div的id 13 var chart = echarts.init(document.getElementById('chart'+ i)); 14 //把option作成一個變量,經過傳參來初始化每一個圖 new echarts.graphic.LinearGradient是eachsrts柱子漸變的方法 15 //傳遞的參數有圖表的名字,漸變的顏色,和所對應的單位 16 var option = this.optionFun("銷售額", new echarts.graphic.LinearGradient(0,0,0,1,[ 17 {offset:0,color: color[dex++]}, 18 {offset:1,color:color[dex++]} 19 ]), "單位"); 20 //常規操做 爲echarts對象加載數據 21 chart.setOption(option); 22 } 23 }, 24 //而後接下來都是一些echarts的一些常規配置 25 optionFun:function(title,color,unit){ 26 var option = { 27 title:{ 28 text:title, 29 left:'center', 30 textStyle:{ 31 fontStyle:'normal', 32 fontSizeL:'14px', 33 }, 34 top:'top', 35 }, 36 xAxis:{ 37 type:'category', 38 data:['目標','完成'], 39 axisLine:{ 40 lineStyle:{ 41 color:'#999', 42 }, 43 }, 44 axisLabel:{ 45 textStyle:{ 46 color:'#333', 47 }, 48 }, 49 }, 50 yAxis:{ 51 type:'value', 52 name:unit, 53 nameLocation:'start', 54 nameTextStyle:{ 55 color:'#333', 56 }, 57 axisLine:{ 58 lineStyle:{ 59 color:'#999', 60 } 61 }, 62 axisLabel:{ 63 textStyle:{ 64 color:'#333', 65 }, 66 }, 67 splitLine:{ 68 show:false, 69 }, 70 }, 71 series:[{ 72 data:data,//後臺傳過來的數據[98,57] 73 type:'bar', 74 barWidth:20, 75 itemStyle:{ 76 normal:{ 77 color:color, 78 barBorderRadius:2, 79 shadowColor:'rgba(4,13,31,0.5)', 80 shadowBlur:5, 81 shadowOffsetX:2, 82 shadowOffsetY:0, 83 label:{ 84 show:true, 85 position:'top', 86 textStyle:{ 87 color:'#333', 88 }, 89 }, 90 } 91 } 92 }], 93 }; 94 //將option返回 95 return option; 96 } 97 }
其實後來發現,echarts一些常規的配置在官方給的文檔裏面都有,就是本身不太熟悉。最主要的仍是本身掌握的東西太少了,不懂的融會貫通。也更加清楚了js對於一個前端來講是多麼的重要。而我本身也在不斷的努力中,很感謝我老大,不少不懂的地方問他,他都會幫我解決。繼續加油吧。echarts
注:這個配置目前不支持圖表數量超過所定義的顏色數量後顏色循環,或許之後多研究下能夠實現,可是目前是不支持的。this