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 Pie Chart in Apps. The datasource used in this example can be found here.
{
"id": "pieChart",
"type": "highcharts",
"source": "raw_testSource",
"config": {
"title": {
"text": "Pie chart"
},
"exporting": {},
"chart": {
"type": "pie"
},
"series": [
{
"name": "Tokyo",
"turboThreshold": 0
}
],
"plotOptions": {
"series": {
"animation": false
}
}
}
}