-
Notifications
You must be signed in to change notification settings - Fork 112
Open
Labels
Description
When using D3 zoom with mermaid graph that contain nested svg, it fails due to the way d3.selectAll works :
var svgs = d3.selectAll("{d3_selector}");
select all the subsequent svg in case of setting up the global zoom function.
In conclusion this likely fail.
var svgs = d3.selectAll(.mermaid svg);
Reactions are currently unavailable