-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (83 loc) · 4.13 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
<!DOCTYPE html>
<html>
<head>
<title>Chart-utils Demo</title>
</head>
<body>
<div class="hero" id="page-header">
<div class="hero-body" style="padding-top: 20px; padding-bottom: 20px; background: #ededed;">
<div class="container">
<h1 class="title">Chart Utils</h1>
<h2 class="subtitle">Awesome JS charting library</h2>
</div>
</div>
</div>
<div style="background: white; padding: 20px; height: 90vh;">
<div class="columns is-ancestor" style="height: 100%">
<div class="column is-narrow" id="left-panel">
<section class="accordions">
<article class="accordion is-active">
<div class="accordion-header">
<p>Data</p>
<button class="toggle" aria-label="toggle"></button>
</div>
<div class="accordion-body">
<div class="accordion-content">
<div class="file has-name">
<label class="file-label">
<input class="file-input" type="file" id="file-upload">
<span class="file-cta">
<span class="file-icon">
<i class="fas fa-upload"></i>
</span>
<span class="file-label">
Choose a file…
</span>
</span>
<span class="file-name" style="background: white">
Not Selected
</span>
</label>
<button class="button is-success is-right" style="float: right; margin-left: 50px">Select data</button>
</div>
<div id="table-div" style="overflow-y: auto; padding: 20px; max-height: 70vh;">
<table id="data-table" class="table is-bordered is-hoverable is-fullwidth" style="border-radius: 10px">
</table>
</div>
</div>
</div>
</article>
<article class="accordion">
<div class="accordion-header">
<p>Control Panel</p>
<button class="toggle" aria-label="toggle"></button>
</div>
<div class="accordion-body">
<div class="accordion-content">
<div class="subtitle">Control header</div>
</div>
</div>
</article>
</section>
</div>
<button id="left-sep-right"></button>
<div class="column is-parent" id="chart-panel">
<div class="tabs is-right is-toggle">
<ul>
<li class="is-active tab" id="bar"><a>Bar</a></li>
<li class="tab" id="stack"><a>Stack</a></li>
<li class="tab" id="scatter"><a>Scatter</a></li>
<li class="tab" id="line"><a>Line</a></li>
<li class="tab" id="pie"><a>Pie</a></li>
<li class="tab" id="box"><a>Box</a></li>
<li class="tab" id="histogram"><a>Histogram</a></li>
<li class="tab" id="slate"><a>Slate</a></l>
</ul>
</div>
<div style="height: 90%; margin: auto; width: 90%" id="chart-area"></div>
<div style="height: 90%; margin: auto; width: 90%" id="chart-area-2"></div>
</div>
</div>
</div>
</body>
</html>