Detailed use of Echarts in vue2 vue3

Detailed use of Echarts in vue2 vue3

1. Installation

npm install echarts --save

2. Use Echarts in vue2

In the main.js file

// Import echarts
import echarts from 'echarts'
Vue.prototype.$echarts = echarts 

Given a container

<div id="myChart" :style="{width: '300px', height: '300px'}"></div>

echarts initialization should be in the hook function mounted() , which is called after el is replaced by the newly created vm.$el and mounted to the instance.

//Introduce basic template let echarts = require('echarts/lib/echarts')

//Introduce the bar chart component require('echarts/lib/chart/bar')

//Introduce tooltip and title components require('echarts/lib/component/tooltip')
require('echarts/lib/component/title')

export default {
  name: 'hello',
  data() {
    return {
      msg: 'Welcome to Your Vue.js App'
    }
  },
  mounted() {
    this.drawLine();
  },
  methods: {
    drawLine() {
      // Based on the prepared DOM, initialize the echarts instance let myChart = echarts.init(document.getElementById('myChart'))
      // Draw chart title: {
        text: 'Line chart stacking'
    },
    tooltip: {
        trigger: 'axis'
    },
    legend: {
        data: ['email marketing', 'affiliate advertising', 'video advertising', 'direct access', 'search engine']
    },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    toolbox:
        feature:
            saveAsImage: {}
        }
    },
    xAxis:
        type: 'category',
        boundaryGap: false,
        data: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']
    },
    yAxis: {
        type: 'value'
    },
    series: [
        {
            name: 'Email Marketing',
            type: 'line',
            stack: 'total amount',
            data: [120, 132, 101, 134, 90, 230, 210]
        },
        {
            name: 'Alliance Advertising',
            type: 'line',
            stack: 'total amount',
            data: [220, 182, 191, 234, 290, 330, 310]
        },
        {
            name: 'Video Ad',
            type: 'line',
            stack: 'total amount',
            data: [150, 232, 201, 154, 190, 330, 410]
        },
        {
            name: 'Direct access',
            type: 'line',
            stack: 'total amount',
            data: [320, 332, 301, 334, 390, 330, 320]
        },
        {
            name: 'Search Engine',
            type: 'line',
            stack: 'total amount',
            data: [820, 932, 901, 934, 1290, 1330, 1320]
        }
    ]
    }
  }
}

3. Use Echarts in vue3

Because there is no this in setup , and it has not been rendered yet, you can use provide/inject to introduce echart in setup

Introduce echart in the root component, usually App.vue

import * as echarts from 'echarts'
import { provide } from 'vue'
 
export default {
  name: 'App',
  setup(){
    provide('echarts',echarts) //provide
  },
  components:
  }
}

It should be noted here that import * as echarts from 'echarts' , not import echarts from 'echarts' , which will result in an error, because the interface of echarts version 5.0 has become as follows:

export { 
 EChartsFullOption as EChartsOption, 
 connect, 
 disConnect, 
 dispose,
 getInstanceByDom, 
 getInstanceById, 
 getMap, 
 init,
 registerLocale, 
 registerMap, 
 registerTheme 
 };

Define div on the page where you need to use it

<div id="home-page-traffic_chart" style="width: 600px; height: 280px">

Then inject it on the page where you need to use Echarts

export default {
  name: 'data_page',
  setup () {
    const trafficData = ref({})
    const echarts = inject('echarts')
    onMounted(() => {
      const myChart = echarts.init(document.getElementById('home-page-traffic_chart'))
      // Draw the chart myChart.setOption({
        title:
          text: 'Today's call statistics'
        },
        tooltip: {
          trigger: 'axis',
          axisPointer:
            type: 'shadow'
          }
        },
        grid: {
          left: '3%',
          right: '4%',
          bottom: '3%',
          containLabel: true
        },
        xAxis: [
          {
            type: 'category',
            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
            axisTick: {
              alignWithLabel: true
            }
          }
        ],
        yAxis: [
          {
            type: 'value'
          }
        ],
        series: [
          {
            name: 'Direct access',
            type: 'bar',
            barWidth: '60%',
            data: [10, 52, 200, 334, 390, 330, 220]
          }
        ]
      })
      window.onresize = function () {
        myChart.resize()
      }
    })
    return {
    }
  }

}

Effect picture:

You may also be interested in:
  • Example code of using vue-echarts-v3 in vue
  • Detailed explanation of vue using Echarts to draw a bar chart
  • Practice of using echarts for visualization in Django
  • WeChat Mini Program Basic Tutorial: Use of Echart
  • Detailed explanation of the use of native echart and vue-echart

<<:  MySQL subqueries and grouped queries

>>:  A brief discussion on two current limiting methods in Nginx

Recommend

Install mysql 5.6 from yum source in centos7.4 system

System environment: centos7.4 1. Check whether th...

Talking about Less and More in Web Design (Picture)

Less is More is a catchphrase for many designers....

How to upgrade all Python libraries in Ubuntu 18.04 at once

What is pip pip is a Python package management to...

Simple comparison of meta tags in html

The meta tag is used to define file information an...

Web skills: Multiple IE versions coexistence solution IETester

My recommendation Solution for coexistence of mul...

Detailed explanation of Axios asynchronous communication in Vue

1. First, we create a .json file for interactive ...

List rendering instructions for efficient development of Vue front-end

v-for directive Speaking of lists, we have to men...

MySQL Practical Experience of Using Insert Statement

Table of contents 1. Several syntaxes of Insert 1...

How to use display:olck/none to create a menu bar

The effect of completing a menu bar through displ...

Steps to deploy multiple tomcat services using DockerFile on Docker container

1. [admin@JD ~]$ cd opt #Enter opt in the root di...

MySQL 8.0.16 installation and configuration graphic tutorial under macOS

This article shares the installation and configur...

How to change the encoding to utf-8 in mysql version 5.7 under windows

Preface I just started learning MySQL and downloa...