外部位置的轴标签不起作用

时间:2019-07-05 20:15:12

标签: c3.js

没有外部标签有效,

axis: {
    x: {
        label: 'Month',
        position: 'outer-center',   // ignoring!
        type: 'timeseries',
        tick: {
            format: '%b/%y',
            rotate: 32
        }
    },
    y: {
      label: '% of Duplicated Records',
      position: 'outer-top',  // ignoring!
      // tick: { format: d=> (parseInt(d*10)/10)+"%" }
    }      
} // \axis

position: 'outer-*'被忽略。


请参见https://output.jsbin.com/seriyih/edit

1 个答案:

答案 0 :(得分:1)

iam_instance_profile

position被定义为label的子属性,因此您只需要重新排列一下(如果这样做,标签也需要text的子属性):

y: {
  label: {
        text: '% of Duplicated Records',
        position: 'outer-top',  // should now work
  }
  // tick: { format: d=> (parseInt(d*10)/10)+"%" }
}