called before a chart is re-painted
data | object | a datastore, which is used for rendering |
myChart.attachEvent("onBeforeRender", function (data){
//any custom logic here
});
Event can be blocked, returning false will prevent normal reaction of component.
Event name is case insensitive
Back to top