Maxim Vorobjov

Results 25 comments of Maxim Vorobjov

Hi @brortao, all the SigmaJS events are transparently proxied, in that case it is native behavior. But you provided very nice solution on how to work around this with https://github.com/brortao/fediverse.space/commit/7182f14c742b8d14ccfc26921b0b9e82bd183290...

Unfortunately sigma animate is not implemented in this library. It can be added similar to dagre plugin: https://github.com/dunnock/react-sigma/blob/master/sigma-src/dagre.js Pull requests are very welcome!

hi @gopherine , sorry for long delay with response. Actually it was a bug caused by last storybook upgrade. I have fixed in the latest master commit, it should compile...

Hi @RogerTangos , sorry for long answer , got snowed under project. From the first look I do not see why that might happen, here is code from [sigma.js which...

Perhaps following example would help https://dunnock.github.io/react-sigma/?path=/story/plugins--edge-labels ? It is using curved edge for rendering and would work only for 2 edges in opposite directions though: ```jsx ``` otherwise importing that...

You could write custom component to get access to the sigma instance, which would allow you to perform any operation you can perform on sigma itself. There is example in...

Hi, unfortunately Sigma.js is tightly coupled with window, though if you import following script in the same namespace but before react-sigma it should do the job: https://github.com/jacomyal/sigma.js/blob/master/src/sigma.export.js On Wed, Sep...

Hi @oori , did it help? If so can you please close this issue, if not please let me know.. Thanks

Hi @alishir , I am travelling right till next Wednesday, though as a quick and dirty solution this plugin might be copied to `sigma-src` and wrapped by webpack config `sigma-src/webpack.sigma.js`...

Most likely all the extra time is spent building the quadtree index in SigmaJS: https://github.com/jacomyal/sigma.js/blob/9c940aa9b162c7aaaf8b25d88e236cb847c1633a/src/sigma.core.js#L548 For instance, if you are using `curve` or `curvedArrow` edges that takes extra time to...