<?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: Frame size with Multiple graphs in List box in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261645#M51239</link>
    <description>&lt;P&gt;Worked perfectly! Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2020 18:55:00 GMT</pubDate>
    <dc:creator>rmiyasato</dc:creator>
    <dc:date>2020-04-27T18:55:00Z</dc:date>
    <item>
      <title>Frame size with Multiple graphs in List box</title>
      <link>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261447#M51189</link>
      <description>&lt;P&gt;I plot 3 graphs for every VISUAL_ID. One for Resistance, one for DRP, and one for Temperature. The problem I'm having is that when there are multiple VISUAL_IDs, the graphs become very small. I set graph size in the Graph Builder, but that seems to be&amp;nbsp;distributed over all the graphs. The width stays constant among all graphs, but the length of each graph varies depending on how many VISUAL_IDs are plotted. I would like all the graphs to be the same size of 500x1000, no matter how many VISUAL_IDs are plotted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Resistance - Application",
	H List Box(
		
		Graph Builder(
			Size(500, 1000),
			Show Control Panel( 0 ),
			Show Legend( 0 ),
			Automatic Recalc( 0 ),
			Variables( X( :STRESS_TIME_HOUR_QTY ), Y( :RESISTANCE_OHM_QTY ), Page( :VISUAL_ID ) ),
			Elements( Points( X, Y, Legend( 6 ) ) )
		), 
		
		Graph Builder(
			Size(500, 1000),
			Show Control Panel( 0 ),
			Show Legend( 0 ),
			Automatic Recalc( 0 ),
			Variables( X( :STRESS_TIME_HOUR_QTY ), Y( :DRP ), Page( :VISUAL_ID ) ),
			Elements( Points( X, Y, Legend( 4 ) ) )
		), 
		
		Graph Builder(
			Size(500, 1000),
			Show Control Panel( 0 ),
			Show Legend( 0 ),
			Automatic Recalc( 0 ),
			Variables( X( :STRESS_TIME_HOUR_QTY ), Y( :TEMPERATURE_OVEN_CELSIUS_QTY ), Page( :VISUAL_ID ) ),
			Elements( Points( X, Y, Legend( 6 ) ) )
		)
		
		
		
	)
		


)&amp;lt;&amp;lt; save Journal(path1 || "Resistance.jrn");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 26 Apr 2020 22:36:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261447#M51189</guid>
      <dc:creator>rmiyasato</dc:creator>
      <dc:date>2020-04-26T22:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Frame size with Multiple graphs in List box</title>
      <link>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261466#M51195</link>
      <description>&lt;P&gt;This may be a long way around, but the below script will output each graph at a 500x500 size, and will stack the separate pages on top of each other, with the different graph builder instances being horizontally arranged.&amp;nbsp; It uses a totally different methodology than using the Page capability in Graph Builder, but it gives the same output but with a standard size graph size per page.&lt;/P&gt;
&lt;P&gt;The example uses the Big Class data table, and I only define 2 graphs instead of your example of 3 graphs, but the expansion would be simple.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Current Data Table();

Summarize( page = by( :sex ) );

New Window( "Resistance - Application", hlb = H List Box() );
	
bb = Border Box( top( 10 ), bottom( 10 ), Left( 10 ), Right( 10 ), sides( 15 ) ,
vlb = V List Box());
For( i = 1, i &amp;lt;= N Items( page ), i++,
	vlb &amp;lt;&amp;lt; append(
		Eval(
			Parse(
				"gb = dt &amp;lt;&amp;lt; Graph Builder(
			Size(500, 500),
			Show Control Panel( 0 ),
			Show Legend( 0 ),
			Automatic Recalc( 0 ),
			Variables( X( :age ), Y( :weight ) ),
			Elements( Points( X, Y, Legend( 6 ) ) ),where(:sex == \!""
				 || page[i] || "\!"));"
			)
		)
	)
);
hlb &amp;lt;&amp;lt; append (bb );

bb = Border Box( top( 10 ), bottom( 10 ), Left( 10 ), Right( 10 ), sides( 15 ) ,
vlb = V List Box());
For( i = 1, i &amp;lt;= N Items( page ), i++,
	vlb &amp;lt;&amp;lt; append(
		Eval(
			Parse(
				"gb = dt &amp;lt;&amp;lt; Graph Builder(
			Size(500, 500),
			Show Control Panel( 0 ),
			Show Legend( 0 ),
			Automatic Recalc( 0 ),
			Variables( X( :age ), Y( :Height ) ),
			Elements( Points( X, Y, Legend( 6 ) ) ),where(:sex == \!""
				 || page[i] || "\!"));"
			)
		)
	)
);
hlb &amp;lt;&amp;lt; append (bb );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 00:40:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261466#M51195</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-04-27T00:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Frame size with Multiple graphs in List box</title>
      <link>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261645#M51239</link>
      <description>&lt;P&gt;Worked perfectly! Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 18:55:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Frame-size-with-Multiple-graphs-in-List-box/m-p/261645#M51239</guid>
      <dc:creator>rmiyasato</dc:creator>
      <dc:date>2020-04-27T18:55:00Z</dc:date>
    </item>
  </channel>
</rss>

