mirror of https://github.com/masayuki0812/c3.git
CallumVass
10 years ago
7 changed files with 7323 additions and 538 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,136 +1,144 @@ |
|||||||
<html> |
<html> |
||||||
<head> |
<head> |
||||||
<link rel="stylesheet" type="text/css" href="/css/c3.css"> |
<link rel="stylesheet" type="text/css" href="../css/c3.css"> |
||||||
</head> |
</head> |
||||||
<body> |
<body> |
||||||
<div id="chart"></div> |
<div id="chart"></div> |
||||||
|
|
||||||
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> |
||||||
<script src="/js/c3.js"></script> |
<script src="../js/c3.js"></script> |
||||||
<script> |
<script> |
||||||
|
|
||||||
var columns = []; |
var columns = []; |
||||||
for (var i = 0; i < 5; i++ ) { |
for (var i = 0; i < 5; i++ ) { |
||||||
columns[i] = ['datahogehogeohgeohoge' + i, 10 * i, 20 * i, 30 * i]; |
columns[i] = ['datahogehogeohgeohoge' + i, 10 * i, 20 * i, 30 * i]; |
||||||
|
} |
||||||
|
|
||||||
|
var chart = c3.generate({ |
||||||
|
data: { |
||||||
|
columns: columns, |
||||||
|
}, |
||||||
|
axis: { |
||||||
|
x: { |
||||||
|
type: 'category' |
||||||
} |
} |
||||||
|
} |
||||||
var chart = c3.generate({ |
}); |
||||||
data: { |
|
||||||
columns: columns, |
setTimeout(function () { |
||||||
}, |
chart.legend.hide(); |
||||||
axis: { |
}, 1000); |
||||||
x: { |
|
||||||
type: 'category' |
setTimeout(function () { |
||||||
} |
chart = c3.generate({ |
||||||
|
data: { |
||||||
|
columns: columns, |
||||||
|
}, |
||||||
|
axis: { |
||||||
|
x: { |
||||||
|
type: 'category' |
||||||
} |
} |
||||||
}); |
}, |
||||||
|
legend: { |
||||||
setTimeout(function () { |
position: 'right' |
||||||
chart.legend.hide(); |
} |
||||||
}, 1000); |
}); |
||||||
|
}, 2000); |
||||||
setTimeout(function () { |
|
||||||
chart = c3.generate({ |
setTimeout(function () { |
||||||
data: { |
chart.legend.hide(); |
||||||
columns: columns, |
}, 3000); |
||||||
}, |
|
||||||
axis: { |
setTimeout(function () { |
||||||
x: { |
chart = c3.generate({ |
||||||
type: 'category' |
data: { |
||||||
} |
columns: columns, |
||||||
}, |
}, |
||||||
legend: { |
axis: { |
||||||
position: 'right' |
rotated: true |
||||||
} |
} |
||||||
}); |
}); |
||||||
}, 2000); |
}, 4000); |
||||||
|
|
||||||
setTimeout(function () { |
setTimeout(function () { |
||||||
chart.legend.hide(); |
chart.legend.hide(); |
||||||
}, 3000); |
}, 5000); |
||||||
|
|
||||||
setTimeout(function () { |
setTimeout(function () { |
||||||
chart = c3.generate({ |
chart = c3.generate({ |
||||||
data: { |
data: { |
||||||
columns: columns, |
columns: columns, |
||||||
}, |
}, |
||||||
axis: { |
legend: { |
||||||
rotated: true |
position: 'right' |
||||||
} |
}, |
||||||
}); |
axis: { |
||||||
}, 4000); |
rotated: true |
||||||
|
} |
||||||
setTimeout(function () { |
}); |
||||||
chart.legend.hide(); |
}, 6000); |
||||||
}, 5000); |
|
||||||
|
setTimeout(function () { |
||||||
setTimeout(function () { |
chart.legend.hide(); |
||||||
chart = c3.generate({ |
}, 7000); |
||||||
data: { |
|
||||||
columns: columns, |
setTimeout(function () { |
||||||
}, |
chart = c3.generate({ |
||||||
legend: { |
data: { |
||||||
position: 'right' |
columns: columns, |
||||||
}, |
}, |
||||||
axis: { |
legend: { |
||||||
rotated: true |
show: false |
||||||
} |
} |
||||||
}); |
}); |
||||||
}, 6000); |
}, 8000); |
||||||
|
|
||||||
setTimeout(function () { |
setTimeout(function () { |
||||||
chart.legend.hide(); |
chart.legend.show(); |
||||||
}, 7000); |
}, 9000); |
||||||
|
|
||||||
setTimeout(function () { |
setTimeout(function () { |
||||||
chart = c3.generate({ |
chart = c3.generate({ |
||||||
data: { |
data: { |
||||||
columns: columns, |
columns: columns, |
||||||
}, |
}, |
||||||
legend: { |
legend: { |
||||||
show: false |
show: false |
||||||
} |
}, |
||||||
}); |
axis: { |
||||||
}, 8000); |
rotated: true |
||||||
|
} |
||||||
setTimeout(function () { |
}); |
||||||
chart.legend.show(); |
}, 10000); |
||||||
}, 9000); |
|
||||||
|
setTimeout(function () { |
||||||
setTimeout(function () { |
chart.legend.show(); |
||||||
chart = c3.generate({ |
}, 11000); |
||||||
data: { |
|
||||||
columns: columns, |
setTimeout(function () { |
||||||
}, |
chart = c3.generate({ |
||||||
legend: { |
data: { |
||||||
show: false |
columns: columns, |
||||||
}, |
}, |
||||||
axis: { |
legend: { |
||||||
rotated: true |
position: 'right', |
||||||
} |
show: false |
||||||
}); |
} |
||||||
}, 10000); |
}); |
||||||
|
}, 12000); |
||||||
setTimeout(function () { |
|
||||||
chart.legend.show(); |
setTimeout(function () { |
||||||
}, 11000); |
chart.legend.show(); |
||||||
|
}, 13000); |
||||||
setTimeout(function () { |
|
||||||
chart = c3.generate({ |
setTimeout(function () { |
||||||
data: { |
chart.legend.position('bottom'); |
||||||
columns: columns, |
}, 14000); |
||||||
}, |
|
||||||
legend: { |
setTimeout(function () { |
||||||
position: 'right', |
chart.legend.position('right'); |
||||||
show: false |
}, 15000); |
||||||
} |
|
||||||
}); |
</script> |
||||||
}, 12000); |
</body> |
||||||
|
|
||||||
setTimeout(function () { |
|
||||||
chart.legend.show(); |
|
||||||
}, 13000); |
|
||||||
|
|
||||||
</script> |
|
||||||
</body> |
|
||||||
</html> |
</html> |
||||||
|
Loading…
Reference in new issue