<?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: Remove Data Filter and Range Plot Text from Graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377853#M62767</link>
    <description>&lt;P&gt;I figured it out.&amp;nbsp; If I click on the text to be removed in the graph, it gets highlighted in the tree structure.&amp;nbsp; Then it was a matter of removing the text boxes like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fp_win[textbox(35)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(28)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(21)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(14)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(7)]  &amp;lt;&amp;lt; delete box();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;fp_win points to the new window() containing the graphs.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Apr 2021 15:00:30 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2021-04-19T15:00:30Z</dc:date>
    <item>
      <title>Remove Data Filter and Range Plot Text from Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377840#M62764</link>
      <description>&lt;P&gt;I have a series of graphs that look like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pmroz_0-1618842902187.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32174i2156181C1A5F4165/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pmroz_0-1618842902187.png" alt="pmroz_0-1618842902187.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I'm using a local data filter to display several graphs in one window.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I remove the text at the bottom of the graph?&amp;nbsp; I've looked through the tree structure but can't find this text.&lt;/P&gt;
&lt;P&gt;The error bars are constructed by using Summary Statistic: Median and Error Bars: Range.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:13:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377840#M62764</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2023-06-11T11:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Data Filter and Range Plot Text from Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377849#M62765</link>
      <description>Hi,&lt;BR /&gt;As far as I can tell, there is no specific structure that specifically captures the Filter information at the bottom of the GB plots. However, I wonder if using the opposite approach of only capturing the GraphBuilderBox (exact id of this element needs to be defined based on the structure of the GB plots) that does not contain the offending text could be meeting your goal. &lt;BR /&gt;Just a thought.&lt;BR /&gt;Best,&lt;BR /&gt;TS</description>
      <pubDate>Mon, 19 Apr 2021 14:54:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377849#M62765</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2021-04-19T14:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Data Filter and Range Plot Text from Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377853#M62767</link>
      <description>&lt;P&gt;I figured it out.&amp;nbsp; If I click on the text to be removed in the graph, it gets highlighted in the tree structure.&amp;nbsp; Then it was a matter of removing the text boxes like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fp_win[textbox(35)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(28)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(21)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(14)] &amp;lt;&amp;lt; delete box();
fp_win[textbox(7)]  &amp;lt;&amp;lt; delete box();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;fp_win points to the new window() containing the graphs.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:00:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377853#M62767</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2021-04-19T15:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Data Filter and Range Plot Text from Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377860#M62768</link>
      <description>&lt;P&gt;Another option might be to search for the text box(es):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(fp_win&amp;lt;&amp;lt; XPath("//TextBox[contains(text(),'Where')]")) &amp;lt;&amp;lt; delete box();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or, in an example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

dt = Open("$Sample_data/iris.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :Sepal length ), Y( :Species ) ),
	Elements( Line( X, Y, Legend( 6 ), Error Interval( "Range" ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :Petal length ),
			Where( :Petal length &amp;gt;= 1 &amp;amp; :Petal length &amp;lt;= 6.4083 )
		)
	),
	SendToReport(
		Dispatch( {}, "Graph Builder", FrameBox, {Reference Line Order( 3 )} )
	)
);

(gb &amp;lt;&amp;lt; XPath("//TextBox[contains(text(),'Where')]")) &amp;lt;&amp;lt; delete box();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:23:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-Data-Filter-and-Range-Plot-Text-from-Graph/m-p/377860#M62768</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2021-04-19T15:23:14Z</dc:date>
    </item>
  </channel>
</rss>

