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