Built with blockbuilder.org
forked from Vintharas's block: Simple example moving divs
forked from Vintharas's block: Simple example circle
| license: mit |
Built with blockbuilder.org
forked from Vintharas's block: Simple example moving divs
forked from Vintharas's block: Simple example circle
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://d3js.org/d3.v4.min.js"></script> | |
| <style> | |
| body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
| </style> | |
| <svg width=900 height=900></svg> | |
| </head> | |
| <body> | |
| <script> | |
| var cookiesThisWeek = [10, 20, 10, 50, 1, 12, 2]; | |
| d3.select("svg") | |
| .selectAll("rect") | |
| .data(cookiesThisWeek) | |
| .enter() | |
| .append('rect') | |
| .attr('x', (_, i) => i*10) | |
| .attr('y', (d) => 100 - d) | |
| .attr('width', 10) | |
| .attr('height', (d) => d) | |
| </script> | |
| </body> |