Generic eCharts View SVG Rendering

Hello @VAGR_ISK,

Unfortunately, I do not believe you are able to export the view as an SVG directly, but you can add a tooltip to download a PNG of the view (which you can then convert to SVG if needed)

Add the following to your echarts code:

  toolbox: {
    feature: {
      saveAsImage: {
        name: "default_name",
        show: true,
      }
    }
  }

You can find more info below from comment from @armingrudd :

Hope this helps,
TL

3 Likes