最近使用echarts來開發某系統的圖表功能,先申明我之前用的ext.js,ext.js對圖表有本身的一套組件,用起來也很方便。可是因爲ext.js過於臃腫,公司決定使用echarts來開發圖表功能。當咱們使用的時候才悲催的發現,echart繪製以後,不能隨着容器div的大小而變化。而咱們所開發的圖表是須要有放大縮小功能,因而在網上找了好久,也沒有找到合適的答案,大部分是經過監聽窗口大小改變事件來設置,然而並非咱們所須要的。因而本身用了一點點時間,瞭解了爲什麼echarts不能從新渲染,原來是在容器div裏面設置了標記,每一個div容器只能被渲染一次。知道緣由以後,就容易了,就寫了一個簡單的demo。但願能夠幫到有須要的同窗。
html代碼:
`html
<head> <title>vue+chart</title> <script src="echarts.min.js"></script> <script src="vue.js"></script> <style> .button{ float:left; width:150px; height:60px; color:#CC3333; border:2px solid #CC3333; background-color:#3399CC; line-height:60px; text-align:center; font-size:36px; } .button:hover{ float:left; width:150px; height:60px; color:#3399CC; border:2px solid #3399CC; background-color:#CC3333; line-height:60px; text-align:center; font-size:36px; } .chart{ margin:0 auto; } #but{ width:310px; margin:0 auto; } </style> </head> <body> <div id="app"> <div id="panel"> <div class="chart" id="main" style="width:300px;height:300px"></div> </div> <div id="but"> <div id="add" class="button" @click="add">放大</div> <div id="reduce" class="button" @click="reduce">縮小</div> </div> </div> </body>
</html>`vue
js代碼:git
var vm=new Vue({ el:"#app", data:{ size:300, }, computed: { style: function () { return "width:"+this.width+"px;height:"+this.height+"px" } }, methods:{ add:function(){ if(this.size<900){ this.size=this.size+50;} else{ this.size=900; } }, reduce:function(){ if(this.size>300){ this.size=this.size-50;} else{ this.size=300; } } } }) var myChart = echarts.init(document.getElementById('main')); var option = { title: { text: 'ECharts 入門' }, tooltip: {}, legend: { data:['銷量'] }, xAxis: { data: ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: [5, 20, 36, 10, 10, 20] }] }; myChart.setOption(option); // 基於準備好的dom,初始化echarts實例 vm.$watch("size",function(newVal, oldVal){ var dom=document.getElementById('panel') dom.innerHTML='<div class="chart" id="main" style="width:'+newVal+'px;height:'+newVal+'px"></div>'; var myChart = echarts.init(document.getElementById('main')); myChart.setOption(option); })
項目github地址https://github.com/qiuquanwu/...github
以上方法被棄用,建議使用官方riseze()方法app