-
-
Notifications
You must be signed in to change notification settings - Fork 743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to add simple straight verticle line as widget? #158
Comments
I want line should have output bubble , but here i am getting box in addition and output bubble is on the box |
I don't quite understand you. Can you draw a picture of what you want? |
@jerosoler please see the below sketch
|
Hello, I think you want to do something like this: I don't know if this is the right library for this. I'm not sure what you want to do. I show you how you can create the node of user A. Javascript editor.addNode('usera', 1, 1, 150, 300, 'usera', {}, `User A`); CSS .drawflow-node.usera {
width: 6px;
height: 300px;
padding: 0px;
background: red;
border: 0px;
}
.drawflow-node.usera .drawflow_content_node {
position: absolute;
top: -30px;
width: 100px;
left: -20px;
}
.drawflow-node.usera .outputs{
position: absolute;
top: 50px;
left: -12.5px;
}
.drawflow-node.usera .inputs{
position: absolute;
top: 200px;
right: -12.5px;
} Jero |
I want just simple streight line in widget bar , but whenever i try to pull in it appears inside the box what way should i proceed to use api?
here are the code snippets and output i am gettign
The text was updated successfully, but these errors were encountered: