Echarts脚手架安装方法:

232 阅读1分钟
Echarts安装方法:

Npm安装:
npm install echarts -S

mian.js全局引入:

import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts


柱状图:

<template>

  <div id="app">

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

    <router-view/>

   

  </div>

</template>

<script>
// 下面四句代码很重要需要写:
let echarts = require('echarts/lib/echarts')

// 引入柱状图组件

require('echarts/lib/chart/bar')

// 引入提示框和title组件

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() {

      // 基于准备好的dom,初始化echarts实例

      let myChart = echarts.init(document.getElementById('myChart'))

      // 绘制图表

      myChart.setOption({

        title: { text'ECharts 入门示例' },

        tooltip: {},

        xAxis: {

          data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]

        },

        yAxis: {},

        series: [{

          name'销量',

          type'bar',

          data: [5, 20, 36, 10, 10, 20]

        }]

      });

    }

  }

}

</script>