Skip to content

Commit 1f3747d

Browse files
committed
Fix documentation of interactive_organic layout key
1 parent 5b2783e commit 1f3747d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The main class `Neo4jGraphWidget` provides the following API:
5555
| `widget_layout` | Can be used to specify general widget appearance through css attributes. See ipywidget's [`layout`](https://ipywidgets.readthedocs.io/en/stable/examples/Widget%20Layout.html#the-layout-attribute) for more information. | `None` |
5656
| `overview_enabled` | Enable graph overview component. Default behaviour depends on cell width. | `None` |
5757
| `context_start_with` | Start with a specific side-panel opened in the interactive widget. Starts with closed side-panel by default. | `None` |
58-
| `layout` | Can be used to specify a general default node and edge layout. Available algorithms are: "circular", "hierarchic", "organic", "interactive_organic_layout", "orthogonal", "radial", "tree", "map", "orthogonal_edge_router", "organic_edge_router" | `organic` |
58+
| `layout` | Can be used to specify a general default node and edge layout. Available algorithms are: "circular", "hierarchic", "organic", "interactive_organic", "orthogonal", "radial", "tree", "map", "orthogonal_edge_router", "organic_edge_router" | `organic` |
5959

6060
### Methods
6161

@@ -65,7 +65,7 @@ The main class `Neo4jGraphWidget` provides the following API:
6565
- `layout (Optional[str])`: The graph layout that is used. This overwrites the general layout in this specific graph instance. The following arguments are supported:
6666
- `hierarchic`
6767
- `organic`
68-
- `interactive_organic_layout`
68+
- `interactive_organic`
6969
- `circular`
7070
- `circular_straight_line`
7171
- `orthogonal`

src/yfiles_jupyter_graphs_for_neo4j/Yfiles_Neo4j_Graphs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self, driver: Optional[Any] = None, widget_layout: Optional[Any] =
4444
- "circular_straight_line"
4545
- "hierarchic"
4646
- "organic"
47-
- "interactive_organic_layout"
47+
- "interactive_organic"
4848
- "orthogonal"
4949
- "radial"
5050
- "tree"
@@ -133,7 +133,7 @@ def show_cypher(self, cypher: str, layout: Optional[str] = None, **kwargs: Dict[
133133
- "circular_straight_line"
134134
- "hierarchic"
135135
- "organic"
136-
- "interactive_organic_layout"
136+
- "interactive_organic"
137137
- "orthogonal"
138138
- "radial"
139139
- "tree"

0 commit comments

Comments
 (0)