Benoit Simard

Results 60 comments of Benoit Simard

Without more information about your issue, like a link to your code to show how you have integrated gephi-lite in your project or a small example that can reproduce your...

Good catch, I change that !

The workaround works! LGTM

Hi @seinecle Thanks for your report. Can you be more precise about the performance issue ? I tested on your graph, but it is already spatialized without nodes that overlap....

@leovalais can you check again ? Normally I did all the requested changes. Thanks!

Good point for the deletion ! I did a fix, which is not perfect : when you open the macro tab , a call is done to retrieve all the...

@clarani & @emersion I just pushed a commit that fix your feedbacks. There is one comment I don't get it : `This is missing the secondary_code.` I don't know what...

@emersion & @clarani I review the way how I stored the nodes in the state and their relative indices. So now a node has a `ngeId` & `dbId`, and methods...

Layout hooks doesn't need parameters, they directly used the graph of the sigma instance. The best example is this one : https://github.com/sim51/react-sigma/blob/main/packages/storybook/stories/LayoutCircular.tsx If I take your example, it becomes something...

BTW, you don't use the `graph.addNode` correctly. Check the graphology doc about it : https://graphology.github.io/mutation.html#addnode You should replace your code by this : ``` graphData.nodes.forEach((node) => { const n =...