I would like to know how can I enable the scrollbar while zooming with svg-pan-zoom.
I've tried overflow: auto
on external div or svg tag with no luck.
Hopefully I can get some help here.
There is no way to have scrollbars by default inside of svg-pan-zoom
as it's essentially an SVG, and inside of an SVG things behave like they're overflow: hidden
. You'll have to implement scrollbars by yourself (render some elements that would look like scrollbars, compute their size and position...).