score:2

If you are trying to reference data inside of the chart after initialization you need to reference the chart first. Then access the name property like you would with any other object property.

var myData = myChartName.series[0].data;

for ( var i = 0; i < myData.length; i++ )
{
  alert( myData[i].name );
}

Related Query

More Query from same tag