- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
Best regards
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Change the size of the Rapport JMP
One option is to use Spacer Box()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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")
)
)
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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 !