View ... this is not an official function, but you can fake it.
You may have a graph for the label, with a Field value that is always zero. You will also need to shift the category axis so that the labels do not hide each other.
Here is an example: http://jsfiddle.net/amcharts/XY2cD/
dataProvider :
[{ ... ,
"label": 0
}, ... ],
"graphs": [
{
"type": "column",
"fillAlphas": 0,
"lineAlpha": 0,
"title": "my sub group name",
"valueField": "label",
"showAllValueLabels": true,
"labelText": "\n[[title]]"
}, ... ],
"categoryAxis": {
"labelOffset": 15
}
(not my scene, I just found it online)
source
share