<?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 remove graph builder label in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/551628#M76745</link>
    <description>&lt;P class="lia-align-left"&gt;If you are looking to remove the "Outline box" title, go to Edit &amp;gt; Properties and manually delete the Outline Box title. Tricky to find but useful if you are saving your graphs as PDF.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="remove outline box title.JPG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45959i1FCD4460DC1CE9D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="remove outline box title.JPG" alt="remove outline box title.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 01 Oct 2022 19:54:59 GMT</pubDate>
    <dc:creator>Santo</dc:creator>
    <dc:date>2022-10-01T19:54:59Z</dc:date>
    <item>
      <title>How to remove graph builder label</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/63498#M34017</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to append&amp;nbsp; a report file with a graph. When I save it as a pdf it has the graph but the grey box saying graph builder. I want to change this to a different label - for example "graph of area 1". Is it possible to do this? I know you can do it from the report and save it but I can't seem to find jsl code that does this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2018 09:54:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/63498#M34017</guid>
      <dc:creator>conroyco</dc:creator>
      <dc:date>2018-07-20T09:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove graph builder label</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/63502#M34019</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$sample_data/big class.jmp" );
gb = dt &amp;lt;&amp;lt; Graph Builder(
  Size( 518, 448 ),
  Show Control Panel( 0 ),
  Variables( X( :weight ), Y( :height ) ),
  Elements( Points( X, Y, Legend( 6 ) ), Smoother( X, Y, Legend( 7 ) ) )
);

gb &amp;lt;&amp;lt; showtitle( 1 );
gb &amp;lt;&amp;lt; title( "area 1" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Graph Builder sets the outline title" style="width: 482px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11628i8B105A7E6C02EC60/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.PNG" alt="Graph Builder sets the outline title" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Graph Builder sets the outline title&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;&amp;lt;showTitle(0) turns off the Height vs Weight text.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2018 10:20:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/63502#M34019</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2018-07-20T10:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove graph builder label</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/63505#M34022</link>
      <description>&lt;P&gt;Below are a couple ways to do this.&amp;nbsp; The first one was created by just clicking on the Outline Box titled "Graph Builder" and typing in the new title you specified you wanted to have.&amp;nbsp; After the change I clicked on the red triangle==&amp;gt;Save Script, and the first script below is what it gave me.&amp;nbsp; The second example below uses the JMP feature where within JSL one can change pretty much anything within the output of a platform.&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, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			OutlineBox,
			{Set Title( "Graph of Area 1" )}
		)
	)
);

// or

gb = Graph Builder(
	Size( 528, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) )
	)
);

report(gb)["Graph Builder"] &amp;lt;&amp;lt; set title("This is the new title"); 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Jul 2018 10:30:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/63505#M34022</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-20T10:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove graph builder label</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/551628#M76745</link>
      <description>&lt;P class="lia-align-left"&gt;If you are looking to remove the "Outline box" title, go to Edit &amp;gt; Properties and manually delete the Outline Box title. Tricky to find but useful if you are saving your graphs as PDF.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="remove outline box title.JPG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45959i1FCD4460DC1CE9D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="remove outline box title.JPG" alt="remove outline box title.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2022 19:54:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-graph-builder-label/m-p/551628#M76745</guid>
      <dc:creator>Santo</dc:creator>
      <dc:date>2022-10-01T19:54:59Z</dc:date>
    </item>
  </channel>
</rss>

