D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
aaizemberg
Full window
Github gist
d3plus treemap provincias y departamentos
<!doctype html> <meta charset="utf-8"> <!-- d3plus v1.9.8 --> <script src="d3plus.full.min.js"></script> <div id="viz"></div> <script> var url = 'https://raw.githubusercontent.com/aaizemberg/vis/gh-pages/01/data/deptos.tsv'; var visualization = d3plus.viz() .format('es_ES') .container("#viz") .data( url ) .type("tree_map") .id(["provincia","departamento"]) .size("poblacion") .draw() </script>