We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377392d commit dd1264cCopy full SHA for dd1264c
src/main.js
@@ -469,8 +469,9 @@ class FunkyHeatmap {
469
let bodyWidth = 0;
470
let nonZeroRotate = false;
471
const groups = this.header.append('g');
472
+ const columnGroups = Array.from(this.columnGroups.values());
473
- const nLevels = Math.max(...this.columnGroups.values().map(group => {
474
+ const nLevels = Math.max(...columnGroups.map(group => {
475
let i = 1;
476
while (true) {
477
if (group[`level${i}`] === undefined) {
0 commit comments