如何在甜甜圈图表标签中强制换行?

时间:2018-11-14 05:11:08

标签: vuejs2 c3.js

我正在使用C3甜甜圈图,

enter image description here

但是标签太长,我需要类似word-break的功能。

所以我试图设置以下属性,但其中一些都不起作用

axis: {
  x: {
    tick: {
      width: 100
    }
  }
},
legend: {
  maxWidth: 100px;
},

有什么想法吗?

更新

tooltip.format.name函数可以部分解决此问题。但是我无法在此处添加换行符,尝试了"\n"<br/>&#13;

    tooltip: {
      format: {
        name: function (name, ratio, id, index) { 
          if (name.length > 70) {
            return name.substr(0, 70) + ' &#013; ...'
          } else {
            return name
          }
        }
      }
    }

0 个答案:

没有答案