0
外伝説とドーナツグラフをd3.js、私はその右側に、ドーナツ外ドーナツの伝説を置くしたいと思います:は、次のコードでドーナツ
ラインコードは、私がやって変更する必要がありますhttp://bl.ocks.org/juan-cb/1984c7f2b446fffeedde
それ?これと同じ
var legend = svg.selectAll('.legend')
.data(color.domain())
.enter()
.append('g')
.attr('class', 'legend')
.attr('transform', function(d, i) {
var height = legendRectSize + legendSpacing;
var offset = height * color.domain().length/2;
var horz = -3 * legendRectSize;
var vert = i * height - offset;
return 'translate(' + horz + ',' + vert + ')';
});
legend.append('rect')
.attr('width', legendRectSize)
.attr('height', legendRectSize)
.style('fill', color)
.style('stroke', color);
legend.append('text')
.attr('x', legendRectSize + legendSpacing)
.attr('y', legendRectSize - legendSpacing)
.text(function(d) { return d; });
何か:
http://www.jqueryscript.net/demo/jQuery-Plugin-To-Convert-Tabular-Data-Into-Donut-Charts-Chart-js/
編集:解決策は、水平方向と垂直方向の座標を変えるだけの問題でした。複雑なものは必要ありません。
[ホバー上D3ドーナツグラフの凡例またはラベル]の可能な重複(http://stackoverflow.com/questions/25170519/d3-donut-chart-legend-or-labels-on-hover:このような) – Dekel