NVD3 Horizontal Bar Chart labels too long

前端 未结 3 2015
庸人自扰
庸人自扰 2021-01-22 20:37

I have data that has long labels, i.e:

values:
  [      
    { x : \"This is a really looong label\", y : 40 },
    { x : \"Short label\", y : 30 } 
  ]
<         


        
3条回答
  •  粉色の甜心
    2021-01-22 20:59

    Why not just add margins?

    var chart = nv.models.multiBarHorizontalChart()
                   .margin({top: 30, right: 20, bottom: 50, left: 175});
    

提交回复
热议问题