Spider Chart Generator
Generate simplified spider (radar) charts for multi-dimensional data comparison and analysis
API Documentation
Request Endpoint
POST /en/api/tools/spider-chart-generator
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Data for the spider chart. Supports JSON array or simple dimension:value text format |
| chartTitle | text | No | Title that will be displayed above the chart |
| colorScheme | select | No | - |
| lineColor | color | No | Primary color for the spider chart line (overrides color scheme) |
| chartSize | number | No | Size of the square chart in pixels |
| maxValue | number | No | Maximum value for the chart scale (leave empty for auto) |
| minValue | number | No | Minimum value for the chart scale |
| lineWidth | number | No | Width of the spider chart line in pixels |
| pointSize | number | No | Size of the data points in pixels |
| animationDuration | number | No | Duration of chart animation in milliseconds |
| backgroundColor | color | No | Background color for the chart container |
| gridColor | color | No | Color for the grid lines |
| fillArea | checkbox | No | Fill the area inside the spider chart |
| showGrid | checkbox | No | Display grid lines for better readability |
| showValues | checkbox | No | Display values on the data points |
| showLegend | checkbox | No | Display a data table below the chart |
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-spider-chart-generator": {
"name": "spider-chart-generator",
"description": "Generate simplified spider (radar) charts for multi-dimensional data comparison and analysis",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=spider-chart-generator",
"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]