Labels are not visible in amCharts
My code for creating the chart :
var chart = AmCharts.makeChart("chartdiv", {
"type": "xy",
"graphs": [
{
"title": "Si (100) Si2p",
"type": "line",
"lineAlpha": 1,
"xField": "eV",
"yField": "intensity2",
"lineColor": '#FF0811'
}
],
"dataProvider": chartData,
"allLabels": peakInfo2
});
Please refer fiddle for full code
https://jsfiddle.net/gotquery/9rtx1qot/
I am unable to see the labels in the same. Inspect reveals that the labels are indeed placed but positioned way below the graph (I believe the transform property is setting the position wrongly.) Also there will be multiple graphs .. all of which are displayed properly but no labels.