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 Semi Circle Donut Chart in Apps. The datasource used in this example can be found here.
{
"id": "semiCircleDonut",
"type": "highcharts",
"source": "raw_testSource",
"config": {
"title": {
"text": "Semi circle donut"
},
"exporting": {},
"chart": {
"type": "pie",
"polar": false
},
"plotOptions": {
"pie": {
"allowPointSelect": false,
"dataLabels": {
"distance": -30,
"style": {
"fontWeight": "bold",
"color": "white",
"textShadow": "0px 1px 2px black"
}
},
"innerSize": "50%",
"startAngle": -90,
"endAngle": 90,
"center": [
"50%",
"75%"
]
},
"series": {
"dataLabels": {
"enabled": true
},
"animation": false
}
},
"series": [
{
"name": "Tokyo",
"turboThreshold": 0
}
]
}
}