• redraw ()
    Redraws the gauge.

    Example

    var gauge = $("#radial-gauge").data("kendoRadialGauge");
    gauge.redraw();
  • svg ()

    Returns the SVG representation of the current gauge. The returned string is a self-contained SVG document that can be used as is or converted to other formats using tools like Inkscape and ImageMagick. Both programs provide command-line interface suitable for backend processing.

    Example

    var gauge = $("#radial-gauge").data("kendoRadialGauge");
    var svgText = gauge.svg();
  • value ()
    Change the value of the gauge.

    Example

    var gauge = $("#radial-gauge").data("kendoRadialGauge");
    gauge.redraw();