react-flow-chart icon indicating copy to clipboard operation
react-flow-chart copied to clipboard

🌊 A flexible, stateless, declarative flow chart library for react.

Results 101 react-flow-chart issues
Sort by recently updated
recently updated
newest added

I am trying to delete a link by clicking on a button on CustomLink. Anybody knows why this does not work? import * as React from "react"; import { render...

I was looking at the source code of this library and found some error highlighting in VSCODE. in mapValues.ts at line 8 :- res[key] = func(o[key]); the error is :-...

I have a use case where i want to add nodes when added on click button on link and that should be reflected in JSON. Is there a way to...

Is there a way i can run react-flow-chart library without using webpack and storybook, rendering storybook elements to DOM. Any help would be highly appreciated.

I'm trying to run react-flow-chart without story book. I created a typescript app using create-react-app my-app --template typescript and then installed packages as mentioned in react-flow-chart library, and then got...

Hi, I'm using the FlowChartWithState component and I'm setting an initial value from the variable chartSimple given in the example on the Readme page. I tried to update the variable...

The CanvasInnerDefault component is defined as: ```ts export const CanvasInnerDefault = styled.div` position: relative; outline: 1px dashed rgba(0,0,0,0.1); width: 10000px; height: 10000px; cursor: move; ` as any ``` In previous...

Thank you for your great job! 👏 Actually, the zoom point is in the top-left corner: ![zoom-point-center](https://user-images.githubusercontent.com/58181893/83127107-0ecf4200-a0da-11ea-8b24-e1605ef2f6bb.gif) It would be great to use the center of the screen (or allow...

While in dev mode, the reducer for the action` onCanvasDrop` will create two nodes instead of one. When creating a production build of the same application then it creates only...

I have a sidebar ui/ux (like this example https://github.com/MrBlenny/react-flow-chart/blob/master/stories/DragAndDropSidebar.tsx) and have made it so that when the user clicks on a Node, it sets it as `selected` and thus showing...