<?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: How to rename the outline box default to &amp;quot;graph builder&amp;quot; in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41550#M24258</link>
    <description>&lt;P&gt;After doing what Ian suggests you can look at the JSL code to see how JMP did it. &amp;nbsp;In Graph Builder click the red triangle and select Script &amp;gt; Copy Script. &amp;nbsp;Paste the script into a new JSL window and you'll see something like this (I added the open of big class):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Big Class.jmp");

Graph Builder(
	Size( 526, 451 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 16 ) ), Line( X, Y, Legend( 18 ) ) ),
	SendToReport(
		Dispatch( {}, "Graph Builder",
			OutlineBox, {Set Title( "This is my graph" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2017 14:59:18 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2017-07-06T14:59:18Z</dc:date>
    <item>
      <title>How to rename the outline box default to "graph builder"</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41540#M24253</link>
      <description>&lt;P&gt;How do I rename the outline box on a graph builder that by default says "Graph Builder"&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 14:14:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41540#M24253</guid>
      <dc:creator>agonzales2021</dc:creator>
      <dc:date>2017-07-06T14:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename the outline box default to "graph builder"</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41542#M24254</link>
      <description>&lt;P&gt;See &lt;STRONG&gt;Help&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Scripting Index&lt;/STRONG&gt;. Change the drop-down menu in the upper left corner to &lt;STRONG&gt;Display Box&lt;/STRONG&gt;. Select &lt;STRONG&gt;Outline Box&lt;/STRONG&gt; in the left-most list. Now you see the entire protocol for this class. Look for the &lt;STRONG&gt;Set&lt;/STRONG&gt;... message that you need.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 14:30:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41542#M24254</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2017-07-06T14:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename the outline box default to "graph builder"</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41544#M24255</link>
      <description>&lt;P&gt;I have tried this already and it isn't working&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 14:34:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41544#M24255</guid>
      <dc:creator>agonzales2021</dc:creator>
      <dc:date>2017-07-06T14:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename the outline box default to "graph builder"</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41545#M24256</link>
      <description>&lt;P&gt;If you are doing it interactively, you can just double click and type in the new name.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 14:37:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41545#M24256</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-07-06T14:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename the outline box default to "graph builder"</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41548#M24257</link>
      <description>&lt;P&gt;Using JSL, and as Mark said:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
gb = dt &amp;lt;&amp;lt; Graph Builder(Variables( X( :weight ), Y( :height ) ));
Wait(2);
Report(gb)[OutlineBox(1)] &amp;lt;&amp;lt; setTitle("New Title");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Jul 2017 14:42:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41548#M24257</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-07-06T14:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename the outline box default to "graph builder"</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41550#M24258</link>
      <description>&lt;P&gt;After doing what Ian suggests you can look at the JSL code to see how JMP did it. &amp;nbsp;In Graph Builder click the red triangle and select Script &amp;gt; Copy Script. &amp;nbsp;Paste the script into a new JSL window and you'll see something like this (I added the open of big class):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Big Class.jmp");

Graph Builder(
	Size( 526, 451 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 16 ) ), Line( X, Y, Legend( 18 ) ) ),
	SendToReport(
		Dispatch( {}, "Graph Builder",
			OutlineBox, {Set Title( "This is my graph" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 14:59:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-the-outline-box-default-to-quot-graph-builder-quot/m-p/41550#M24258</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-07-06T14:59:18Z</dc:date>
    </item>
  </channel>
</rss>

