occurs after an item is added to datastore
obj | object | data for a new item |
index | number | an index, at which new item was added |
myChart.attachEvent("onAfterAdd", function (obj, index){
//any custom logic here
});
Event name is case insensitive.
Back to top