Data Visualization
Generate strategic quadrant charts for four-quadrant analysis, priority sorting, and strategic decision making
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/quadrant-chart' \
-H 'Content-Type: application/json' \
-d '{"chartData":"JSON format:\n[{"label": "Product A", "x": 75, "y": 80, "size": 12, "category": "High Priority"},\n{"label": "Product B", "x": 25, "y": 60, "size": 10, "category": "Medium Priority"}]\n\nor text format:\nProduct A,75,80,12,High Priority\nProduct B,25,60,10,Medium Priority","chartTitle":"Enter chart title...","xAxisLabel":"Importance","yAxisLabel":"Urgency","quadrantLabels":"High Priority, High Impact, Low Impact, Low Priority","quadrantColors":"#e8f5e8,#fef3e8,#fef3e8,#e8f5e8","pointSize":"8","xAxisMin":0,"xAxisMax":0,"yAxisMin":0,"yAxisMax":0,"chartSize":"600","opacity":"0.8","backgroundColor":"#ffffff","gridColor":"#e0e0e0","showGrid":true,"showLabels":true,"showAxes":true,"showLegend":true,"groupByCategory":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/quadrant-chart| Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Data points for the quadrant chart. Each point needs x, y coordinates, optional size and category. |
| chartTitle | text | No | Title that will be displayed above the chart |
| xAxisLabel | text | No | Label for the X-axis |
| yAxisLabel | text | No | Label for the Y-axis |
| quadrantLabels | text | No | Labels for the four quadrants (top-right, top-left, bottom-left, bottom-right). Separate with commas or use JSON array. |
| quadrantColors | text | No | Background colors for the four quadrants (top-right, top-left, bottom-left, bottom-right). Separate with commas or use JSON array. |
| pointSize | number | No | Default size for data points in pixels |
| xAxisMin | number | No | Minimum value for X-axis (leave empty for auto-scale) |
| xAxisMax | number | No | Maximum value for X-axis (leave empty for auto-scale) |
| yAxisMin | number | No | Minimum value for Y-axis (leave empty for auto-scale) |
| yAxisMax | number | No | Maximum value for Y-axis (leave empty for auto-scale) |
| chartSize | number | No | Size of the square chart in pixels |
| opacity | number | No | Opacity of data points (0.1 to 1.0) |
| backgroundColor | color | No | Background color for the chart container |
| gridColor | color | No | Color for the grid lines |
| showGrid | checkbox | No | Display grid lines for better readability |
| showLabels | checkbox | No | Display labels in each quadrant |
| showAxes | checkbox | No | Display X and Y axes lines |
| showLegend | checkbox | No | Display legend when grouping by category |
| groupByCategory | checkbox | No | Color points by category and show legend |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-quadrant-chart": {
"name": "quadrant-chart",
"description": "Generate strategic quadrant charts for four-quadrant analysis, priority sorting, and strategic decision making",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=quadrant-chart",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "quadrant-chart",
"arguments": {
"chartData": "JSON format:\n[{"label": "Product A", "x": 75, "y": 80, "size": 12, "category": "High Priority"},\n{"label": "Product B", "x": 25, "y": 60, "size": 10, "category": "Medium Priority"}]\n\nor text format:\nProduct A,75,80,12,High Priority\nProduct B,25,60,10,Medium Priority",
"chartTitle": "Enter chart title...",
"xAxisLabel": "Importance",
"yAxisLabel": "Urgency",
"quadrantLabels": "High Priority, High Impact, Low Impact, Low Priority",
"quadrantColors": "#e8f5e8,#fef3e8,#fef3e8,#e8f5e8",
"pointSize": "8",
"xAxisMin": 0,
"xAxisMax": 0,
"yAxisMin": 0,
"yAxisMax": 0,
"chartSize": "600",
"opacity": "0.8",
"backgroundColor": "#ffffff",
"gridColor": "#e0e0e0",
"showGrid": true,
"showLabels": true,
"showAxes": true,
"showLegend": true,
"groupByCategory": false
}
}
}Questions or issues? Contact [email protected]