We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d76007f commit 6ea115aCopy full SHA for 6ea115a
src/neo4j-arc/graph-visualization/GraphVisualizer/Graph/visualization/Visualization.ts
@@ -234,6 +234,12 @@ export class Visualization {
234
)
235
236
this.forceSimulation.updateRelationships(this.graph)
237
+ // The onGraphChange handler does only repaint relationship color
238
+ // not width and caption, since it requires taking into account surrounding data
239
+ // since the arrows have different bending depending on how the nodes are
240
+ // connected. We work around that by doing an additional full render to get the
241
+// new stylings
242
+ this.render()
243
}
244
245
zoomByType = (zoomType: ZoomType): void => {
0 commit comments