首頁 > 軟體

Vue使用Echarts實現資料視覺化的方法詳解

2022-03-22 13:00:24

一,Echarts

一個基於 JavaScript 的開源視覺化圖表庫

Echarts官網

https://echarts.apache.org/zh/index.html

1.1 獲取ECharts

(1)從 npm 獲取(專案獲取)

npm install echarts --save

(2)從 CDN 獲取

推薦從 jsDelivr 參照 echarts。

(3)從 GitHub 獲取

apache/echarts 專案的 release 頁面可以找到各個版本的連結。點選下載頁面下方 Assets 中的 Source code,解壓後 dist 目錄下的 echarts.js 即為包含完整 ECharts 功能的檔案。

1.2 引入 ECharts

import * as echarts from 'echarts';

// 基於準備好的dom,初始化echarts範例
var myChart = echarts.init(document.getElementById('main'));
// 繪製圖表
myChart.setOption({
  title: {
    text: 'ECharts 入門範例'
  },
  tooltip: {},
  xAxis: {
    data: ['襯衫', '羊毛衫', '雪紡衫', '褲子', '高跟鞋', '襪子']
  },
  yAxis: {},
  series: [
    {
      name: '銷量',
      type: 'bar',
      data: [5, 20, 36, 10, 10, 20]
    }
  ]
});

二,Vue使用Echarts

2.1 Vue環境

ES6、vue、vuex、vue-router、vue-cli、axios、element-ui
Node >= 10

2.2 main.js引入Echarts

// 引入Echarts
import echarts from 'echarts'
Vue.prototype.$echarts = echarts

2.3 使用模板

<template>
  <div id="myChart" :style="{width: '100%', height: '1000px'}" />
</template>
<script>
export default {
  mounted() {
    this.drawLine()
  },
  methods: {
    drawLine() {
      // 基於準備好的dom,初始化echarts範例
      const myChart = this.$echarts.init(document.getElementById('myChart'))
      myChart.setOption({
       //官網範例程式碼,如下圖
      })
    }
  }
}
</script>

2.4範例

2.4.1柱狀圖(折線圖變換)

<template>
  <div id="myChart" :style="{width: '100%', height: '1000px'}" />
</template>
<script>

export default {
  mounted() {
    this.drawLine()
  },
  methods: {
    drawLine() {
      // 基於準備好的dom,初始化echarts範例
      const myChart = this.$echarts.init(document.getElementById('myChart'))
      myChart.setOption({
        title: {
          text: 'Rainfall vs Evaporation',
          subtext: 'Fake Data'
        },
        tooltip: {
          trigger: 'axis'
        },
        legend: {
          data: ['Rainfall', 'Evaporation']
        },
        toolbox: {
          show: true,
          feature: {
            dataView: { show: true, readOnly: false },
            magicType: { show: true, type: ['line', 'bar'] },
            restore: { show: true },
            saveAsImage: { show: true }
          }
        },
        calculable: true,
        xAxis: [
          {
            type: 'category',
            // prettier-ignore
            data: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
          }
        ],
        yAxis: [
          {
            type: 'value'
          }
        ],
        series: [
          {
            name: 'Rainfall',
            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
            ],
            markPoint: {
              data: [
                { type: 'max', name: 'Max' },
                { type: 'min', name: 'Min' }
              ]
            },
            markLine: {
              data: [{ type: 'average', name: 'Avg' }]
            }
          },
          {
            name: 'Evaporation',
            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
            ],
            markPoint: {
              data: [
                { name: 'Max', value: 182.2, xAxis: 7, yAxis: 183 },
                { name: 'Min', value: 2.3, xAxis: 11, yAxis: 3 }
              ]
            },
            markLine: {
              data: [{ type: 'average', name: 'Avg' }]
            }
          }
        ]
      })
    }
  }
}
</script>

2.4.2極座標柱狀圖示籤

<template>
  <div id="myChart" :style="{width: '100%', height: '1000px'}" />
</template>
<script>

export default {
  mounted() {
    this.drawLine()
  },
  methods: {
    drawLine() {
      // 基於準備好的dom,初始化echarts範例
      const myChart = this.$echarts.init(document.getElementById('myChart'))
      myChart.setOption({
        title: [
          {
            text: 'Radial Polar Bar Label Position (middle)'
          }
        ],
        polar: {
          radius: [30, '80%']
        },
        radiusAxis: {
          max: 4
        },
        angleAxis: {
          type: 'category',
          data: ['a', 'b', 'c', 'd'],
          startAngle: 75
        },
        tooltip: {},
        series: {
          type: 'bar',
          data: [2, 1.2, 2.4, 3.6],
          coordinateSystem: 'polar',
          label: {
            show: true,
            position: 'middle',
            formatter: '{b}: {c}'
          }
        },
        backgroundColor: '#fff',
        animation: false
      })
    }
  }
}
</script>

總結

本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!   


IT145.com E-mail:sddin#qq.com