-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
36 lines (30 loc) · 999 Bytes
/
test.html
File metadata and controls
36 lines (30 loc) · 999 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>D3</title>
<style>
</style>
<script src="./lib/d3.v3.min.js" charset="utf-8"></script>
<script src="./lib/jquery-2.1.4.min.js"></script>
<!--script to save to png -->
<script type="text/javascript" src="http://gabelerner.github.io/canvg/rgbcolor.js"></script>
<script type="text/javascript" src="http://gabelerner.github.io/canvg/StackBlur.js"></script>
<script type="text/javascript" src="http://gabelerner.github.io/canvg/canvg.js"></script>
<!-- to here. -->
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<h1>Title</h1>
<div id="graph">
</div>
<div id="canvasArea">
<canvas id="canvas" width="720px" height="320px"></canvas>
</div>
<div id="footer">
<button type="button" class="btn btn-danger" onclick="createDownloadLink()"> Download Link</button>
</div>
<script src="./d3code.js"></script>
<script src="./svgSaver.js"></script>
</body>
</html>