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