I have a Dashboard and I want to group by GL Account. When I expand a line (by clicking on the + icon), I can see the different periods for each GL Account with the budget and actuals.
I would like that every line is already expanded when I open the Dashboard. I know that I can do it directly in ‘Dashboard’ and then saving and deploying but I need to do it programatically to use the same code later for another dashboard.
Well on form load you won’t have all your data there yet. You have to find a different event to place it or put it on. The data comes in later, perhaps put it on a button click? or an event that fires after your data is loaded.
Got it, I just added the function that josecgomez replied in his comment and I added it to another event when the data is loaded. It works great, thanks!