Ability to download data for all charts from embedded dashboard level
When we embed a whole dashboard using charts SDK, we have an option to download the dashboard as Image using getImage() api. However, we have no option to download underlying data of all charts.
Tried Alternate:
Dashboard API has getAllChart API which returns an array of DashboardChart objects, which contain only the chartId (from the metadata perspective of the chart). We can download the data using getData(), however we don't get business context (i.e. title of chart etc) to establish the relation of specific data with specific chart.
So the request is to offer a feature to download all charts data from embedded dashboard OR expose DashboardChart.getTitle() that returns title of the chart.