highcharts-export-server
Version:
Convert Highcharts.JS charts into static image files.
43 lines (42 loc) • 707 B
JSON
{
"export": {
"height": 800,
"width": 1200,
"scale": 2,
"options": {
"chart": {
"type": "column"
},
"title": {
"text": "Size and scale (From CLI/POST)"
},
"yAxis": [
{
"title": {
"text": "Primary axis"
}
},
{
"opposite": true,
"title": {
"text": "Secondary axis"
}
}
],
"plotOptions": {
"column": {
"borderRadius": 5
}
},
"series": [
{
"data": [1, 3, 2, 4]
},
{
"data": [324, 124, 547, 221],
"yAxis": 1
}
]
}
}
}