This section shows how to download charts via the Chart Toolbar and Grid API.
Users can use the 'Download Chart' Chart Toolbar item to download the rendered chart in the browser.

Note that the downloaded chart image will be in a PNG format.
There are two ways to download the chart image using the Grid API as shown below:
You can use the downloadChart(params) API to download the chart image in the browser.
Alternatively for programmatic use-cases, the getChartImageDataURL(params) API returns the chart
image as string (base64 encoded); this is ideal for persisting to a back-end, or opening/presenting
the chart image statically.
The example below demonstrates how you can retrieve images rendered from the chart in multiple formats.
getChartImageDataURL()downloadChart()getChartImageDataURL()Continue to the next section to learn about: Chart Tool Panel API.