Save Chart
Renders the current chart and saves it internally.
Overview
This procedure saves a previously created chart as a PNG image file and stores it internally, allowing the chart to be accessed later or shared with others.
Syntax
Below is a line-by-line overview of the automation syntax. Expand each line to learn more.
Examples
1. Basic Save
In this example, the chart is saved with the default DPI of 600.
create a bar chart where
the categories are ["Jan", "Feb", "Mar", "Apr"]
the values are [12500, 15800, 14200, 16700]
the title is "Monthly Sales"
save the chart
2. Save With Custom DPI
Here, the chart is saved with a custom DPI of 900.
create a pie chart where
the categories are ["Product A", "Product B", "Product C"]
the values are [45.5, 32.1, 22.4]
the title is "Market Share Analysis"
the legend is "enabled"
save the chart with
the dpi is 900
Last updated
Was this helpful?