Quadrant Chart Generator
Generate strategic quadrant charts for four-quadrant analysis, priority sorting, and strategic decision making
API Documentation
Request Endpoint
POST /en/api/tools/quadrant-chart
Request Parameters
| Parameter 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 |
Response Format
{
"result": "Processed HTML content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}
HTML:
HTML
AI MCP Documentation
Add this tool to your MCP server 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://elysiatools.com/mcp/sse?toolId=quadrant-chart",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
If you encounter any issues, please contact us at [email protected]