Skip to content

Instantly share code, notes, and snippets.

@aendra-rininsland
Created December 15, 2016 14:22
Show Gist options
  • Save aendra-rininsland/6e8992e99ffffcb70bba382a55a887bd to your computer and use it in GitHub Desktop.
Save aendra-rininsland/6e8992e99ffffcb70bba382a55a887bd to your computer and use it in GitHub Desktop.
C3 0.4.11 base
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.js"></script>
</head>
<body>
<div id="chart"></div>
<script>
var chart = c3.generate({
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 50, 20, 10, 40, 15, 25]
]
}
});
setTimeout(function () {
chart.load({
columns: [
['data1', 230, 190, 300, 500, 300, 400]
]
});
}, 1000);
setTimeout(function () {
chart.load({
columns: [
['data3', 130, 150, 200, 300, 200, 100]
]
});
}, 1500);
setTimeout(function () {
chart.unload({
ids: 'data1'
});
}, 2000);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment