jerosoler / Drawflow

Simple flow library 🖥️🖱️
https://jerosoler.github.io/Drawflow/
MIT License
4.61k stars 721 forks source link

Add scrollbar for right side where nodes are displaying #139

Closed ishpreetkaurwebner closed 3 years ago

ishpreetkaurwebner commented 3 years ago

Hello @jerosoler ,

Whether there is any way to add scrollbar at right div where we can see nodes and connections. Sometimes, nodes partially or fully hides below the visible area. Whether we can add scrollbar at right end of bordered area?

jerosoler commented 3 years ago

Hello @ishpreetkaurwebner

Try with css:

#drawflow {
overflow: auto;
}

.drawflow .connection {
    transform: initial;
}

.drawflow .connection .main-path {
    transform: initial;
}

I think that could work

ishpreetkaurwebner commented 3 years ago

Thanks a lot for quick reply. It is working, but still with issue. Still 10-20% of node is hidden and we are not able to view whole node

image