-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
45 lines (45 loc) · 1.04 KB
/
Copy pathmain.html
File metadata and controls
45 lines (45 loc) · 1.04 KB
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></title>
<script type="text/javascript" src="lib/exceljs.js"></script>
<script type="text/javascript" src="lib/html2canvas.js"></script>
<script type="text/javascript" src="lib/plotly-latest.min.js"></script>
</head>
<body>
<div style="width: 1000px">
<div
id="chart01"
style="
width: 300px;
height: 300px;
background-color: red;
float: left;
width: 33%;
"
></div>
<div
id="chart02"
style="
width: 300px;
height: 300px;
background-color: red;
float: left;
width: 33%;
"
></div>
<div
id="chart03"
style="
width: 300px;
height: 300px;
background-color: red;
float: left;
width: 33%;
"
></div>
</div>
<input type="button" id="download" value="Download xlsx" />
<script type="text/javascript" src="main.js"></script>
</body>
</html>