setOptions
Sets the current gauge options.
Parameters
options Object
The gauge settings to update.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    pointer: [{
        value: 20
    }]
});
$("#gauge").data("kendoLinearGauge").setOptions({ theme: 'metro' });
</script>
In this article