<?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 Re: prev sib - how? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762208#M94102</link>
    <description>&lt;P&gt;Thank you, Jim :)&lt;/img&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 01 Jun 2024 16:32:11 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-06-01T16:32:11Z</dc:date>
    <item>
      <title>prev sib - how?</title>
      <link>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762198#M94098</link>
      <description>&lt;P&gt;I want to get in this display tree from the Axis Box to the TextEditBox:&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="hogi_0-1717254631475.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64720i9974504B5820ECED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1717254631475.png" alt="hogi_0-1717254631475.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but with the below code, I get stuck at step 2: going to the previous sibling:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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 = dt &amp;lt;&amp;lt; Graph Builder(

	Variables( X( :height ), Y( :weight )),
	Elements( Points( X, Y) )
);
	
show(start= report(gb)["Graph Builder",AxisBox(1)]);
show(step1 = start &amp;lt;&amp;lt; parent());
show(step2 = step1 &amp;lt;&amp;lt; Prev Sib()); // -&amp;gt; empty. doesn't work
show(step3 = step2 &amp;lt;&amp;lt; child());&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Jun 2024 15:13:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762198#M94098</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-06-01T15:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: prev sib - how?</title>
      <link>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762204#M94099</link>
      <description>&lt;P&gt;The Properties Widow does not appear to show all levels of the hierarchy.&amp;nbsp; The Show Tree Structure window has an additional layer that needs to be traversed to get to the TextBox() you are looking for&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="txnelson_0-1717258107284.png" style="width: 719px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64722i521A4C2E6822E507/image-dimensions/719x236?v=v2" width="719" height="236" role="button" title="txnelson_0-1717258107284.png" alt="txnelson_0-1717258107284.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I was able to get to the TextBox() with the below modifications to your illistration&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;show(start= report(gb)["Graph Builder",AxisBox(1)]);
show(step1 = start &amp;lt;&amp;lt; parent());
show(step2 = step1 &amp;lt;&amp;lt; parent());
show(step3 = step2 &amp;lt;&amp;lt; Prev Sib()); 
show(step4 = step3 &amp;lt;&amp;lt; child());
show(step5 = step4 &amp;lt;&amp;lt; child());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which has the below results&lt;/P&gt;
&lt;PRE&gt;start = Report(gb)["Graph Builder",AxisBox(1)] = DisplayBox[AxisBox];
step1 = start &amp;lt;&amp;lt; parent() = DisplayBox[GraphBuilderAxisBox];
step2 = step1 &amp;lt;&amp;lt; parent() = DisplayBox[GraphBuilderComponentBox];
step3 = step2 &amp;lt;&amp;lt; Prev Sib() = DisplayBox[GraphBuilderComponentBox];
step4 = step3 &amp;lt;&amp;lt; child() = DisplayBox[GraphBuilderTitleBox];
step5 = step4 &amp;lt;&amp;lt; child() = DisplayBox[TextEditBox];&lt;/PRE&gt;</description>
      <pubDate>Sat, 01 Jun 2024 16:11:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762204#M94099</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-06-01T16:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: prev sib - how?</title>
      <link>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762208#M94102</link>
      <description>&lt;P&gt;Thank you, Jim :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Jun 2024 16:32:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/prev-sib-how/m-p/762208#M94102</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-06-01T16:32:11Z</dc:date>
    </item>
  </channel>
</rss>

