Files
decomp.dev/templates/treemap.svg
T
2024-09-07 17:31:06 -06:00

8 lines
386 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<svg viewBox="0 0 {{ w }} {{ h }}" xmlns="http://www.w3.org/2000/svg">
<style>.unit { stroke: #000; stroke-width: 1; }</style>
{% for unit in units %}
<rect class="unit" width="{{ unit.w * 100.0 }}%" height="{{ unit.h * 100.0 }}%" x="{{ unit.x * 100.0 }}%" y="{{ unit.y * 100.0 }}%" fill="{{ unit.color }}" />
{% endfor %}
</svg>