我想使用旋转轴,我想适合 Y 轴。我怎样才能做到这一点?
我试过了 :
c3.generate({
data: {
x: 'x',
columns: [
['x', '2013-10-31', '2013-12-31', '2014-01-31', '2014-02-28'],
['sample', 30, 100, 400, 150],
]
},
axis : {
rotated: true,
x : {
type : 'timeseries',
tick: {
fit: true,
format: "%e %b %y"
}
},
y: {
tick: {
fit: true
}
}
}
但没有任何改变。有什么帮助吗?我使用 0.4.10 版本的 c3。