<?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: influence of local data filter on graph height in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529734#M75309</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Fit to Window( "Off" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;is kind of a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then the local Data filter doesn't have an effect anymore.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But as it says, then I loose the "fit to window" functionality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Aug 2022 08:04:19 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2022-08-03T08:04:19Z</dc:date>
    <item>
      <title>influence of local data filter on graph height</title>
      <link>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529713#M75306</link>
      <description>&lt;P&gt;The size of a graph automatically adapts to the size of the window and the size of additinoal objects in the window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this auto-adjust, the local data filter has an influence on the minimum height of an image.&lt;/P&gt;&lt;P&gt;Please check the JSL code:&lt;/P&gt;&lt;P&gt;The graph opens with the desired size.&lt;/P&gt;&lt;P&gt;But when you open the local data filter with the grey triangle, the height of the graph increases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an option that prevents a graph from auto-adjusting to the height of the Local Data Filter?&lt;/P&gt;&lt;P&gt;How do I enable this option for all graphs that I create?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;BR /&gt;Graph Builder(
	Size( 329, 254 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 4 ) ), Smoother( X, Y, Legend( 5 ) ) ),
	Local Data Filter(
		Close Outline( 1 ),
		Add Filter(
			columns( :name ),
			Display( :name, N Items( 15 ), Find( Set Text( "" ) ) )
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:26:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529713#M75306</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-11T11:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: influence of local data filter on graph height</title>
      <link>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529734#M75309</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Fit to Window( "Off" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;is kind of a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then the local Data filter doesn't have an effect anymore.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But as it says, then I loose the "fit to window" functionality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2022 08:04:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529734#M75309</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-08-03T08:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: influence of local data filter on graph height</title>
      <link>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529771#M75314</link>
      <description>&lt;P&gt;If you are scripting a solution, you could consider a scrolling layout for the data filter component.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Report",
	Data Filter Context Box(
		H List Box(
			V Scroll Box(
				Size( 100 ),
				&amp;lt;&amp;lt;Set Stretch( "Off", "Fill" ),
				&amp;lt;&amp;lt;Set Show Empty( 0 ),
				dt &amp;lt;&amp;lt; Data Filter(
					Local,
					Close Outline( 1 ),
					Add Filter( columns( :name ), Display( :name, N Items( 15 ), Find( Set Text( "" ) ) ) )
				)
			),
			Graph Builder(
				Size( 329, 254 ),
				Show Control Panel( 0 ),
				Variables( X( :weight ), Y( :height ) ),
				Elements( Points( X, Y, Legend( 4 ) ), Smoother( X, Y, Legend( 5 ) ) )
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Aug 2022 12:11:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529771#M75314</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2022-08-03T12:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: influence of local data filter on graph height</title>
      <link>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529868#M75320</link>
      <description>&lt;P&gt;wonderful :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2022 14:55:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/influence-of-local-data-filter-on-graph-height/m-p/529868#M75320</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-08-03T14:55:14Z</dc:date>
    </item>
  </channel>
</rss>

