Skip to content

Commit 1026d99

Browse files
authored
feat: optimise render graph height #13
feat: optimise render graph height
2 parents af2c6fc + a6e35f9 commit 1026d99

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

nebulagraph-gephi-exchange.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,9 @@ def get_gephi_graph(g) -> None:
529529
if g_is_renderable:
530530
# render with random file name
531531
graph_html = g.generate_html()
532+
graph_html.replace(
533+
"height: 600px", "height: 720px"
534+
)
532535
components.html(graph_html, height=720, scrolling=False)
533536

534537
for index in range(len(st.session_state.result_dfs)):

0 commit comments

Comments
 (0)