highcharts-export-server
Version:
Convert Highcharts.JS charts into static image files.
45 lines (44 loc) • 753 B
JSON
{
"export": {
"options": {
"chart": {
"type": "column",
"height": 600,
"width": 1000
},
"exporting": {
"scale": 2
},
"title": {
"text": "Size and scale (From chart options)"
},
"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
}
]
}
}
}