-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.7 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
<!doctype html>
<html>
<head>
<title>Radar Background Generator</title>
<link rel="stylesheet" type="text/css" href="design.css">
</head>
<body>
<h1>Radar Chart Background Generator</h1>
<div id="input">
<h2>Measure Names:</h2>
<ul id="list"></ul>
<input type="text" id="text_box" placeholder="Add measures..." />
<input type="button" value = "add" id="add"/>
<input type="button" value="Generate Background Image" id="generate"/>
</div>
<div id="advanced">
<input type="button" value="Advanced Options..." id="show_advanced" />
<form id="advanced_options" hidden>
Reference lines: <input type="number" value=5 id="reference_lines" maxlength="3" size="3"/><br>
Line Color: <input type="text" value="#A9A9A9" id="line_color" maxlength="7" size="7"/><br>
Line Width: <input type="number" value=2 id="line_width"/><br>
Text Color: <input type="text" value="#000000" id="text_color" maxlength="7" size="7"/><br>
Font Size: <input type="number" value=20 id="font_size"/><br>
Text Distance: <input type="number" value=50 id="text_distance"/><br>
Offset by Half-Angle: <input type="checkbox" id="offset" checked />
</form>
</div>
<div id="canvas_area">
<canvas id="canvas" width="800" height = "800" style="border:1px solid #000000;"></canvas><br>
<input type="button" value="Download as PNG" id="export"/>
</div>
<script src="javascript.js"></script>
</body>
</html>