Jero Soler

Results 453 comments of Jero Soler

View: - https://github.com/jerosoler/Drawflow/issues/21 - #290

The demo should be reviewed. It doesn't seem to work for me either. A modal, pop-up would have to go outside the "drawflow" container. And there will be no problem.

Hello! @Ataraxy Thanks! 😉 Vertical it's possible only modify the CSS. ![image](https://user-images.githubusercontent.com/30957047/89118680-ce0ff280-d4a7-11ea-9e45-ec6b354871e8.png) Only add the css: ```css .drawflow .drawflow-node { display: block; } .drawflow .drawflow-node .inputs, .drawflow .drawflow-node .outputs {...

Right now I was trying a method to overwrite the curve. ![image](https://user-images.githubusercontent.com/30957047/89121684-30292180-d4c1-11ea-949f-62f6acf7f384.png) This example: ```javascript editor.curvature = 0; editor.reroute_curvature_start_end = 0; editor.reroute_curvature = 0; editor.createCurvature = function(start_pos_x, start_pos_y, end_pos_x, end_pos_y,...

Hello @jaspermyrp For the arrow. You can override the function createCurvature and add arrow. For example: ![image](https://user-images.githubusercontent.com/30957047/89502462-556da680-d7c5-11ea-8226-9e304274c0d2.png) Code: ```javascript editor.createCurvature = function(start_pos_x, start_pos_y, end_pos_x, end_pos_y, curvature_value, type) { var line_x...

Hello @Ataraxy Are you looking for this? #18 What comments to do something like this: ```javascript editor.addNode ('github', 0, 3, 150, 300, 'github', data, html); ``` For: ```javascript editor.addNode ('github',...

Hi! @mrsherlock88 Add css for view connection end: ```css .drawflow svg { z-index: 3; } ``` With the code: ```css .drawflow .drawflow-node { display: block; } .drawflow .drawflow-node .inputs, .drawflow...

@mrsherlock88 I will modify so that it goes to find the exact point and not the parent element. This will make it easier to modify the positions points.

Hello @mrsherlock88 New update version 0.0.22 with fix search position points. For example: ```javascript editor.addNode('github', 1, 3, 100, 50, 'romb', data, "Hey"); ``` ```css .drawflow .parent-node .romb { transform: rotate(45deg);...

Hello @MehbubRashid The example is only a lines. Adding more lines for example: ```javascript M '+ (x-11) + ' ' + y + ' L'+(x-20)+' '+ (y-5)+' L'+(x-20)+' '+ (y+5)+'...