Echart多圖聯動


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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<! DOCTYPE html>
< head >
     < meta charset = "utf-8" >
     < title >ECharts</ title >
</ head >
< body >
     <!-- 為ECharts准備一個具備大小(寬高)的Dom -->
     < div id = "main1" style = "height:200px" ></ div >
     < div id = "main2" style = "height:200px" ></ div >
     < div id = "main3" style = "height:200px" ></ div >
     < div id = "main4" style = "height:200px" ></ div >
     <!-- ECharts單文件引入 -->
     < script src = "http://echarts.baidu.com/build/dist/echarts.js" ></ script >
     < script type = "text/javascript" >
         // 路徑配置
         require.config({
             paths: {
                 echarts: 'http://echarts.baidu.com/build/dist'
             }
         });
         
         // 使用
         require(
             [
                 'echarts',
                 'echarts/chart/bar', // 使用柱狀圖就加載bar模塊,按需加載
                 'echarts/chart/line'
             ],
             function (ec) {
                 // 基於准備好的dom,初始化echarts圖表
                 var myChart1 = ec.init(document.getElementById('main1'));
                 var myChart2 = ec.init(document.getElementById('main2'));
                 var myChart3 = ec.init(document.getElementById('main3'));
                 var myChart4 = ec.init(document.getElementById('main4'));
 
                 myChart1.setTheme("macarons");
                 myChart2.setTheme("macarons");
                 myChart3.setTheme("macarons");
                 myChart4.setTheme("macarons");
                 
                 var option1 = {
                     title : {
                         text: '溫度狀況',
                         subtext: '純屬虛構'
                     },
                     tooltip : {
                         trigger: 'axis'
                     },
                     legend: {
                         data:['設定溫度','進水溫度','出水溫度','環境溫度']
                     },
                     toolbox: {
                         show : true,
                         feature : {
                             mark : {show: true},
                             dataView : {show: true, readOnly: false},
                             magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
                             restore : {show: true},
                             saveAsImage : {show: true}
                         }
                     },
                     xAxis : [
                         {
                             type : 'category', //x軸為類目類型
                             axisLabel:{
                                 show:true,
                                 interval:0,
                                 rotate:45
                             },
                             data : ['00:00:00','00:05:00','00:10:00','00:15:00','00:20:00','00:25:00','00:30:00','00:35:00','00:40:00','00:45:00']
 
                     }],
                     yAxis : [
                         {
                             type : 'value'  //y軸為值類型
                         }
                     ],
                     series : [{ 
                         name:'設定溫度',
                         type:'line',
                         smooth:true,
                         data:[55,55,55,55,55,55,55,55,55,55]
                     }]
                 }
 
             var option2 = {
                     tooltip : {
                         trigger: 'axis'
                     },
                     legend: {
                         y:-30,
                         data:['設定溫度','進水溫度','出水溫度','環境溫度']
                     },
                     toolbox: {
                         y : -30,
                         show : true,
                         feature : {
                             mark : {show: true},
                             dataView : {show: true, readOnly: false},
                             magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
                             restore : {show: true},
                             saveAsImage : {show: true}
                         }
                     },
                     xAxis : [
                         {
                             type : 'category', //x軸為類目類型
                             axisLabel:{
                                 show:true,
                                 interval:0,
                                 rotate:45
                             },
                             data : ['00:00:00','00:05:00','00:10:00','00:15:00','00:20:00','00:25:00','00:30:00','00:35:00','00:40:00','00:45:00']
 
                     }],
                     yAxis : [
                         {
                             type : 'value'  //y軸為值類型
                         }
                     ],
                     series : [{ 
                         name:'進水溫度',
                         type:'line',
                         smooth:true,
                         data:[15,15,16,18,18,19,19,19,19,19]
                     }]
                 }
 
             var option3 = {
                     tooltip : {
                         trigger: 'axis'
                     },
                     legend: {
                         y : -30,
                         data:['設定溫度','進水溫度','出水溫度','環境溫度']
                     },
                     toolbox: {
                         y : -30,
                         show : true,
                         feature : {
                             mark : {show: true},
                             dataView : {show: true, readOnly: false},
                             magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
                             restore : {show: true},
                             saveAsImage : {show: true}
                         }
                     },
                     xAxis : [
                         {
                             type : 'category', //x軸為類目類型
                             axisLabel:{
                                 show:true,
                                 interval:0,
                                 rotate:45
                             },
                             data : ['00:00:00','00:05:00','00:10:00','00:15:00','00:20:00','00:25:00','00:30:00','00:35:00','00:40:00','00:45:00']
 
                     }],
                     yAxis : [
                         {
                             type : 'value'  //y軸為值類型
                         }
                     ],
                     series : [{ 
                         name:'出水溫度',
                         type:'line',
                         smooth:true,
                         data:[20,25,30,35,38,44,46,48,53,56]
                     }]
                 }
 
             var option4 = {
                     tooltip : {
                         trigger: 'axis'
                     },
                     legend: {
                         y : -30,
                         data:['設定溫度','進水溫度','出水溫度','環境溫度']
                     },
                     toolbox: {
                         y : -30,
                         show : true,
                         feature : {
                             mark : {show: true},
                             dataView : {show: true, readOnly: false},
                             magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
                             restore : {show: true},
                             saveAsImage : {show: true}
                         }
                     },
                     xAxis : [
                         {
                             type : 'category', //x軸為類目類型
                             axisLabel:{
                                 show:true,
                                 interval:0,
                                 rotate:45
                             },
                             data : ['00:00:00','00:05:00','00:10:00','00:15:00','00:20:00','00:25:00','00:30:00','00:35:00','00:40:00','00:45:00']
 
                     }],
                     yAxis : [
                         {
                             type : 'value'  //y軸為值類型
                         }
                     ],
                     series : [{ 
                         name:'環境溫度',
                         type:'line',
                         smooth:true,
                         data:[15,15,15,15,15,15,15,15,15,15]
                     }]
                 }
 
             // 為echarts對象加載數據
             myChart1.setOption(option1);
             myChart2.setOption(option2);
             myChart3.setOption(option3);
             myChart4.setOption(option4);
             //聯動配置
             myChart1.connect([myChart2, myChart3,myChart4]);
             myChart2.connect([myChart1, myChart3,myChart4]);
             myChart3.connect([myChart2, myChart1,myChart4]);
             myChart4.connect([myChart2, myChart3,myChart1]);
             }
         );
     </ script >
</ body >

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM