forked from shutterstock/rickshaw
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbars.html
More file actions
53 lines (40 loc) · 1 KB
/
bars.html
File metadata and controls
53 lines (40 loc) · 1 KB
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
<!doctype>
<head>
<link type="text/css" rel="stylesheet" href="../src/css/graph.css">
<script src="../vendor/d3.min.js"></script>
<script src="../vendor/d3.layout.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
<script src="../rickshaw.js"></script>
</head>
<body>
<div id="chart"></div>
<script>
// set up our data series with 50 random data points
var seriesData = [ [], [], [] ];
var random = new Rickshaw.Fixtures.RandomData(150);
for (var i = 0; i < 70; i++) {
random.addData(seriesData);
}
// instantiate our graph!
var graph = new Rickshaw.Graph( {
element: document.getElementById("chart"),
width: 960,
height: 500,
renderer: 'bar',
series: [
{
color: "#c05020",
data: seriesData[0],
}, {
color: "#30c020",
data: seriesData[1],
}, {
color: "#6060c0",
data: seriesData[2],
}
]
} );
graph.render();
</script>
</body>