test spline
by Wayne Humphrey
HTML
<script src="https://rawgit.com/masayuki0812/c3/master/c3.js"></script>
<link rel="stylesheet" href="https://rawgit.com/masayuki0812/c3/master/c3.css">
<div id="chart"></div>
JavaScript
var chart = c3.generate({
data: {
columns: [
['X', '11', '12', '13', 14, 15, 16],
['outlookForMac', 30, 200, 100, 400, 15, 250],
['outlookForWindows', 130, 100, 140, 200, 150, 50],
['test', null, 200, null, 400, 15, 250],
['test2', 0, 100, 0, 200, 150, 50],
['test3', 30, 75, 100, 350, 15, 0],
],
x: 'X',
type: 'spline'
},
spline: {
interpolation: {
type: 'monotone'
}
}
});