in src/visual.ts [638:648]
private displayRootElement(isRootElementVisible: boolean = true): void {
if (!this.svgRoot) {
return;
}
const display: string = isRootElementVisible
? null
: "none";
this.svgRoot.style("display", display);
}