Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Resize screen objects to fit with screen size:

Hi, I had developed the qlikview applicatin on small screen desktop ...Now I am using little big screen desktop..but When I opend qvw application in new big screen monitor , qlikview document objects are not resizing to fit in big screen monitor. please let me know solution for this if any one the know the solution for it.

thanks in advnace.

10 Replies
sreenivas
Creator III
Creator III

View--> Click on  Fit Zoom to Window

Not applicable
Author

Thanks for the reply Sreenivas,

That we have to do manually right?. Is there any property to set in qlikview so that while openings application itself It should get resized to the appropriate screen size ?

lucas4bi
Partner - Creator
Partner - Creator

You can create a macro that runs each time the document opens, like this:

ActiveDocument.ActiveSheet.FitZoomToWindow

ActiveDocument.ActiveSheet.ApplyZoomToAllSheets

This way the zoom is applied to all sheets and you don't have to mind anymore if you change your screen

alec1982
Specialist II
Specialist II

Hi,

I tried to follow your instructions and created a macro as follow in the module:

Sub ZoomToFitWindow()

ActiveDocument.ActiveSheet.FitZoomToWindow

ActiveDocument.ActiveSheet.ApplyZoomToAllSheets

End Sub

Then in the document setting I called the macro on open by calling module name: ZoomToFitWindow

It didn't work!

Any idea?

Best,

Alec

Anonymous
Not applicable
Author

Badr

BEWARE:  Macro's like this only work in IE Plugin mode, not AJAX mode.  So in the QV Desktop always when testing check how it behaves using Web View as well as normal mode.

It is unpleasant to spend time developing something in QV Desktop only to find it don't work with users addicted to Chrome.

Best Regards,     Bill

alec1982
Specialist II
Specialist II

Bill,

Thank you for the feedback. Do you have any solution for me?

Also, It didn't work using Qlikview Designer.. I am wondering If i have anything wrong on my macro

Best,

Badr

Anonymous
Not applicable
Author

Badr

Always design your dashboards for the smallest resolution monitor it will be used on, this used to be 1024 but in some organisations with money to splash it is now bigger.  I have a huge desktop monitor which is great, but always design for 1024.

Some suggestions:

  • Look up Stephen Few on the web and read his books on data visualisation, or at the least his blog posts
  • If you have more data than 1024 allows never force people to scroll to the right, scrolling down is less painful to users but still worth avoiding if at all possible
  • Read Stephen Few again
  • Surf the web and look what other web sites do, does this website auto size ?  How about Facebook ?
  • Handling differing monitor resolutions is a perennial issue and is not just a QlikView quirk.

Best Regards,     Bill

alec1982
Specialist II
Specialist II

Bill,

Thank you for the details.. I am just interested in testing the macro and find why it is not working.

Best,

Badr

Anonymous
Not applicable
Author

Badr

Hopefully somebody else will be able to assist you,

Best Regards,     Bill