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

时间:2015-09-01 08:37:54

标签: d3.js nvd3.js c3.js

不同选项的轴标签位置,例如function sumTwo(a, b){ return a + b; } export { sumTwo }; 'position: .....如果轴旋转不起作用:true。 Here is the jsfiddle link..

1 个答案:

答案 0 :(得分:2)

由于轴旋转,您应该反转位置。

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位置属性已被反转。