From 2e62570714ba6c2e9be8fd9440a7081a1ed68b42 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 31 Aug 2025 20:34:30 +0200 Subject: [PATCH] Set CooldownTicks to Infinity --- src/graph.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/graph.js b/src/graph.js index 0c4de3f..efbc1b7 100644 --- a/src/graph.js +++ b/src/graph.js @@ -28,6 +28,8 @@ export const generate_graph = (data, node_click_handler) => { graph.d3Force("link").distance(35); // graph.warmupTicks([10]); // graph.cooldownTicks([0]); + graph.cooldownTicks(Infinity); + graph.d3ReheatSimulation(); reset_graph_view(graph);