• refresh ()
    Reloads the data and repaints the chart.

    Example

    var chart = $("#chart").data("kendoChart");
    
    // refreshes the chart
    chart.refresh();
  • svg ()
    Returns the SVG representation of the current chart. 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 chart = $("#chart").data("kendoChart");
    var svgText = chart.svg();