-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
53 lines (37 loc) · 1017 Bytes
/
test.html
File metadata and controls
53 lines (37 loc) · 1017 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.container {
width: 100%;
height: 95%;
border:solid;
}
.wrapper {
width: 1000px;
margin:4px;
height: 900px;
}
.box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
max-width: 100vw;
height: 100%;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Test</title>
</head>
<body>
<script src="node_modules/d3/dist/d3.js"></script>
<script defer src="deps/sigma.require.js" charset="utf-8"></script>
<script defer src="deps/sigma.plugins.dragNodes.min.js" charset="utf-8"></script>
<script type="module" src="/test/test.js" charset="utf-8"></script>
<div class="box">
</div>
<svg class="chart" id="chart-avg-objective" width="100%" height="600">
</svg>
</body>
</html>