Line Chart Generator
Generate customizable multi-line charts from data with various styling options
API Documentation
Request Endpoint
POST /en/api/tools/line-chart-generator
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Data for the chart. Supports single line array, multi-line object, or simple text format |
| chartTitle | text | No | Title that will be displayed above the chart |
| curveType | select | No | - |
| lineColors | text | No | Colors for multiple lines (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 |
| lineWidth | number | No | Width of the line in pixels |
| chartHeight | number | No | Height of the chart in pixels |
| maxValue | number | No | Maximum value for Y-axis (leave empty for auto-scale) |
| minValue | number | No | Minimum value for Y-axis |
| 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 |
| showPoints | checkbox | No | Display data points on the line |
| showValues | checkbox | No | Display the actual values on data points |
| fillArea | checkbox | No | Fill the area under the line with color |
| 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-line-chart-generator": {
"name": "line-chart-generator",
"description": "Generate customizable multi-line charts from data with various styling options",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=line-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]