As shown above, when exporting the charts as images/PDFs using server-side Export Handlers, there are two actions that you can choose from:
- Download to end user - Return the generated image/PDF back to the client (browser) for downloading
- Save on server disk - Save the image on server-disk and return the URL of the same to callback JavaScript functions
Please note that in both cases, the chart first needs to render in a browser, before the bitmap snapshot can be sent to server for processing. You CANNOT directly generate an image of chart on server, without actually rendering it in browser. |