Advertisement
dhshin

selection2_skel

Jun 27th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta charset="utf-8">
  5.   <meta name="viewport" content="width=device-width">
  6.   <title>JS Bin</title>
  7. </head>
  8. <body>
  9.   <svg height="1000" width="1000">
  10.     <rect id="rect_1" x="0" y="0" width="100" height="50"></rect>
  11.     <rect id="rect_2" x="0" y="100" width="200" height="50"></rect>
  12.     <rect id="rect_3" x="0" y="200" width="300" height="50"></rect>
  13.   </svg>
  14.   <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.3/d3.min.js"></script>
  15.   <script>
  16.    
  17.     let my_data = [1, 2, 3, 4, 5];
  18.     let svg = d3.select('svg');
  19.    
  20.   </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement