<?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: Getting rid of footnotes at end of graphbuilder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659421#M84866</link>
    <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible to incorporate it in this script? I am trying to append GB objects in ListBox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Variables( X( :Region ), Y( :OZONE ) ),
	Elements( Points( X, Y, Legend( 7 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			OutlineBox,
			{Set Title( "OZONE vs Region" ), Image Export Display( Normal )}
		),
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} ),
		Dispatch( {}, "X title", TextEditBox, {Set Text( "" )} ),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 5 ), Marker Drawing Mode( "Normal" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 17 Jul 2023 21:15:53 GMT</pubDate>
    <dc:creator>Kenobi</dc:creator>
    <dc:date>2023-07-17T21:15:53Z</dc:date>
    <item>
      <title>Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659212#M84848</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on the Cities dataset to build a journal of GraphBuilder objects. I have excluded a few rows, and it is clearly visible at the bottom of the graph (as shown in the image below) as "where 4 rows excluded". This has been built interactively, and I can remove the footnote manually. But since I am using a script, I want to incorporate a line in my code that does not show this footnote. Is there a way possible to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&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="Kenobi_1-1689604243698.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54811i6003E89534208302/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kenobi_1-1689604243698.png" alt="Kenobi_1-1689604243698.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 14:32:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659212#M84848</guid>
      <dc:creator>Kenobi</dc:creator>
      <dc:date>2023-07-17T14:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659224#M84849</link>
      <description>&lt;P&gt;I usually use XPath when hiding that text box&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

dt &amp;lt;&amp;lt; Select Rows([1,2]) &amp;lt;&amp;lt; Hide and Exclude(1) &amp;lt;&amp;lt; Clear Select;

gb = dt &amp;lt;&amp;lt; Run Script("Graph Builder Line and Bar Charts");

wait(2); // For demo purposes
where_tb = (gb &amp;lt;&amp;lt; Top Parent) &amp;lt;&amp;lt; XPath("//TextBox[contains(text(), 'Where(')]");
where_tb &amp;lt;&amp;lt; Visibility("Collapse");
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Jul 2023 14:41:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659224#M84849</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-07-17T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659226#M84850</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(gb &amp;lt;&amp;lt; Report)["Graph Builder", Text Box( 5 )] &amp;lt;&amp;lt; Visibility( "Hidden" )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;With "gb" being your Graph Builder platform, this seems to work.&amp;nbsp; I am not positive that it is always number 5, though.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 14:45:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659226#M84850</guid>
      <dc:creator>mmarchandTSI</dc:creator>
      <dc:date>2023-07-17T14:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659385#M84863</link>
      <description>&lt;P&gt;If you don't need the Footer at all, you can also disable it in the Preferences :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1689620674330.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54820iD958D9145A4381B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1689620674330.png" alt="hogi_0-1689620674330.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 19:04:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659385#M84863</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-07-17T19:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659421#M84866</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible to incorporate it in this script? I am trying to append GB objects in ListBox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Variables( X( :Region ), Y( :OZONE ) ),
	Elements( Points( X, Y, Legend( 7 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			OutlineBox,
			{Set Title( "OZONE vs Region" ), Image Export Display( Normal )}
		),
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} ),
		Dispatch( {}, "X title", TextEditBox, {Set Text( "" )} ),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 5 ), Marker Drawing Mode( "Normal" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Jul 2023 21:15:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659421#M84866</guid>
      <dc:creator>Kenobi</dc:creator>
      <dc:date>2023-07-17T21:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659422#M84867</link>
      <description>&lt;P&gt;Thank you for your reply. But I want to incorporate this as a functionality in an add-in that I am creating. It will be used by other team members, hence need a script to allow this.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 21:21:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659422#M84867</guid>
      <dc:creator>Kenobi</dc:creator>
      <dc:date>2023-07-17T21:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659424#M84868</link>
      <description>&lt;P&gt;Yes, just include&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Show Footer( 0 ),&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;in the GraphBuilder script, like Show Legend(0).&lt;BR /&gt;&lt;BR /&gt;If you found a way to apply the settings interactively via mouse clicks, you can then save the script via&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1689631358289.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54822i323355E3C228F3A2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1689631358289.png" alt="hogi_0-1689631358289.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and check which JSL command is used.&lt;BR /&gt;&lt;BR /&gt;By the way: mouse clicks ...&lt;BR /&gt;there are thousands of easter eggs hiding:&lt;BR /&gt;&lt;LI-MESSAGE title="CTRL/Alt/Shift + click/select/double click/right click" uid="570994" url="https://community.jmp.com/t5/Discussions/CTRL-Alt-Shift-click-select-double-click-right-click/m-p/570994#U570994" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 22:05:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659424#M84868</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-07-17T22:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Getting rid of footnotes at end of graphbuilder</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659669#M84887</link>
      <description>&lt;P&gt;Thank you very much. This works like a charm. Also, appreciate the link to shortcuts.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 12:46:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-rid-of-footnotes-at-end-of-graphbuilder/m-p/659669#M84887</guid>
      <dc:creator>Kenobi</dc:creator>
      <dc:date>2023-07-18T12:46:41Z</dc:date>
    </item>
  </channel>
</rss>

