echarts使用,页面渲染不出来是什么原因?

作者站长头像
站长
· 阅读数 14
<template>
  <div class="echartscontainer">
    <div class="echarts" ref="chartThreeRef" style="width: 600px;height:400px;"></div>
  </div>
</template>

<script>
export default {
  data () {
    return {
      chartInstance: null,
      alldata: null
    }
  },
  created () {
    // this.getAllData()
    // this.updateDate()
  },
  mounted () {
    this.initCharts()
  },
  methods: {
    initCharts () {
      this.chartInstance = this.$echarts.init(this.$refs.chartThreeRef)
      const initOption = {
        title: {
          text: '折线图统计'
        },
        tooltip: {},
        legend: {
          data: ['销量']
        },
        xAxis: {
          data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
        },
        yAxis: {},
        series: [
          {
            name: '销量',
            type: 'bar',
            data: [5, 20, 36, 10, 10, 20]
          }
        ]
      }
      this.chartInstance.setOption(initOption)
    }
回复
1个回答
avatar
test
2024-07-01

可以出来,你看下你echarts正确引入没有,我这用的echarts5+的版本

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

answer image

<template>
  <div class="echartscontainer">
    <div class="echarts"
         ref="chartThreeRef"
         style="width: 600px;height:400px;"></div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      chartInstance: null,
      alldata: null
    }
  },
  created() {
    // this.getAllData()
    // this.updateDate()
  },
  mounted() {
    this.initCharts()
  },
  methods: {
    initCharts() {
      this.chartInstance = this.$echarts.init(this.$refs.chartThreeRef)
      const initOption = {
        title: {
          text: '折线图统计'
        },
        tooltip: {},
        legend: {
          data: ['销量']
        },
        xAxis: {
          data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
        },
        yAxis: {},
        series: [
          {
            name: '销量',
            type: 'bar',
            data: [5, 20, 36, 10, 10, 20]
          }
        ]
      }
      this.chartInstance.setOption(initOption)
    }
  }
}
  </script>
回复
likes
适合作为回答的
  • 经过验证的有效解决办法
  • 自己的经验指引,对解决问题有帮助
  • 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
  • 询问内容细节或回复楼层
  • 与题目无关的内容
  • “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容