cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Yass
Level II

Change the size of the Rapport JMP

Hello,

I'm trying to figure out how to change the size of the Rapport JMP display, like the size of the images.
Is there a way to adjust the display size?
If it helps, I attached some screenshots to show what I mean.

Capture d’écran 2024-07-22 105023.jpg

Capture d’écran 2024-07-22 105145.jpg

 

Best regards
Thank you

4 REPLIES 4
jthi
Super User

Re: Change the size of the Rapport JMP

One option is to use Spacer Box()

-Jarmo
Yass
Level II

Re: Change the size of the Rapport JMP

I think I didn't explain myself well. I'm not talking about the spaces between boxes, but about the screen display itself. I can't zoom in or out, the size stays fixed.

I'd like to see the entire report without having to use the slider to navigate.

Yass_0-1721996025540.jpeg

 

jthi
Super User

Re: Change the size of the Rapport JMP

And I gave answer to that, you can use Spacer Box() to modify the sizes of v/h list box for example. Depending on your report there might be other elements you could also modify to get what you want.

 

If the report doesn't fit to your screen, JMP will add scroll boxes

Names Default To Here(1);

nw = New Window("",
	V List Box(align("center"),
		Spacer Box(Size(100, 0)),
		H List Box(align("center"),
			Spacer Box(Size(0, 100)),
			Text Box("Here")
		)
	)
);


nw = New Window("",
	V List Box(align("center"),
		Spacer Box(Size(500, 0)),
		H List Box(align("center"),
			Spacer Box(Size(0, 500)),
			Text Box("Here")
		)
	)
);

nw = New Window("",
	V List Box(align("center"),
		Spacer Box(Size(1000, 0)),
		H List Box(align("center"),
			Spacer Box(Size(0, 1000)),
			Text Box("Here")
		)
	)
);

nw = New Window("",
	V List Box(align("center"),
		Spacer Box(Size(3000, 0)),
		H List Box(align("center"),
			Spacer Box(Size(0, 3000)),
			Text Box("Here")
		)
	)
);


-Jarmo
Yass
Level II

Re: Change the size of the Rapport JMP

Yes, I understand. I'm trying to find a way to make the report fit my screen automatically.

thank you for your help !