Advertisement
dhshin

barchart

Mar 20th, 2018
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 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.   </svg>
  11.   <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.3/d3.min.js"></script>
  12.   <script>
  13.    
  14.     let students = [
  15.       {"name": "Jane", "value": 80},
  16.       {"name": "John", "value": 90},
  17.       {"name": "Bob", "value": 60}
  18.     ];
  19.    
  20.     // TODO
  21.    
  22.   </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement