Check documentation for the latest version of dhtmlxSuite onBeforeRender DHTMLX Docs

onBeforeRender

called before a chart is re-painted

void onBeforeRender(object data);
dataobjecta datastore, which is used for rendering

Example

myChart.attachEvent("onBeforeRender", function (data){
//any custom logic here
});

Details

Event can be blocked, returning false will prevent normal reaction of component.

Event name is case insensitive

Back to top