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 3D-Pie Chart in Apps. The datasource used in this example can be found here.
{
"id": "3dPieChart",
"type": "highcharts",
"source": "raw_testSource",
"config": {
"title": {
"text": "3D Pie chart"
},
"subtitle": {
"text": ""
},
"exporting": {},
"chart": {
"type": "pie",
"options3d": {
"enabled": true,
"alpha": 45,
"beta": 0
},
"polar": false
},
"plotOptions": {
"pie": {
"allowPointSelect": true,
"depth": 35,
"cursor": "pointer"
},
"series": {
"dataLabels": {
"enabled": true
},
"animation": false
}
},
"series": [
{
"name": "Tokyo",
"turboThreshold": 0
}
]
}
}