download_chart
Generate and save chart images to local files using Chart.js configurations for data visualization needs.
Instructions
Download a chart image to a local file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| config | Yes | Chart configuration object | |
| outputPath | Yes | Path where the chart image should be saved |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Chart configuration object",
"type": "object"
},
"outputPath": {
"description": "Path where the chart image should be saved",
"type": "string"
}
},
"required": [
"config",
"outputPath"
],
"type": "object"
}