Built with blockbuilder.org
Created
December 15, 2016 14:22
-
-
Save aendra-rininsland/6e8992e99ffffcb70bba382a55a887bd to your computer and use it in GitHub Desktop.
C3 0.4.11 base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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