How to get Webix Chart SVG string?

Hi,

Just exploring webix charts. I know webix does not generate a svg to show in the browser. But I want to use the chart that I generate in the browser in the back-end server. If I can get the svg that would be easier to scale.

Is there a way we can get the svg string? perhaps something like this?

    webix.toPNG($$("$chart1"), {
       download:false
    }).then(function(blob){
       // code that generates svg string
    });

check this
https://snippet.webix.com/8zdgn0p9

this returns the blob in base64 encoded string for a png. I am looking for the svg string for the blob.

yes, I misread your question.
as a solution you can try to convert to PDF and on server side convert to SVG.