Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6. <meta charset="utf-8">
  7. <title>prueba1consvg</title>
  8. </head>
  9.  
  10. <svg width="800px" height="300px" style="border:solid 1px #000">
  11. <line x1="20px" y1="10px" x2="175px" y2="10px" stroke="Green"></line>
  12. <line x1="10px" y1="10px" x2="100px" y2="180px" stroke="Yellow"></line>
  13. <line x1="110px" y1="180px" x2="200px" y2="10px" stroke="Red"></line>
  14. <circle cx="250px" cy="250" r="30px" fill="Green"></circle>
  15. <circle cx="350px" cy="250" r="30px" fill="Yellow"></circle>
  16. <circle cx="450px" cy="250" r="30px" fill="Red"></circle>
  17. <text x="250px" y="50" font-size="30">Ventas de tabaco en España 2015 por CCAA</text>
  18. </svg>
  19.  
  20.  
  21.  
  22. <h1>¿Cuáles son los efectos de las leyes antitabaco en España?</h1>
  23.  
  24. <p>Este gráfico correspondiente a <strong>2015</strong>, subdivido por Comunidades Autónomas y meses, muestra algunas claves.</p>
  25.  
  26. <script>
  27. d3.csv("Ventasdetabacoexpendeduras.csv",
  28. function(data) {
  29. console.log(data);
  30. });
  31. </script>
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement