无法在角度nvd3旭日形图中显示标签

时间:2017-01-10 06:49:41

标签: nvd3.js angular-nvd3

如何设置始终在旭日形图中显示标签?我在演示中有这个问题:http://plnkr.co/edit/emCcNv?p=preview

$scope.options = {
  chart: {
  type: "sunburstChart",
  height: 450,
  duration: 250,
  width: 600,
  mode: "size",
  groupColorByParent: true,
  labelThreshold: 0.04,
  showLabels: true,
  key: function (d,i){return d.name;},
  labelFormat: function (d){if(mode === 'count'){return d.name + '#' + d.value}else{return d+ ' '}},
}

对我来说不起作用,但是http://krispo.github.io/angular-nvd3/#/sunburstChart如果你选中“showLables”复选框,它会以某种方式运作

1 个答案:

答案 0 :(得分:2)

此处的问题相同,通过将您的nvd3 lib更新为1.8.5来解决。