Paul Brodersen

Results 119 comments of Paul Brodersen

Then you will probably need to write a custom class that handles `ResizeEvents`. ```python class ResizableGraph(EditableGraph): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.origin = kwargs["origin"] self.scale = kwargs["scale"] self.figure_width =...

> Also, when you say to rescale the node positions, I am not sure what do you mean. I have a newborn at home at the moment, so I am...

Hi @LBeghini, I haven't looked into this issue further. I will take another stab at the problem early next week (I am unavailable most of today).

My last proposed solution was actually quite close. I just had to manually force an update of the axis limits as `autoscale_view` was not doing its job for some reason....

Hi @LBeghini, I will close the issue for now as I haven't heard from you for a while, and the solution above seems to work (at least in my hands)....

Hi, thanks for raising the issue and explaining in detail what you mean. I get it now. ;-) > to allow each node artist to have attributes responsible for different...

> It doesn't look to have support for pointing edges to any kind of labels. That is correct. Edges point to nodes, not the node labels. Netgraph supports placing node...

Hi, Unfortunately, netgraph doesn't properly support multi-graphs, yet. However, it is a planned feature, albeit still some way off. Currently, if given a multi-graph, netgraph should raise a warning, remove...

Hi @kcharlie2, the `_handle_multigraphs` decorator should do the collapsing for you. What error did you run into before implementing this change? ```pyton def _handle_multigraphs(parser): """Raise a warning if the given...

> Curious to hear others' opinions on the above. Other than having write access, is there a compelling reason for the fork? Forking from popular projects costs a lot of...