mirror of https://github.com/masayuki0812/c3.git
Masayuki Tanaka
11 years ago
2 changed files with 66 additions and 1 deletions
@ -0,0 +1,49 @@ |
|||||||
|
<html> |
||||||
|
<head> |
||||||
|
<link rel="stylesheet" type="text/css" href="/css/c3.css"> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<div id="chart"></div> |
||||||
|
|
||||||
|
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> |
||||||
|
<script src="/js/c3.js"></script> |
||||||
|
<script> |
||||||
|
var chart = c3.generate({ |
||||||
|
bindto: '#chart', |
||||||
|
data: { |
||||||
|
xs : { |
||||||
|
'data1': 'x1', |
||||||
|
'data2': 'x2', |
||||||
|
}, |
||||||
|
columns: [ |
||||||
|
['x1', 100, 120, 130, 200, 240, 500], |
||||||
|
['x2', 150, 220, 230, 400, 540, 600, 800], |
||||||
|
['data1', 30, 200, 100, 400, 150, 250], |
||||||
|
['data2', 130, 100, 300, 200, 250, 350, 100], |
||||||
|
], |
||||||
|
selection: { |
||||||
|
enabled: true |
||||||
|
}, |
||||||
|
onenter: function (d) { console.log("onenter", d); }, |
||||||
|
onleave: function (d) { console.log("onleave", d); } |
||||||
|
}, |
||||||
|
}); |
||||||
|
|
||||||
|
setTimeout(function () { |
||||||
|
chart.load({ |
||||||
|
columns: [ |
||||||
|
['data1', 100, 210, 150, 200, 100, 150], |
||||||
|
['data2', 200, 310, 50, 400, 120, 250, 10], |
||||||
|
] |
||||||
|
}); |
||||||
|
}, 1000); |
||||||
|
|
||||||
|
setTimeout(function () { |
||||||
|
chart.xs({ |
||||||
|
// 'data1': [200, 210, 350, 400, 550, 750] |
||||||
|
'data2': [200, 210, 350, 400, 550, 750, 900] |
||||||
|
}); |
||||||
|
}, 2000); |
||||||
|
</script> |
||||||
|
</body> |
||||||
|
</html> |
Loading…
Reference in new issue