Skip to content

Instantly share code, notes, and snippets.

@peterrcook
peterrcook / index.html
Created January 27, 2020 16:52
Treemap layout (treemapBinary strategy) outputs NaN co-ordinates
<!DOCTYPE html>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.15.0/d3.min.js"></script>
<script>
var data = [
{id: 'A', val1: 0, val2: 125},
{id: 'B', val1: 0, val2: 150},
{id: 'C', val1: 1, val2: 100}
];