I'm using the c3js framework, how do I change the direction of the graph?
My current code.
var chart = c3.generate({
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
],
types: {
data1: 'bar',
}
},
});