renderAsString
Sets the preferred rendering engine. If it is not supported by the browser, the Gauge will switch to the first available mode.
The supported values are:
- "svg" - renders the widget as inline SVG document, if available
 - "canvas" - renders the widget as a Canvas element, if available.
 
Example - Render as Canvas, if supported
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    renderAs: "canvas",
    pointer: {
        value: 50
    },
    scale: {
        min: 0,
        max: 100
    }
});
</script>
In this article