1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Egghead D3 v4</title>
- <script src="node_modules/d3/build/d3.js"></script>
- <style>
- .chart {
- background: lightgray;
- border: 1px solid black;
- }
- circle {
- fill-opacity: 0.5;
- fill: steelblue;
- }
- </style>
- </head>
- <body>
- <div class="chart"></div>
- <script src="data/data.json"></script>
- <script src="src/responsivefy.js"></script>
- <script src="src/app.js"></script>
- </body>
- </html>
|