Grouped Bar Chart Generator
Generate grouped bar charts for comparing multiple categories side by side, perfect for multi-category comparisons and comparative analysis
API Documentation
Request Endpoint
POST /en/api/tools/grouped-bar-chart
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Multi-series data with categories and series arrays. Each series should have the same number of data points as categories. |
| chartTitle | text | No | Title that will be displayed above the chart |
| chartType | select | No | - |
| barColors | text | No | Colors for different series (comma-separated hex colors). Leave empty for default colors. |
| backgroundColor | color | No | Background color for the chart container |
| gridColor | color | No | Color for the grid lines |
| barWidth | number | No | Width of individual bars in pixels (auto-adjusts if too large) |
| groupSpacing | number | No | Spacing between different groups in pixels |
| chartHeight | number | No | Height of the chart in pixels |
| maxValue | number | No | Maximum value for axis (leave empty for auto-scale) |
| minValue | number | No | Minimum value for axis (leave empty for auto-detect) |
| 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 the actual values on or near bars |
| valuePosition | select | No | - |
| 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-grouped-bar-chart": {
"name": "grouped-bar-chart",
"description": "Generate grouped bar charts for comparing multiple categories side by side, perfect for multi-category comparisons and comparative analysis",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=grouped-bar-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]