-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsimple.html
More file actions
48 lines (43 loc) · 1 KB
/
simple.html
File metadata and controls
48 lines (43 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
<html>
<head>
<script type="text/javascript" src="../eon-chart.js"></script>
</head>
<body>
<div id="chart"></div>
<script>
var pubnub = new PubNub({
publishKey: 'demo',
subscribeKey: 'demo'
});
var channel = "c3-spline" + Math.random();
eon.chart({
channels: [channel],
flow: true,
pubnub: pubnub,
generate: {
bindto: '#chart',
data: {
type: 'spline',
labels: false
}
},
debug: true
});
</script>
<script>
setInterval(function(){
pubnub.publish({
channel: channel,
message: {
eon: {
'Austin': Math.floor(Math.random() * 99),
'New York': Math.floor(Math.random() * 99),
'San Francisco': Math.floor(Math.random() * 99),
'Portland': Math.floor(Math.random() * 99)
}
}
});
}, 1000);
</script>
</body>
</html>