cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Dear Team,

While using tabstrip component in Analytics Designer , is it possible to not load the data sources of other tabs through scripting while the 1st tab is getting loaded .

This is in regards to the performance of the dashboard . At the moment when I check the performance of the dashboard , all the tabs and the corresponding data sources are getting loaded simultaneously.

BR,

A Singh

0 Likes
View Entire Topic
saurabh_sonawane
Active Contributor
0 Likes

Hi,

please try the below code = onInitialization funcation

Application.setRefreshPaused([Chart_1.getDataSource()],true);

and write the below code onClick of tab trip 2

Application.setRefreshPaused([Chart_1.getDataSource()],false); Application.refreshData([Chart_1.getDataSource()]);

Thanks,

Saurabh S.