Fixed the layout dropdown for the graph. (#393)

This commit is contained in:
2023-11-16 17:43:54 +01:00
committed by GitHub
parent e257799f77
commit cf1c8ea508

View File

@ -270,18 +270,22 @@ def layout() -> list[html]:
), ),
dcc.Dropdown( dcc.Dropdown(
[ [
"Spring", "Spring (2d)",
"Spring (3d)",
# "Bipartite", # "Bipartite",
"Circular", "Circular (2d)",
"Kamada Kawai", "Circular (3d)",
"Kamada Kawai (2d)",
"Kamada Kawai (3d)",
# "Planar", # "Planar",
"Random", "Random (2d)",
"Shell (only 2D)", "Random (3d)",
"Shell (2d)",
# "Spectral", # "Spectral",
"Spiral (only 2D)", "Spiral (2d)",
# "Multipartite" # "Multipartite"
], ],
"Spring", "Spring (2d)",
id="dropdown_layout", id="dropdown_layout",
className="dropdown_style", className="dropdown_style",
persistence=True, persistence=True,