You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey! Can you share an example, a screenshot, even better a code sandbox?
My intuition is that it's not the lib's responsibility :) If you want a bigger canvas on which the arrows will work, you need to provide a bigger div. The lib can't extend the SVG container element size on its own.
@timtong1982 I think I had the same issue. I was able to fix it by setting the display of the ArcherContainer to display: 'inline-block' and it worked.
in my case we have a long paragraph who is hosting in a fix sized div and that div offers overflow scroll for it, since the code in
ArcherContainer
does:
<div style={{ height: '100%', }} ref={parent} > {newChildren} </div>
any svg path draw after the initial width will not being rendered
suggest have a customizable for this div
what is process of submitting a PR, I can raise one
The text was updated successfully, but these errors were encountered: