private reset()

in src/visual.ts [806:815]


    private reset(): void {
        if (this.container.empty()) {
            return;
        }
        this.forceLayout.on("tick", null);
        this.forceLayout.stop();
        this.container
            .selectAll("*")
            .remove();
    }