<?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 &amp;quot;Where&amp;quot; from graph builder report window in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64736#M34250</link>
    <description>&lt;P&gt;All you need to do, is to find the top of the display tree, and then delete the first text box, which is the display of the Where clause.&amp;nbsp; See below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;graph = panel Box();

Build_chart = Function( {param},
	gb = dt1 &amp;lt;&amp;lt; Graph Builder(
		Size( 1024, 725 ),
		Show Control Panel( 0 ),
		Auto Stretching( 0 ),
		Automatic Recalc( 1 ),
		Variables(
			X( :pm_start_date ),
			Y( :task_value ),
			Group X( :parameter ),
			Elements( Points( X, Y, Legend( 1 ), Jitter( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
			Where( :parameter == param )
		)
	);
	tp = Report( gb ) &amp;lt;&amp;lt; topparent;
	tp[Text Box( 1 )] &amp;lt;&amp;lt; delete;
);

For( j = 1, j &amp;lt;= N Items( param_list ), j++,
	graph &amp;lt;&amp;lt; append( Report( Build_chart( param_list[j] ) ) )
);

 
chartreport = New Window( "test ",
	ob = H List Box( graph)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 29 Jul 2018 12:53:38 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2018-07-29T12:53:38Z</dc:date>
    <item>
      <title>how to remove "Where" from graph builder report window</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64734#M34249</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a script, that creates multiple graphs by parameter and put them in a report window.&lt;/P&gt;&lt;P&gt;the output creates a text above the outline box "Where parameter=param", i would like to remove that. how can i do that?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11738iF47F1A6BFD50AF58/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the snippet of relevant code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;graph = panel Box();

Build_chart = Function( {param},
	gb = dt1 &amp;lt;&amp;lt; Graph Builder(
		Size( 1024, 725 ),
		Show Control Panel( 0 ),
		Auto Stretching( 0 ),
		Automatic Recalc( 1 ),
		Variables( X( :pm_start_date ), Y( :task_value ),Group X( :parameter ),
		Elements( Points( X, Y, Legend( 1 ), Jitter( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
		Where( :parameter == param ) 

	)
			
);

For( j = 1, j &amp;lt;= N Items( param_list ), j++,
	graph &amp;lt;&amp;lt; append( Report( Build_chart( param_list[j] ) ) )
);

 
chartreport = New Window( "test ",
	ob = H List Box( graph)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks in advanced!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 09:20:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64734#M34249</guid>
      <dc:creator>samshaw</dc:creator>
      <dc:date>2018-07-29T09:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove "Where" from graph builder report window</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64736#M34250</link>
      <description>&lt;P&gt;All you need to do, is to find the top of the display tree, and then delete the first text box, which is the display of the Where clause.&amp;nbsp; See below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;graph = panel Box();

Build_chart = Function( {param},
	gb = dt1 &amp;lt;&amp;lt; Graph Builder(
		Size( 1024, 725 ),
		Show Control Panel( 0 ),
		Auto Stretching( 0 ),
		Automatic Recalc( 1 ),
		Variables(
			X( :pm_start_date ),
			Y( :task_value ),
			Group X( :parameter ),
			Elements( Points( X, Y, Legend( 1 ), Jitter( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
			Where( :parameter == param )
		)
	);
	tp = Report( gb ) &amp;lt;&amp;lt; topparent;
	tp[Text Box( 1 )] &amp;lt;&amp;lt; delete;
);

For( j = 1, j &amp;lt;= N Items( param_list ), j++,
	graph &amp;lt;&amp;lt; append( Report( Build_chart( param_list[j] ) ) )
);

 
chartreport = New Window( "test ",
	ob = H List Box( graph)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 29 Jul 2018 12:53:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64736#M34250</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-29T12:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove "Where" from graph builder report window</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64742#M34255</link>
      <description>&lt;P&gt;amazing!! it worked!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the part i was missing&lt;/P&gt;&lt;PRE class=" language-jsl"&gt;&lt;CODE class="  language-jsl"&gt;&lt;SPAN class="token messages"&gt;&amp;lt;&amp;lt;topparent&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;what does it do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you again!&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 19:49:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64742#M34255</guid>
      <dc:creator>samshaw</dc:creator>
      <dc:date>2018-07-29T19:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove "Where" from graph builder report window</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64743#M34256</link>
      <description>&lt;P&gt;The definition, taken from the Scripting Index, for Top Parent is&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Returns the root parent of the Display Box&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 20:05:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-remove-quot-Where-quot-from-graph-builder-report-window/m-p/64743#M34256</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-29T20:05:59Z</dc:date>
    </item>
  </channel>
</rss>

