C3.js(条形图)旋转时轴标签位置不起作用:真

C3.js (Bar chart) axis label position not working when rotated: true

不同选项的轴标签位置,如 position: 'outer-left'/outer-center/outer-left..... 如果轴旋转则不起作用:true。 Here is the jsfiddle link..

因为轴是旋转的,所以你应该反转位置。

http://jsfiddle.net/7kYJu/1742/

axis: {
    rotated: true,
    x: {
    label: {
        text: 'X Label',
        position: 'outer-middle'
    }
},
    y: {
    label: {
        text: 'Y Label',
        position: 'outer-center'
    }
}

这里X位置和Y位置属性已经反转了