Documentation

onBeforeRender

occurs immediately before the component has been rendered

void onBeforeRender(object data){ ... };

Parameters

dataobjectthe DataStore object that the chart gets data from

Example

some.attachEvent("onBeforeRender", function(){
    //... some code here ... 
});

Details

Returning false from the event handler will block further processing.

See also

Back to top