Range Bar Chart Generator
Chart displaying min-max ranges and time intervals, simplified version of Gantt chart
API Documentation
Request Endpoint
POST /en/api/tools/range-bar-chart
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| rangeData | textarea | Yes | JSON format range chart data. Supports date ranges (startDate/endDate) or numeric ranges (minValue/maxValue) |
| chartTitle | text | No | Main title of the range chart |
| orientation | select | No | - |
| showLabels | checkbox | No | Whether to display item labels |
| showValues | checkbox | No | Whether to display start/end values |
| showGrid | checkbox | No | Whether to display background grid lines |
| colorScheme | select | No | - |
| barHeight | text | No | Height/thickness of the range bars in pixels |
| animationDuration | text | No | Animation duration in milliseconds |
| chartHeight | text | No | Height of the chart area in pixels (for vertical orientation) |
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-range-bar-chart": {
"name": "range-bar-chart",
"description": "Chart displaying min-max ranges and time intervals, simplified version of Gantt chart",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=range-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]