cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

How to collapse Outline box for a graph builder box

Hi,

I'm hoping a seasoned JMP JSL scripter can help me with a problem. I'm trying to collapse the outline box around a graph builder chart in JSL. In different words, I'm trying to click the blue triangle for a graph builder chart by using JSL.

Many thanks!
Steve
2 REPLIES 2
mpb
mpb
Level VII

Re: How to collapse Outline box for a graph builder box

Create your graph in graph builder manually. Close the blue diamond outline manually. Click the red triangle and choose Script > Save Script to Script Window. That script will show you the code for running the graph builder and closing the outline node.

Re: How to collapse Outline box for a graph builder box

Many thanks, MPB. That was helpful.

And to perhaps make this post more helpful to others...

I manually created the graph builder, collapsed the graph with the blue triangle, and got the script. The pertinent line was:

SendToReport( Dispatch( {}, "Graph Builder", OutlineBox, Close( 1 ) ) )

I saw that the command was "close(1)". In JSL, I then made a reference to the report of my graphbuilder object. Then I sent the outlinebox the message to close.

rpt=graphbuilder<rpt[outlinebox(1)]<
Note that I found out it was outlinebox(1) by using the "show tree structure" menu item that I accessed by right clicking on the blue triangle>>edit>>show tree structure.

Recommended Articles