Bubble Chart Generator
Generate customizable bubble charts from data with three dimensions (x, y, size)
API Documentation
Request Endpoint
POST /en/api/tools/bubble-chart-generator
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Data for the chart. Can be JSON array or simple label,x,y,size pairs |
| chartTitle | text | No | Title that will be displayed above the chart |
| colorScheme | select | No | - |
| bubbleColor | color | No | Primary color for the bubbles (used if color scheme is not rainbow) |
| bubbleOpacity | number | No | Opacity of bubbles (0.1 to 1.0) |
| bubbleScale | number | No | Scale factor for bubble sizes |
| backgroundColor | color | No | Background color for the chart container |
| gridColor | color | No | Color for the grid lines |
| chartHeight | number | No | Height of the chart in pixels |
| xMaxValue | number | No | Maximum value for X-axis (leave empty for auto-scale) |
| yMaxValue | number | No | Maximum value for Y-axis (leave empty for auto-scale) |
| xMinValue | number | No | Minimum value for X-axis (leave empty for auto-scale) |
| yMinValue | number | No | Minimum value for Y-axis (leave empty for auto-scale) |
| xAxisLabel | text | No | Label for the X-axis |
| yAxisLabel | text | No | Label for the Y-axis |
| showGrid | checkbox | No | Display grid lines for better readability |
| showValues | checkbox | No | Display labels on bubbles |
| showLegend | checkbox | No | Display a legend 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-bubble-chart-generator": {
"name": "bubble-chart-generator",
"description": "Generate customizable bubble charts from data with three dimensions (x, y, size)",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=bubble-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]