Fires after the canvas is painted.
Type: Function
Default: null
Parameters:
e: A jQuery.Event object
Code example:
// Supply a function as an option.
$("#scatterchart").wijscatterchart({beforeserieschange: function(e, data) { } });
OR
// Bind to the event by type: wijscatterchartbeforeserieschange
$("#scatterchart").bind("wijscatterchartbeforeserieschange", function(e, data) {} );