forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.81 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.ico" />
<title>hpcc-js</title>
<link rel="stylesheet" href="./node_modules/@hpcc-js/common/font-awesome/css/font-awesome.min.css">');
<style>
body {
overflow: hidden;
}
#root {
position: absolute;
left: 8px;
top: 8px;
right: 8px;
bottom: 8px;
}
</style>
<!-- <script type="module" src="./components/layout/src/index.ts"></script> -->
</head>
<body onresize="doResize();">
<div id="root" style="width:100%;height:100%">
<hpcc-splitpanel orientation="vertical" style="width:100%;height:100%">
<hpcc-splitpanel data-padding=0 data-border_width=0 style="width:100%;height:100%">
<div id="placeholder1" data-padding=0 data-border_widthX=0 style="width:100%;min-width:48px;height:100%">
</div>
<div id="placeholder2" data-padding=0 data-border_widthX=0 style="width:100%;min-width:48px;height:100%">
</div>
<div id="placeholder3" data-padding=0 data-border_widthX=0 style="width:100%;min-width:48px;height:100%">
</div>
</hpcc-splitpanel>
<hpcc-tabpanel style="width:100%;min-width:48px;height:100%">
<div id="placeholder4" data-label="Line Chart" style="width:100%;min-width:48px;height:100%">
</div>
<div id="placeholder5" data-label="Line Data" style="width:100%;min-width:48px;height:100%">
</div>
</hpcc-tabpanel>
</hpcc-splitpanel>
</div>
<script type="module" src="./src-test/index.ts"></script>
</body>
</html>