- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Revert Axis - Short Keys
Alternatively, you could send
<< revert scale()
if you just want to reset the scale - and keep additional changes.