fix Formula type annotation, it doesn't show up since #4630 (#5181)

This commit is contained in:
Grace Guo 2018-06-14 10:12:29 -07:00 committed by GitHub
parent a1095437bc
commit 585dbe6638
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -833,6 +833,12 @@ export default function nvd3Vis(slice, payload) {
});
});
}
// rerender chart appended with annotation layer
svg.datum(data)
.attr('height', height)
.attr('width', width)
.call(chart);
}
}
return chart;