您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Vue+Echart柱狀圖怎么實(shí)現(xiàn)疫情數(shù)據(jù)統(tǒng)計(jì)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Vue+Echart柱狀圖怎么實(shí)現(xiàn)疫情數(shù)據(jù)統(tǒng)計(jì)”吧!
1.安裝echarts依賴包
npm install echarts --save
2.在plugins目錄下創(chuàng)建echarts.js文件并在里面引入echarts依賴包
import Vue from 'vue' import echarts from 'echarts'//這個(gè)需要注意一下有可能會(huì)報(bào)錯(cuò),可以用下面方法 Vue.prototype.$echarts = echarts
用以上通用的方法,可能會(huì)出現(xiàn)以下報(bào)錯(cuò),“export ‘default‘ (imported as ‘echarts‘) was not found in ‘echarts‘
是因?yàn)镋charts 5.x 不再支持上面的引入方式,詳情可以查看Echarts官網(wǎng)
總而言之就是改為以下:
import Vue from 'vue' import * as echarts from 'echarts' //區(qū)別在這里 Vue.prototype.$echarts = echarts
3.在nuxt.config.js配置文件中引入我們剛剛創(chuàng)建的echart.js
plugins: ['~plugins/echarts'] //我只寫了要加這個(gè),不代表這里只有這個(gè) //還可以用'@/plugins/echarts'形式,都差不多的
(這里是一步步寫下來的,要是不想看可以直接跳到最后有最終代碼哦)
在項(xiàng)目中的代碼表示:
<template> <div id="echarts"> <div id="myChart"></div> </div> </template> <script type="text/javascript"> export default { name: "Echarts", data() { return {}; }, methods: { echartsInit() { //定義一個(gè)創(chuàng)建圖表的方法 let myChart = this.$echarts.init(document.getElementById("myChart")); myChart.setOption({ title: { text: "echarts的柱狀圖來實(shí)現(xiàn)疫情統(tǒng)計(jì)", textAlign: "auto", left: 'center' }, tooltip: {}, // 省份(橫坐標(biāo)) xAxis: { data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] //data: this.areaName, //這是最后的數(shù)據(jù)表示開始測(cè)試可以先不用這個(gè) type: "category", axisLabel: { rotate: -45, // 旋轉(zhuǎn)30度,不然橫坐標(biāo)顯示不完全 show: true, //這行代碼控制著坐標(biāo)軸x軸的文字是否顯示 }, }, yAxis: {}, // 確診數(shù)量 series: [ { name: "總確診數(shù)量", type: "bar", //data: this.areaConfirm,//這是最后的數(shù)據(jù)表示開始測(cè)試可以先不用這個(gè) data: [120, 200, 150, 80, 70, 110, 130], }, ], }); }, } //mounted在模板渲染成html后調(diào)用,通常是初始化頁(yè)面完成后 //再對(duì)html的dom節(jié)點(diǎn)進(jìn)行一些需要的操作 mounted() { this.echartsInit(); }, } </script> <style scoped> #myChart { width: 100%; height: 300px; margin-left: auto; margin-right: auto; } </style>
我用的騰訊提供的接口地址:https://view.inews.qq.com/g2/getOnsInfo?name=disease_h6點(diǎn)擊查看
我們可以看到一大堆數(shù)據(jù),那么我們要對(duì)數(shù)據(jù)進(jìn)行清理和拆分才能獲取我們所需要的數(shù)據(jù)
1.首先我們要解決跨域問題
npm install axios @nuxtjs/axios @nuxtjs/proxy
2.安裝完成后在 nuxt.config.js 文件里面添加以下配置:
module.exports = { //我顯示了要增加的部分,不是全部哦 modules: ["@nuxtjs/axios"], axios: { proxy: true }, proxy: { '/api/': { target: 'https://view.inews.qq.com',//這個(gè)網(wǎng)站是開源的可以請(qǐng)求到數(shù)據(jù)的 pathRewrite: { '^/api/': '/', changeOrigin: true } } }, }
3.對(duì)接口數(shù)據(jù)進(jìn)行處理
getData() { this.$axios.get(`/api/g2/getOnsInfo?name=disease_h6`).then(({ data }) => { //console.log(JSON.parse(data.data.replace('\\"', "'"))); this.area = JSON.parse( data.data.replace('\\"', "'") ).areaTree[0].children; // 地區(qū)名 this.areaName = this.area.map((o) => { return o.name; }); // 總確診人數(shù) this.areaConfirm = this.area.map((o) => { return o.total.confirm; }); console.log(this.areaConfirm); // 目前確診人數(shù) hh 好像最后我沒用,如果有需要可以參考一下 this.areaNowConfirm = this.area.map((o) => { return o.total.nowConfirm; }); this.echartsInit(); }); },
處理完的數(shù)據(jù)可以清晰的看出: 要什么取什么就行了
嚯嚯,終于完了,貼上我的代碼
<template> <div id="echarts"> <div id="myChart"></div> </div> </template> <script type="text/javascript"> export default { name: "Echarts", data() { return { area: [], areaName: [], areaConfirm: [], areaNowConfirm: [], }; }, methods: { getData() { this.$axios.get(`/api/g2/getOnsInfo?name=disease_h6`).then(({ data }) => { console.log(JSON.parse(data.data.replace('\\"', "'"))); this.area = JSON.parse( data.data.replace('\\"', "'") ).areaTree[0].children; // 地區(qū)名 this.areaName = this.area.map((o) => { return o.name; }); // 總確診人數(shù) this.areaConfirm = this.area.map((o) => { return o.total.confirm; }); console.log(this.areaConfirm); // 目前確診人數(shù) this.areaNowConfirm = this.area.map((o) => { return o.total.nowConfirm; }); this.echartsInit(); }); }, echartsInit() { let myChart = this.$echarts.init(document.getElementById("myChart")); myChart.setOption({ title: { text: "echarts的柱狀圖來實(shí)現(xiàn)疫情統(tǒng)計(jì)", textAlign: "auto", left: 'center' }, tooltip: {}, // 省份 xAxis: { data: this.areaName, type: "category", axisLabel: { rotate: -45, // 旋轉(zhuǎn)30度 show: true, //這行代碼控制著坐標(biāo)軸x軸的文字是否顯示 }, }, yAxis: {}, // 確診數(shù)量 series: [ { name: "總確診數(shù)量", type: "bar", data: this.areaConfirm, }, ], }); }, }, mounted() { this.getData(); this.echartsInit(); }, }; </script> <style scoped> #myChart { width: 100%; height: 300px; margin-left: auto; margin-right: auto; } </style>
到此,相信大家對(duì)“Vue+Echart柱狀圖怎么實(shí)現(xiàn)疫情數(shù)據(jù)統(tǒng)計(jì)”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。