first commit
This commit is contained in:
33
www/bower_components/c3/docs/js/samples/legend_position.js
vendored
Normal file
33
www/bower_components/c3/docs/js/samples/legend_position.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
var chart = c3.generate({
|
||||
data: {
|
||||
columns: [
|
||||
['data1', 30, 200, 100, 400, 150, 250],
|
||||
['data2', 50, 20, 10, 40, 15, 25]
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
position: 'right'
|
||||
}
|
||||
});
|
||||
|
||||
setTimeout(function () {
|
||||
chart.load({
|
||||
columns: [
|
||||
['data3', 130, 150, 200, 300, 200, 100]
|
||||
]
|
||||
});
|
||||
}, 1000);
|
||||
|
||||
setTimeout(function () {
|
||||
chart.unload({
|
||||
ids: 'data1'
|
||||
});
|
||||
}, 2000);
|
||||
|
||||
setTimeout(function () {
|
||||
chart.transform('pie');
|
||||
}, 3000);
|
||||
|
||||
setTimeout(function () {
|
||||
chart.transform('line');
|
||||
}, 4000);
|
||||
Reference in New Issue
Block a user