cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
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

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

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