<?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: Control the graph, chart size in each New Window Tab. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/243038#M47964</link>
    <description>&lt;P&gt;When working with tabbed reports, I like to match the stretching behavior between the tabs.&amp;nbsp; Some reports, like Distribution, do not stretch by default.&amp;nbsp; If you have 10 reports stacked vertically, there is probably not enough vertical screen space to make them stretch effectively.&amp;nbsp; Adding a Scroll Box around the content of this tab will give you control over the size of the tab so that the tall content does not affect other tabs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;		Tab Page Box(
			"Distributions",
			&lt;STRONG&gt;Scroll Box(
				Size( 400, 600 ),&lt;/STRONG&gt;
				dt &amp;lt;&amp;lt; Distribution(
					Continuous Distribution( Column( :weight ) ),
					Nominal Distribution( Column( :age ) )
				),
				&lt;STRONG&gt;&amp;lt;&amp;lt;Set Auto Stretching( 1, 1 ),
				&amp;lt;&amp;lt;Set Max Size( 10000, 10000 )&lt;/STRONG&gt;
			)
		),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Reports like Graph Builder stretch by default, but this behavior can also be controlled.&amp;nbsp; If you want to keep Graph Builder from stretching to match the size of one of the other tabs, you can turn off the "Fit to Window" option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;		Tab Page Box(
			"Graph Builder",
			dt &amp;lt;&amp;lt; Graph Builder(
				Size( 800, 600 ),
				Show Control Panel( 0 ),
				&lt;STRONG&gt;Fit to Window( "Off" ),&lt;/STRONG&gt;
				Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
				Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) )
			)
		)
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You will probably only need one of these options in order to match the behavior between the tabs.&amp;nbsp; I would probably lean toward adding the ScrollBox around the non-stretchable reports.&amp;nbsp; If you don't add a ScrollBox around large reports, then the scrolling will occur at the window level.&amp;nbsp; The result would be that the tab titles scroll off the screen when you scroll down in the tall report, making it difficult to move back and forth between tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2020 14:06:48 GMT</pubDate>
    <dc:creator>danschikore</dc:creator>
    <dc:date>2020-01-27T14:06:48Z</dc:date>
    <item>
      <title>Control the graph, chart size in each New Window Tab.</title>
      <link>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/242940#M47946</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a problem with graph size in each tab of the new window.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have multiple tabs in a new window and the last tab contents a multiple vertical distribution chart (10 or more) enclose in a VListBox() function. The distribution chart are quite long in size and whenever I clicked to other tabs the graph in these tab seem to be stretched as the length of the distribution chart.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to control the size of each chart independently followed by tabs or to set size automatically fits the user view?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 11:30:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/242940#M47946</guid>
      <dc:creator>Black_Wheel</dc:creator>
      <dc:date>2020-01-26T11:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Control the graph, chart size in each New Window Tab.</title>
      <link>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/242941#M47947</link>
      <description>&lt;P&gt;I generally address a need like yours by sending the &lt;STRONG&gt;&amp;lt;&amp;lt; Frame Size( x pixels, y pixels )&lt;/STRONG&gt; the each Frame Box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is the problem about achieving the desired size in the first place or restoring the size after JMP changes it?&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 12:30:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/242941#M47947</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-01-26T12:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Control the graph, chart size in each New Window Tab.</title>
      <link>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/243038#M47964</link>
      <description>&lt;P&gt;When working with tabbed reports, I like to match the stretching behavior between the tabs.&amp;nbsp; Some reports, like Distribution, do not stretch by default.&amp;nbsp; If you have 10 reports stacked vertically, there is probably not enough vertical screen space to make them stretch effectively.&amp;nbsp; Adding a Scroll Box around the content of this tab will give you control over the size of the tab so that the tall content does not affect other tabs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;		Tab Page Box(
			"Distributions",
			&lt;STRONG&gt;Scroll Box(
				Size( 400, 600 ),&lt;/STRONG&gt;
				dt &amp;lt;&amp;lt; Distribution(
					Continuous Distribution( Column( :weight ) ),
					Nominal Distribution( Column( :age ) )
				),
				&lt;STRONG&gt;&amp;lt;&amp;lt;Set Auto Stretching( 1, 1 ),
				&amp;lt;&amp;lt;Set Max Size( 10000, 10000 )&lt;/STRONG&gt;
			)
		),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Reports like Graph Builder stretch by default, but this behavior can also be controlled.&amp;nbsp; If you want to keep Graph Builder from stretching to match the size of one of the other tabs, you can turn off the "Fit to Window" option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;		Tab Page Box(
			"Graph Builder",
			dt &amp;lt;&amp;lt; Graph Builder(
				Size( 800, 600 ),
				Show Control Panel( 0 ),
				&lt;STRONG&gt;Fit to Window( "Off" ),&lt;/STRONG&gt;
				Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
				Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) )
			)
		)
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You will probably only need one of these options in order to match the behavior between the tabs.&amp;nbsp; I would probably lean toward adding the ScrollBox around the non-stretchable reports.&amp;nbsp; If you don't add a ScrollBox around large reports, then the scrolling will occur at the window level.&amp;nbsp; The result would be that the tab titles scroll off the screen when you scroll down in the tall report, making it difficult to move back and forth between tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:06:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-the-graph-chart-size-in-each-New-Window-Tab/m-p/243038#M47964</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2020-01-27T14:06:48Z</dc:date>
    </item>
  </channel>
</rss>

