<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic JSL - Graph Builder - Capture FrameBox and Axis Boxes without labels, title, and legend? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310008#M56354</link>
    <description>&lt;P&gt;Hi JMP Community,&lt;/P&gt;&lt;P&gt;I'm working on a simple JSL script that assembles multiple plots into a 6 x 5 grid. While I get acceptable results by capturing the plot area using the following line of code:&amp;nbsp;&lt;EM&gt;img = gbr[FrameBox (1)] &amp;lt;&amp;lt; get picture&lt;/EM&gt;; where gbr is a Graph Builder report, I have not been able to find the right item to call in the Tree Structure to also capture the axis values (without the labels; see below an approximation of what I'd like to capture). Is there a direct capture method that I could use or do I need to capture the entire plot structure and "delete the unwanted elements? Or, is there a completely different method you would suggest?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2020-09-20 225333.png" style="width: 397px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26879i21F6CC1771B263C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2020-09-20 225333.png" alt="Annotation 2020-09-20 225333.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;TS&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:05:56 GMT</pubDate>
    <dc:creator>Thierry_S</dc:creator>
    <dc:date>2023-06-11T11:05:56Z</dc:date>
    <item>
      <title>JSL - Graph Builder - Capture FrameBox and Axis Boxes without labels, title, and legend?</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310008#M56354</link>
      <description>&lt;P&gt;Hi JMP Community,&lt;/P&gt;&lt;P&gt;I'm working on a simple JSL script that assembles multiple plots into a 6 x 5 grid. While I get acceptable results by capturing the plot area using the following line of code:&amp;nbsp;&lt;EM&gt;img = gbr[FrameBox (1)] &amp;lt;&amp;lt; get picture&lt;/EM&gt;; where gbr is a Graph Builder report, I have not been able to find the right item to call in the Tree Structure to also capture the axis values (without the labels; see below an approximation of what I'd like to capture). Is there a direct capture method that I could use or do I need to capture the entire plot structure and "delete the unwanted elements? Or, is there a completely different method you would suggest?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2020-09-20 225333.png" style="width: 397px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26879i21F6CC1771B263C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2020-09-20 225333.png" alt="Annotation 2020-09-20 225333.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;TS&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:05:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310008#M56354</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2023-06-11T11:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: JSL - Graph Builder - Capture FrameBox and Axis Boxes without labels, title, and legend?</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310055#M56360</link>
      <description>&lt;P&gt;Here is one approach......I attempted to use "Remove Axis Label" on the graph builder window, but it failed to work.&amp;nbsp; So I had to get a bit more specific.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="listbox.PNG" style="width: 630px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26883iC981C1289738D030/image-size/large?v=v2&amp;amp;px=999" role="button" title="listbox.PNG" alt="listbox.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");

gb = Graph Builder(
	Size( 528, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 6 ) ), Line Of Fit( X, Y, Legend( 8 ) ) )
);

gbr = gb &amp;lt;&amp;lt; report;
gbr[LegendBox(1)]&amp;lt;&amp;lt;delete;
gbr[GraphBuilderComponentBox(1)][TextEditBox(1)]&amp;lt;&amp;lt;set text("");
gbr[GraphBuilderTitleBox(3)][TextEditBox(1)]&amp;lt;&amp;lt;set text("");
gbr[GraphBuilderTitleBox(4)][TextEditBox(1)]&amp;lt;&amp;lt;set text("");

nwj=new window("The Picture",&amp;lt;&amp;lt;journal);
nwj&amp;lt;&amp;lt;append(gbr[ListBox(2)]&amp;lt;&amp;lt;get picture);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:24:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310055#M56360</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-09-21T13:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: JSL - Graph Builder - Capture FrameBox and Axis Boxes without labels, title, and legend?</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310069#M56361</link>
      <description>Hi Jim,&lt;BR /&gt;Thanks for the solution, it works exactly as advertised with the Big Class example but it returns some unexpected results when I run it on my specific plot elements: I will have to look in more details for the right graphic element to capture after the unwanted elements are peeled off.&lt;BR /&gt;Best,&lt;BR /&gt;TS</description>
      <pubDate>Mon, 21 Sep 2020 13:48:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Graph-Builder-Capture-FrameBox-and-Axis-Boxes-without-labels/m-p/310069#M56361</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-09-21T13:48:10Z</dc:date>
    </item>
  </channel>
</rss>

