淺談vue單頁面中有多個(gè)echarts圖表時(shí)的公用代碼寫法
html中:
<div /> <div /> <div /> <div /> <div /> <div /> <div />
數(shù)據(jù)處理就不用提了。嗯,直接畫圖:
// 畫 折線圖 drawLine() { // 數(shù)據(jù)處理的方法 this.dealEchartsData() var myChartsArr = [] for (var i = 1; i <= 7; i++) { this.myCharts = this.$echarts.init(document.getElementsByClassName(’charts’ + i)[0]) myChartsArr.push(this.myCharts) var option = this.commonOption(this.myCharts, this.adnormalTypeSummery[i - 1], this.destArrAll[i - 1]) // 為echarts對(duì)象加載數(shù)據(jù) true 防止echarts數(shù)據(jù)疊加!!! this.myCharts.setOption(option, true) } window.onresize = function() { // 自適應(yīng) for (var j = 0; j < myChartsArr.length; j++) { if (myChartsArr[j].resize()) { myChartsArr[j].resize() } } } },
公用部分:
// option 主體 commonOption(myCharts, titleText, destData) { var option = { title: { text: titleText }, tooltip: { trigger: ’axis’, confine: true }, legend: { type: ’scroll’, width: ’90%’, top: ’13%’ }, grid: { left: ’3%’, right: ’4%’, bottom: ’2%’, containLabel: true }, toolbox: { right: ’20’, feature: { saveAsImage: {} } }, xAxis: { type: ’category’, boundaryGap: false, data: this.monthName }, yAxis: { type: ’value’ }, series: destData } return option }
離開該頁面時(shí)候摧毀:
destroyed() { if (this.myCharts) { this.myCharts.clear() this.myCharts.dispose() window.onresize = null }
補(bǔ)充知識(shí):Vue + Echarts 圖表展示 及 動(dòng)態(tài)渲染
準(zhǔn)備工作
安裝echarts依賴
npm install echarts --save-dev
引入
(main.js)import echarts from ’echarts’Vue.prototype.$echarts = echarts;
開始擼代碼
<template> <div class='peopleWrap'> <h3> <i class='el-icon-position'></i> 出入人員總數(shù){{peopleSumTotal}} </h3> <div style='width: 180px;height: 270px'></div> </div></template><script>export default {// 接受父組件傳來的參數(shù)【父?jìng)髯觩rops】 props: ['peopleSumTotal'], data() { return { peopleSumTotalArr: [] }; }, watch: { // 監(jiān)聽參數(shù)變化 peopleSumTotal: { handler(newVal, oldVal) { if (newVal != 0) { console.log(newVal); this.peopleSum(newVal); } } } }, methods: { peopleSum(newVal) { // 引入 echarts var echarts = require('echarts'); let peopleSum = echarts.init(document.getElementById('peopleSum')); //echsrts點(diǎn)擊事件 peopleSum.on('click', function(param) { console.log(param); console.log(param.data.name); console.log(param.data.value); console.log(param.data.userDefined); //$emit的第一個(gè)為傳的參的名字,第二個(gè)為傳的值 【子傳父 this.$emit】 _this.$emit('peopleSumtoparent', param.data); });//接受動(dòng)態(tài)數(shù)據(jù)時(shí)需要在 this.$nextTick(()=>{})展示 this.$nextTick(() => { let obj = {}; obj.value = newVal; obj.name = newVal; this.peopleSumTotalArr.push(obj); let option = { legend: { orient: 'vertical', left: 10, data: [''] }, series: [ { type: 'pie', radius: ['50%', '70%'], avoidLabelOverlap: false, itemStyle: { // 普通樣式。 normal: { // 點(diǎn)的顏色。 color: '#6998f7' }, // 高亮樣式。 emphasis: { // 高亮?xí)r點(diǎn)的顏色。 color: '#6998f7' } }, label: { normal: { show: true, position: 'center', textStyle: { fontSize: '20' } } }, labelLine: { normal: { show: false } }, data: this.peopleSumTotalArr //動(dòng)態(tài)圖表展示 } ] }; console.log('option', option); peopleSum.setOption(option); }); } }, mounted() {}};</script><style lang='scss' scoped></style>
以上這篇淺談vue單頁面中有多個(gè)echarts圖表時(shí)的公用代碼寫法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. Jsp中request的3個(gè)基礎(chǔ)實(shí)踐2. jsp EL表達(dá)式詳解3. XML入門的常見問題(一)4. Django ORM實(shí)現(xiàn)按天獲取數(shù)據(jù)去重求和例子5. IntelliJ IDEA 統(tǒng)一設(shè)置編碼為utf-8編碼的實(shí)現(xiàn)6. Python多線程操作之互斥鎖、遞歸鎖、信號(hào)量、事件實(shí)例詳解7. idea設(shè)置自動(dòng)導(dǎo)入依賴的方法步驟8. idea給項(xiàng)目打war包的方法步驟9. Django程序的優(yōu)化技巧10. 怎樣才能用js生成xmldom對(duì)象,并且在firefox中也實(shí)現(xiàn)xml數(shù)據(jù)島?
