exportChart(Object options)

Export the chart as image (jpg / png).


Parameters:
        options:
         {
             format: String (“jpg” | “png”),
             toDataURL: Boolean (default false),
             fileName: String
         }
Example: chart.exportChart({format: “jpg”});

Note:
  • Chart should be rendered before you can use this method.

var  chart =  new  CanvasJS("container",
{
    .
    .
    .
    .
});
chart.render();

chart.exportChart({format: "png"});
Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question