Vue中如何使用Eachers

下载

盒子固定的大小

<div id="main" style="width:1000px;height:500px">

导入

  import * as echarts from 'echarts';

配置

 mounted(){

// 基于准备好的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]
    }
  ]
});
   },

view视图结果

猜你喜欢

转载自blog.csdn.net/qq_59076775/article/details/126679369