apply_tree_layout
Organize graph data into a layered hierarchical structure using the tree_layout API, providing a clear visualization of relationships and connections for analysis.
Instructions
Apply a tree (layered hierarchical) layout to the graph using Graphistry's tree_layout API.
Args:
graph_id (str): The ID of the graph to modify.
Returns:
dict: { 'graph_id': ..., 'url': ... } with the updated visualization URL.
Example:
apply_tree_layout(graph_id)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
graph_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"graph_id": {
"title": "Graph Id",
"type": "string"
}
},
"required": [
"graph_id"
],
"title": "apply_tree_layoutArguments",
"type": "object"
}