-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (54 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script type="text/javascript" src="d3_barGraph.js"></script>
</head>
<body>
<div class="chart-container" id ="barChart-container" style="max-width: 1000px;"></div>
<div class="button-container"></div>
</body>
<script>
var bar_graph = new Bar_Graph({
data: [{
"x": "A1",
"y": 25
},
{
"x": "A2",
"y": 17
},
{
"x": "A3",
"y": 10
},
{
"x": "A4",
"y": 88
},
{
"x": "A5",
"y": 14
},
{
"x": "A6",
"y": 2
},
{
"x": "A7",
"y": 3
}
],
element: document.querySelector('#barChart-container'),
orientation:'horizontal',
width:500,
height:500,
padding:50,
speed:1000,
colorPalette:[],
xTicksNum:10,
yTicksNum:10,
barPaddingInner:0.1
});
</script>
</html>