Guest User

Untitled

a guest
Oct 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. d3.select('#myDiv').select('svg').append('g')
  2. .append('text')
  3. .text('myText')
  4. .attr('x', xPosition)
  5. .attr('y', yPosition)
  6. .attr('class', 'label');
  7.  
  8. .label {
  9. font-family: sans-serif;
  10. font-size: 1em;
  11. transform: rotate(90deg);
  12. }
Add Comment
Please, Sign In to add comment