Occurs after the canvas is painted.
Default: null
Type: Function
Parameter:
e: A jQuery.Event object.
Code Example:
// Supply a function as an option.
$("#compositechart").wijcompositechart({painted: function(e) { } });
OR
// Bind to the event by type: wijcompositechartpainted
$("#compositechart").bind("wijcompositechartpainted", function(e) {} );