You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/rendering.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,8 @@ You can provide these either as a percentage of the available space (eg. ``"80%"
35
35
36
36
Further you can change the layout of the graph using the ``layout`` parameter, which can be set to one of the following values:
37
37
38
-
* ``Layout.FORCE_DIRECTED`` - Nodes are arranged using the Force-Directed algorithm, which simulates physical forces
39
-
* ``Layout.HIERARCHICAL`` - Arranges nodes by the directionality of their relationships, creating a tree-like structure
38
+
* ``Layout.FORCE_DIRECTED`` - Nodes are arranged using the Force-Directed algorithm, which simulates physical forces. To customize the layout, use `ForceDirectedOptions` via `layout_options`.`
39
+
* ``Layout.HIERARCHICAL`` - Arranges nodes by the directionality of their relationships, creating a tree-like structure. To customize the layout use `HierarchicalLayoutOptions` via `layout_options`.`
40
40
* ``Layout.COORDINATE`` - Arranges nodes based on coordinates defined in `x` and `y` properties on each node.
41
41
42
42
Another thing of note is the ``max_allowed_nodes`` parameter, which controls the maximum number of nodes that is allowed
f"Mandatory `{entity_type.__name__}` parameter '{loc}' is missing. Expected one of {entity_type.model_fields[loc].validation_alias.choices} to be present"# type: ignore
174
+
)
175
+
eliferr["type"] =="extra_forbidden":
176
+
raiseValueError(
177
+
f"Unexpected `{entity_type.__name__}` parameter '{loc}' with provided input '{err['input']}'. "
0 commit comments