cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
Françoise
Level V

Dashboard window

hello,

 

I've a cript to make a dashboard 3x2.

When the script run, I would like to have the dashboard in a full screen , not in a small window.

How can I do it?

 

best regards

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: Dashboard window

I generally find it easier to add the script from the GUI interface.  The scripts are usually hidden in Dashboard Mode, but you can switch to Application Builder using the option in the red-triangle menu:

DashboardMode.png

 

Then you can switch to the "Scripts" tab for Module1 and enter the script there:

 

DashboardScript.png

 

 

I've attached a sample Dashboard that demonstrates this.

 

View solution in original post

Re: Dashboard window

It looks like your colleague has turned on the Report preferences for "Date Title on Output" and "Data Table Title on Output".  The latter option in this case is showing not only the data table name but also the additional text including the full SQL for the source of the table.  We will look into this further to see what improvements can be made, but I think the solution for now would be to turn this option off in Preferences.  I think the graphs are being stretched down to a size of 0 or possibly clipped, because the text is very large and is not stretchable.

View solution in original post

16 REPLIES 16
uday_guntupalli
Level VIII

Re: Dashboard window

@Françoise
 While creating the dashboard or with an existing dashboard , if you choose to edit and click on the outer most window, you can adjust its size . Hopefully this helps 

 

image.png

Best
Uday
uday_guntupalli
Level VIII

Re: Dashboard window

@Françoise
        If you already have a script , you can look for a Size function in the script and edit the arguments to change the window size 

Best
Uday
Françoise
Level V

Re: Dashboard window

I don't know where it is inside my script.

 

Is there at the end of the script: like this?

where is it and wich value?

 

Best regards

 

Sans titre.jpg

uday_guntupalli
Level VIII

Re: Dashboard window

@Françoise
       Can you make this edit on line 739 and see if this edits the window size 

Module1 << Set Min Size(2000,1000); 
Best
Uday
Françoise
Level V

Re: Dashboard window

Hello,

 

no change.

 

best regards

cwillden
Super User (Alumni)

Re: Dashboard window

Hi @Françoise,

Put this line in your script just after "thisModuleInstance << Create Objects;"

(thisModuleInstance << Get Box) << Maximize Window;
-- Cameron Willden
Françoise
Level V

Re: Dashboard window

Hello,

 

no change with that:

Sans titre1.jpg

cwillden
Super User (Alumni)

Re: Dashboard window

You really need to do it on a separate line and make sure you paste it exactly as written. The way you have it right now, you are sending the maximize window message to the module instance, and not the window containing the module instance. The << get box message is critical and so are the parentheses surrounding that code snippet.
-- Cameron Willden
Françoise
Level V

Re: Dashboard window

hello,

 

I've tried different ways.

 

no change.

 

best regards