Fires before the canvas is painted. This event can be cancelled. "return false;" to cancel the event.
Default: null.
Type: Function.
Parameters:
e: jQuery.Event object
Code Example:
Supply a function as an option.
$("#gauge").wijgauge({
painted: function(e){}
});
Bind to the event by type: wijgaugepainted
$("#gauge").bind("wijgaugepainted", function(e){});