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
110
111
| <!-- 历史油烟 风机电 净化器 折线图组件
| 子组件有基本的样式
| 使用同一个图形实例,接受父组件传入的折线图option
| -->
| <template>
| <div ref="chart" class="line-chart"></div>
| </template>
|
| <script>
| import * as echarts from 'echarts';
|
| export default {
| props: {
| chartData: {
| type: Array,
| required: true
| }
| },
| data() {
| return {
| chart: null
| };
| },
| mounted() {
| this.renderChart();
| this.chart.setOption(this.chartData)
| window.addEventListener('resize',this.resizeChart)
| },
| watch: {
| chartData() {
| // this.renderChart();
| this.chart.setOption(this.chartData)
| }
|
| },
| beforeUnmount() {
| if (this.chart) {
| this.chart.dispose();
| }
| },
| methods: {
| renderChart() {
| if (this.chart) {
| // this.chart.dispose();
| // this.chart.setOption(this.chartData);
| }
|
| // 创建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: 'mg/m³'
| },
| series: [
| {
| name: 'fume',
| type: 'line',
| data: []
| }
| ]
| };
|
| // 使用刚指定的配置项和数据显示图表
| this.chart.setOption(option, true);
| // this.chart.setOption(this.chartData, true);
| },
|
| // 跟页面响应式变化
| resizeChart(){
| this.chart.resize()
| }
| }
| };
| </script>
|
| <style>
| .line-chart {
| width: 100%;
| height: 500px;
| margin-top: 25px;
| }
|
| </style>
|
|