fix: it should be value and not name

This commit is contained in:
Mahdi Dibaiee
2016-11-02 18:31:19 +03:30
parent 63a70a4e94
commit 97ec628663
8 changed files with 18 additions and 18 deletions

View File

@ -35,7 +35,7 @@ function draw(small) {
nodeElements.attr('transform', function (d) {
return 'translate(' + d.x + ', ' + d.y + ')';
}).style('font-family', 'monospace').style('font-size', (small ? '6' : '11') + 'px').attr('data-word', function (d) {
return d.name;
return d.value;
});
nodesEnter.append('circle');
@ -47,6 +47,6 @@ function draw(small) {
var texts = svg.selectAll('g.node text').data(nodes);
texts.attr('dy', 5).html(function (d) {
return '<tspan>' + d.name.split('').join('</tspan><tspan>') + '</tspan>';
return '<tspan>' + d.value.split('').join('</tspan><tspan>') + '</tspan>';
}).attr('text-anchor', 'middle').style('fill', 'white');
}