DataLabels格式化程序无法在Highcharts Sankey Diagram中使用

时间:2017-10-17 09:16:28

标签: javascript highcharts sankey-diagram

预期行为: 能够在sankey图中格式化dataLabel

实际行为 dataLabel没有格式化。

dataLabels: {
    enabled: true,
    formatter: function(){
        return "Abc";
    }
  }

现场演示,其中包含重现问题的步骤:

http://jsfiddle.net/jy0761aw/2/

受影响的浏览器: 所有浏览器

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。我认为Sankey真的很难实现。请改用nodeFormatter,格式化程序不起作用。示例如下。

nodeFormatter: function (arg) {
    if (!this.point.sum) {
        return null;
    } else {
        return this.key;
    }
}