cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. ET on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Maerawlings
Level II

Revert Axis - Short Keys

Hello All!

 

Using JMP 17.

 

I am finding myself reverting axes constantly. I right click the axis-->Revert Axis to do this to both x and y.

 

Has anyone been able to setup short keys for this? I looked in our View/Customize/Menus and Toolbars/JMP Menu Editor under "Graph" and I do not see an option there.

 

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Revert Axis - Short Keys

You can most likely use a script like this in a shortcut (or toolbar)

(Current Report() << XPath("//AxisBox")) << Revert Axis;
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: Revert Axis - Short Keys

You can most likely use a script like this in a shortcut (or toolbar)

(Current Report() << XPath("//AxisBox")) << Revert Axis;
-Jarmo
hogi
Level XIII

Re: Revert Axis - Short Keys

Alternatively, you could send

<< revert scale()

if you just want to reset the scale - and keep additional changes.

Recommended Articles