6

ここに示されている方法で、各バーの実際の値を一番上に表示したい

マルチバーチャートでこれを試しています。

どこにも参照が見つかりません。

4

3 に答える 3

5

積み上げマルチバー チャートで値を表示する方法の複製- nvd3 グラフ

https://gist.github.com/topicus/217444acb4204f364e46で自分で実装できる修正があります

編集: github リンクが削除された場合は、コードをコピーしました:

// You need to apply this once all the animations are already finished. Otherwise labels will be placed wrongly.

d3.selectAll('.nv-multibar .nv-group').each(function(group){
  var g = d3.select(this);

  // Remove previous labels if there is any
  g.selectAll('text').remove();
  g.selectAll('.nv-bar').each(function(bar){
    var b = d3.select(this);
    var barWidth = b.attr('width');
    var barHeight = b.attr('height');

    g.append('text')
      // Transforms shift the origin point then the x and y of the bar
      // is altered by this transform. In order to align the labels
      // we need to apply this transform to those.
      .attr('transform', b.attr('transform'))
      .text(function(){
        // Two decimals format
        return parseFloat(bar.y).toFixed(2);
      })
      .attr('y', function(){
        // Center label vertically
        var height = this.getBBox().height;
        return parseFloat(b.attr('y')) - 10; // 10 is the label's magin from the bar
      })
      .attr('x', function(){
        // Center label horizontally
        var width = this.getBBox().width;
        return parseFloat(b.attr('x')) + (parseFloat(barWidth) / 2) - (width / 2);
      })
      .attr('class', 'bar-values');
  });
});
于 2015-10-21T08:12:34.783 に答える
2

どうやらこれはまだ存在しないようです。これは (明らかに) 実装が難しいためクローズされた問題 ( https://github.com/novus/nvd3/issues/150 ) があります。

于 2014-03-17T09:34:33.067 に答える