zmc
2023-08-29 b77599ace9fc1c68bacd0e37ddb2e83812660ae3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!--浓度均值 数据在线率 有效率 超标率 图组件
子组件有基本的样式 
使用同一个图形实例,接受父组件传入的折线图option
 -->
 <template>
    <div ref="chart" class="line-chart"></div>
</template>
  
<script>
  import * as echarts from 'echarts';
  
  export default {
    props: {
      chartData: {
        type: Object,
        required: true,
        }
    },
    data() {
      return {
        chart: null
      };
    },
    mounted() {
      this.renderChart();
    //   this.chart.setOption(this.chartData)
      window.addEventListener('resize',this.resizeChart)
    },
    watch: {
      chartData() {
        // option变化时,图形再次初始化
      // this.renderChart();
      this.chart.dispose();
      this.renderChart();
      this.chart.setOption(this.chartData)
      }
      
    },
    beforeUnmount() {
      if (this.chart) {
        this.chart.dispose();
      }
    },
    methods: {
      renderChart() {
        // 创建echarts实例
        this.chart = echarts.init(this.$refs.chart);
  
        // 定义图表的配置项和数据
        const option = {
          title: {
            // text: '异步数据加载示例'
          },
          tooltip: {},
  
          toolbox: {
            // 工具栏
            feature: {
              dataZoom: {
                // 区域缩放
                yAxisIndex: 'none'
              },
           
              // 保存为图片
              saveAsImage: {}
            }
          },
          xAxis: {
            name: '时间',
            data: []
          },
          yAxis: {
              type: 'value',
              axisLabel: {
              show: true,
              interval: 'auto'
            },
            name: '百分比'
          },
          series: [
            {
              name: 'fume',
              type: 'line',
              data: []
            }
          ]
        };
  
        // 使用刚指定的配置项和数据显示图表
        this.chart.setOption(option, true);
      },
  
      // 跟页面响应式变化
      resizeChart(){
        this.chart.resize()
      }
    }
  };
  </script>
  
  <style>
  .line-chart {
      width: 100%;
      height: 500px;
      margin-top: 25px;
  }
  
  </style>