apply_group_in_a_box_layout
Organize complex graph data into clustered layouts for clear visualization using Graphistry's group-in-a-box API. Input a graph ID to generate an updated visual representation.
Instructions
Apply group-in-a-box layout to the graph using Graphistry's group_in_a_box_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_group_in_a_box_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_group_in_a_box_layoutArguments",
"type": "object"
}