不同选项的轴标签位置,例如function sumTwo(a, b){
return a + b;
}
export { sumTwo };
'position:
.....如果轴旋转不起作用:true。
Here is the jsfiddle link..
答案 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位置属性已被反转。