This sample is to show how to call JavaScript function when the chart rendering is completed.
●Layout
<Column3DChart showDataTips="true" displayCompleteCallFunction="displayCallFunction">

●Script
function displayCallFunction()
{
	alert("Chart has been completely rendered !!");
}