<?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: Add check box on top of graph builder platform in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242444#M47884</link>
    <description>&lt;P&gt;The filters are not in the display box, they are just how JMP sort them. Here is the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = new window(			


Platform(
				dt,
				gb = Graph Builder(
					Size( 865, 775 ),
					Show Control Panel( 0 ),
					Fit to Window( "Off" ),
					Variables(
						X( :TIME_GTREC_135153 ),
						X( :TREC_GH_135147 ),
						Y( :GTREC_GH_135153 ),
						Y( :TREC_GH_135147 ),
						Group X( :Prod ),
						Overlay( :FAB, :DEPOP_ONT_SITE )
					),
					Elements( Position( 1, 1 ), Points( X, Y, Legend( 36 ) ), Smoother( X, Y, Legend( 48 ) ) ),
					Elements( Position( 1, 2 ), Points( X, Y, Legend( 38 ) ), Smoother( X, Y, Legend( 49 ) ) ),
					Elements( Position( 2, 1 ), Points( X, Y, Legend( 40 ) ), Line Of Fit( X, Y, Legend( 24 ), R²( 1 ) ) ),
					Elements( Position( 2, 2 ), Points( X, Y, Legend( 42 ) ), Smoother( X, Y, Legend( 51 ) ) ), 
	);

), 

ldf = gb &amp;lt;&amp;lt; Local Data Filter(
	Add Filter(
		columns( :FAB, :Prod ), //, :TIME_GTREC_135153 ),
		Display( :FAB, Size( 160, 60 ), List Display ),
		Display( :Prod, Size( 160, 60 ), List Display ),
		Where( :prod = "8PEQ" ), 
		//Display(&amp;nbsp;:TIME_GTREC_135153),
		Order By Count( :Prod )
	)
				

);

cso1 = gb &amp;lt;&amp;lt; Column Switcher( :FAB, legend_cls );
cso2 = gb &amp;lt;&amp;lt; Column Switcher( :GTREC_GH_135153, num_cls );
cso3 = gb &amp;lt;&amp;lt; Column Switcher( :TREC_GH_135147, num_cls );
cso4 = gb &amp;lt;&amp;lt; Column Switcher( :TIME_GTREC_135153, time_cls );
cso5 = gb &amp;lt;&amp;lt; Column Switcher( :Prod, {:Prod, :Const} );
cso1 &amp;lt;&amp;lt; Set Size( 200 );
cso1 &amp;lt;&amp;lt; Set NLines( 6 );
cso2 &amp;lt;&amp;lt; Set Size( 200 );
cso2 &amp;lt;&amp;lt; Set NLines( 15 );
cso3 &amp;lt;&amp;lt; Set Size( 200 );
cso3 &amp;lt;&amp;lt; Set NLines( 15 );
cso4 &amp;lt;&amp;lt; Set Size( 200 );
cso4 &amp;lt;&amp;lt; Set NLines( 10 );
cso5 &amp;lt;&amp;lt; Set Size( 200 );
cso5 &amp;lt;&amp;lt; Set NLines( 2 );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 23 Jan 2020 11:52:43 GMT</pubDate>
    <dc:creator>avner8943</dc:creator>
    <dc:date>2020-01-23T11:52:43Z</dc:date>
    <item>
      <title>Add check box on top of graph builder platform</title>
      <link>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242425#M47880</link>
      <description>&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a graph builder object with 3 column switchers and local data filter, I used "platform" to put it in a new window.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 200px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21114i1583779820719F01/image-size/small?v=v2&amp;amp;px=200" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wonder if there is an option to put "checkbox" on top of the graph builder in some free space? I know I can put it above/under/aside but I want it to stand out&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 08:35:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242425#M47880</guid>
      <dc:creator>avner8943</dc:creator>
      <dc:date>2020-01-23T08:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Add check box on top of graph builder platform</title>
      <link>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242436#M47882</link>
      <description>&lt;P&gt;It looks like you have your own display boxes about the Graph Builder with its data filters. Can't you extend that part of your display tree to add a Check Box? What is the code you use for the portion of the window above Graph Builder?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 11:09:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242436#M47882</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-01-23T11:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add check box on top of graph builder platform</title>
      <link>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242444#M47884</link>
      <description>&lt;P&gt;The filters are not in the display box, they are just how JMP sort them. Here is the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = new window(			


Platform(
				dt,
				gb = Graph Builder(
					Size( 865, 775 ),
					Show Control Panel( 0 ),
					Fit to Window( "Off" ),
					Variables(
						X( :TIME_GTREC_135153 ),
						X( :TREC_GH_135147 ),
						Y( :GTREC_GH_135153 ),
						Y( :TREC_GH_135147 ),
						Group X( :Prod ),
						Overlay( :FAB, :DEPOP_ONT_SITE )
					),
					Elements( Position( 1, 1 ), Points( X, Y, Legend( 36 ) ), Smoother( X, Y, Legend( 48 ) ) ),
					Elements( Position( 1, 2 ), Points( X, Y, Legend( 38 ) ), Smoother( X, Y, Legend( 49 ) ) ),
					Elements( Position( 2, 1 ), Points( X, Y, Legend( 40 ) ), Line Of Fit( X, Y, Legend( 24 ), R²( 1 ) ) ),
					Elements( Position( 2, 2 ), Points( X, Y, Legend( 42 ) ), Smoother( X, Y, Legend( 51 ) ) ), 
	);

), 

ldf = gb &amp;lt;&amp;lt; Local Data Filter(
	Add Filter(
		columns( :FAB, :Prod ), //, :TIME_GTREC_135153 ),
		Display( :FAB, Size( 160, 60 ), List Display ),
		Display( :Prod, Size( 160, 60 ), List Display ),
		Where( :prod = "8PEQ" ), 
		//Display(&amp;nbsp;:TIME_GTREC_135153),
		Order By Count( :Prod )
	)
				

);

cso1 = gb &amp;lt;&amp;lt; Column Switcher( :FAB, legend_cls );
cso2 = gb &amp;lt;&amp;lt; Column Switcher( :GTREC_GH_135153, num_cls );
cso3 = gb &amp;lt;&amp;lt; Column Switcher( :TREC_GH_135147, num_cls );
cso4 = gb &amp;lt;&amp;lt; Column Switcher( :TIME_GTREC_135153, time_cls );
cso5 = gb &amp;lt;&amp;lt; Column Switcher( :Prod, {:Prod, :Const} );
cso1 &amp;lt;&amp;lt; Set Size( 200 );
cso1 &amp;lt;&amp;lt; Set NLines( 6 );
cso2 &amp;lt;&amp;lt; Set Size( 200 );
cso2 &amp;lt;&amp;lt; Set NLines( 15 );
cso3 &amp;lt;&amp;lt; Set Size( 200 );
cso3 &amp;lt;&amp;lt; Set NLines( 15 );
cso4 &amp;lt;&amp;lt; Set Size( 200 );
cso4 &amp;lt;&amp;lt; Set NLines( 10 );
cso5 &amp;lt;&amp;lt; Set Size( 200 );
cso5 &amp;lt;&amp;lt; Set NLines( 2 );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Jan 2020 11:52:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242444#M47884</guid>
      <dc:creator>avner8943</dc:creator>
      <dc:date>2020-01-23T11:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add check box on top of graph builder platform</title>
      <link>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242446#M47885</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16830"&gt;@avner8943&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you wanted the checkbox close to the graphic display, I'd probably use the code below, assuming gb is the graph builder object and rgb is its report.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt; ( (rgb[PictureBox(1)] &amp;lt;&amp;lt; Parent ) &amp;lt;&amp;lt; Child ) &amp;lt;&amp;lt; Sib Append (mychb);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the picture. Script attached.&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="image.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21116i44F7B12F794F7C92/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 12:29:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-check-box-on-top-of-graph-builder-platform/m-p/242446#M47885</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2020-01-23T12:29:18Z</dc:date>
    </item>
  </channel>
</rss>

