-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (105 loc) · 4.03 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Charts</title>
<link rel="stylesheet" type="text/css" href="Charts/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<main id="main">
<div id="setting-wrapper">
<div id="left-section">
<h3>Setting</h3>
</div>
<div id="right-section">
<section>
<article id="data-box">
<details open>
<summary> Data</summary>
<div>
<label for="data-list">Data</label>
<input type="text" id="data-list" name="data-list"
value="0, 230, 120, -450, -200, 1600, 0, 600, -1500, 200, 0, -1200, -800, 800, 0" />
<button id="add" name="add">
Add
</button>
</div>
<!-- <div>
<label for="width">width</label>
<div><input type="text" id="width" name="width" value="1500" /></div>
</div> -->
<!-- <div class="button-group">
</div> -->
</details>
</article>
</section>
<section>
<article>
<details>
<summary>Type</summary>
<div>
<input type="checkbox" name="type-checkbox" value="line-type" checked>
<label for="type">Line</label>
<div id="type-radio">
<input type="radio" name="radio" value="default" checked>default
<input type="radio" name="radio" value="curve">curve
<input type="radio" name="radio" value="step">step
</div>
</div>
<div>
<input type="checkbox" name="type-checkbox" value="bar-type">
<label for="type">Bar</label>
<div id="type-radio">
<input type="radio" name="bar-radio" value="bar-default" checked>rect
<input type="radio" name="bar-radio" value="contrast">contrast
</div>
</div>
<div>
<input type="checkbox" name="type-checkbox" value="plot-type">
<label for="type">Plot</label>
<div id="type-radio">
<input type="radio" name="plot-radio" value="plot-default" checked>default
<input type="radio" name="plot-radio" value="volume">volume
</div>
</div>
</details>
</article>
</section>
<section>
<article>
<details>
<summary>Function</summary>
<div>
<label for="option">Option</label>
<input type="checkbox" name="checkbox" value="full-range-line" checked>fullRangeLine
<input type="checkbox" name="checkbox" value="is-focus-line" checked>isFocusLine
<input type="checkbox" name="checkbox" value="is-tooltip" checked>istooltip
<input type="checkbox" name="checkbox" value="is-tooltip-box" checked>istooltipBox
</div>
<div>
<label for="time">Streaming Time /sec</label>
<div><input type="text" id="time" name="time" value="15" /></div>
</div>
<div class="button-group">
<button id="stream" name="stream">
Stream
</button>
</div>
</details>
</article>
</section>
</div>
</article>
</section>
</div>
</div>
<section id="svg-area">
</main>
<script type="module" src="./Charts/main.js"></script>
</body>
</html>