Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. groups.selectAll('.bartext')
  2. .data(function(d) {
  3. return d;
  4. })
  5. .enter()
  6. .append("text")
  7. .attr("class", "bartext")
  8. .attr("text-anchor", "end")
  9. .attr("fill", "black")
  10. .attr('x', function(d) {
  11. return xScale(d.x0) + xScale(d.x);
  12. })
  13. .attr('y', function(d, i) {
  14. return yScale(d.y) + yScale.rangeBand() / 2;
  15. })
  16. .text(function(d) {
  17. return d.x;
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement