<?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: Failed to add text below Graph Builder using script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692843#M87839</link>
    <description>&lt;P&gt;It does get added, but the place is something which isn't shown&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1698824331801.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58169i74ED601B537B50ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1698824331801.png" alt="jthi_0-1698824331801.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Depending where you want to see the text, you can append it into other displayboxes in within the window. Graph Builder Outline box like Jim suggested or within the ListBox&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(:age), Y(:height)));
rep = Report(gb);
(rep &amp;lt;&amp;lt; parent) &amp;lt;&amp;lt; append(Text Edit Box("=== Below ==="));&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 01 Nov 2023 07:41:51 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2023-11-01T07:41:51Z</dc:date>
    <item>
      <title>Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692816#M87837</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recently updated from JMP 16 -&amp;gt; JMP 17 and the following script on line 5 is failing for me. I am not seeing the ' === below === ' below my graph builder. This used to work in JMP 16.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas on what happened or what I am missing? Appreciate the help in advance!&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="yewhoo93_0-1698821932916.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58157iFB74D689493E9652/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yewhoo93_0-1698821932916.png" alt="yewhoo93_0-1698821932916.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yewhoo93_1-1698821989686.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58158iFB45A88758768A2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yewhoo93_1-1698821989686.png" alt="yewhoo93_1-1698821989686.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Nov 2023 07:03:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692816#M87837</guid>
      <dc:creator>yewhoo93</dc:creator>
      <dc:date>2023-11-01T07:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692837#M87838</link>
      <description>&lt;P&gt;Try adding it after the Outline Box(), not after the whole report&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

biv = dt &amp;lt;&amp;lt; Graph Builder( Variables( X( :age ), Y( As Column( :Height ) ) ) );
rbiv = Report( biv );
rbiv["Graph Builder"] &amp;lt;&amp;lt; append( Text Edit Box( "=== Below ===" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1698823685793.png" style="width: 624px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58168i2E86E226A9B8F0A6/image-dimensions/624x448?v=v2" width="624" height="448" role="button" title="txnelson_0-1698823685793.png" alt="txnelson_0-1698823685793.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Nov 2023 07:28:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692837#M87838</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-11-01T07:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692843#M87839</link>
      <description>&lt;P&gt;It does get added, but the place is something which isn't shown&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1698824331801.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58169i74ED601B537B50ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1698824331801.png" alt="jthi_0-1698824331801.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Depending where you want to see the text, you can append it into other displayboxes in within the window. Graph Builder Outline box like Jim suggested or within the ListBox&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(:age), Y(:height)));
rep = Report(gb);
(rep &amp;lt;&amp;lt; parent) &amp;lt;&amp;lt; append(Text Edit Box("=== Below ==="));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Nov 2023 07:41:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/692843#M87839</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-01T07:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/693359#M87871</link>
      <description>&lt;P&gt;Appreciate your quick response and the suggestions. They are along the right track to the solution I am looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do want to add it right below the heading of the x-axis (as shown in the screenshot below).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which listbox should I be appending the code too?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried looking at the Tree Structure and it didn't work when I appended right below the 'Age' 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="yewhoo93_2-1698908002179.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58247iF83046366152E37A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yewhoo93_2-1698908002179.png" alt="yewhoo93_2-1698908002179.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yewhoo93_4-1698908160713.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58249i3151FEF47A5C2D87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yewhoo93_4-1698908160713.png" alt="yewhoo93_4-1698908160713.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 06:56:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/693359#M87871</guid>
      <dc:creator>yewhoo93</dc:creator>
      <dc:date>2023-11-02T06:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/693378#M87873</link>
      <description>&lt;P&gt;Few questions which affect how this can be approached:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;What are you trying to outside of appending single text box?&lt;/LI&gt;
&lt;LI&gt;What type of report are you building?&lt;/LI&gt;
&lt;LI&gt;Why do you wish to append some additional text there?&lt;/LI&gt;
&lt;LI&gt;How it will be appended (automated script, manually run script,...)?&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 02 Nov 2023 07:36:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/693378#M87873</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-02T07:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/693521#M87886</link>
      <description>&lt;P&gt;Thanks for the quick reply Jarmo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to build a 'dashboard' requiring automation which appends multiple of these graph builders in one view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The additional text is important to be there because I'll have many different graphs I want to loop through and be dynamic when I post them to the dashboard.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 13:02:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/693521#M87886</guid>
      <dc:creator>yewhoo93</dc:creator>
      <dc:date>2023-11-02T13:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to add text below Graph Builder using script</title>
      <link>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/694331#M87943</link>
      <description>&lt;P&gt;Would it be easier to add the text box after V List Box with align("center") in which you contain both graph builder and the textbox?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("demo",
	vlb = V List Box(align("center"))
);

vlb &amp;lt;&amp;lt; Append(gb = dt &amp;lt;&amp;lt; Graph Builder(Variables(X(:age), Y(:height))));
vlb &amp;lt;&amp;lt; append(Text Edit Box("=== Below ==="));
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;there are also other methods depending on your full dashboard (H Center Box could work for example)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("demo",
	vlb = V List Box()
);

vlb &amp;lt;&amp;lt; Append(gb = dt &amp;lt;&amp;lt; Graph Builder(Variables(X(:age), Y(:height))));
vlb &amp;lt;&amp;lt; append(H Center Box(Text Edit Box("=== Below ===")));
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2023 18:18:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Failed-to-add-text-below-Graph-Builder-using-script/m-p/694331#M87943</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-03T18:18:20Z</dc:date>
    </item>
  </channel>
</rss>

