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
| <!DOCTYPE html>
| <html>
| <head>
| <title>eleAnalyse.html</title>
|
| <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
| <meta http-equiv="description" content="this is my page">
| <meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
| <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
| <script type="text/javascript" src="js/echarts1.js"></script>
| <script type="text/javascript" src="js/eleAnalyse.js"></script>
| <script type="text/javascript" src="js/jquery-1.8.3.js"></script>
| <style type="text/css">
| #main-max{
|
| width:500px;
| heigth:40px;
| border: 1px solid white;
| }
|
| #echarts{
| width:100%;
| height: 100px;
| border: 1px solid black;
| }
| </style>
| </head>
|
| <body>
| <div id="main-max">
| <div id="echarts" style="width:500px;height:'400px';">
| </div>
| </div>
| </body>
| <script type="text/javascript">
| var date=['周一','周二','周三','周四','周五','周六'];
|
| var oecharts = document.getElementById('echarts');
| CreateLineEchart(oecharts,['1','2','3'],date,
| [[['周一',5],['周三',3],['周五',7]],[['周二',4],['周六',3]]]
| );
|
| </script>
| </html>
|
|