This article is outdated, you can access the most current version here: https://doc.onedata.de/apps/apps-docs/odml-documentation/AppBuilder/elements/HighchartsElement.html#type-highcharts
This is a sample configuration for a Donut Chart in Apps. The datasource used in this example can be found here.
{
"id": "pieChart",
"type": "highcharts",
"source": "raw_testSource",
"config": {
"title": {
"text": "Pie (Donut)"
},
"subtitle": {
"text": ""
},
"exporting": {},
"chart": {
"type": "pie",
"polar": false
},
"plotOptions": {
"pie": {
"allowPointSelect": true,
"cursor": true,
"innerSize": "60%",
"dataLabels": {
"enabled": true
}
},
"series": {
"animation": false
}
},
"series": [
{
"name": "Tokyo",
"turboThreshold": 0
}
],
"yAxis": {
"title": {}
}
}
}