cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

How to remove /suppress menu bars from distribution analysis plots using JSL

The output report generated by running a Process Capability analysis creates multiple, stacked, menu options to aid in interacting with the histogram and offers additional analysis options. When printing or saving the graph for reporting purposes these menu bars may not  be required and it would be helpful to suppress them from being displayed above the graph.  What is the best approach to remove all of triangle menu bars that are included in the Capability report view (Distribution Platform title, Process Capability title, Histogram title, etc), to create a cleaner graph for printing (ex. to pdf, etc).  I am aware of the Set and Show Title options in JSL, but have not been able to figure out if these are valid options to remove these titles .

2 ACCEPTED SOLUTIONS

Accepted Solutions
mmarchandFSLR
Level VI

Re: How to remove /suppress menu bars from distribution analysis plots using JSL

To remove the "menu bars" you're talking about, set the Outline Box title to "".  You can do all of them at once like this:

 

(Window( "Semiconductor Capability - Process Capability" ) << XPath( "//OutlineBox" )) << Set Title( "" );

 

mmarchandFSLR_0-1747429489577.png

 

 

mmarchandFSLR_1-1747429526982.png

 

View solution in original post

DSchweitzer
Level III

Re: How to remove /suppress menu bars from distribution analysis plots using JSL

Awesome!  That does exactly what I wanted.  Thank you!

View solution in original post

2 REPLIES 2
mmarchandFSLR
Level VI

Re: How to remove /suppress menu bars from distribution analysis plots using JSL

To remove the "menu bars" you're talking about, set the Outline Box title to "".  You can do all of them at once like this:

 

(Window( "Semiconductor Capability - Process Capability" ) << XPath( "//OutlineBox" )) << Set Title( "" );

 

mmarchandFSLR_0-1747429489577.png

 

 

mmarchandFSLR_1-1747429526982.png

 

DSchweitzer
Level III

Re: How to remove /suppress menu bars from distribution analysis plots using JSL

Awesome!  That does exactly what I wanted.  Thank you!

Recommended Articles