<?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 Application builder - multiple graph builders using PAGE in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Application-builder-multiple-graph-builders-using-PAGE/m-p/347849#M59879</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've put together multiple time series plots using application builder. I've used PAGE to create a chart for each of my measurements in my data table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data table has been built by importing multiple csv files.&lt;/P&gt;&lt;P&gt;The issue I have is that only the first chart in the list is formatted as I've specified in the script (labels and axis formatting).&lt;/P&gt;&lt;P&gt;Any ideas why? Is this a result of using application builder vs just scripting it from scratch?&lt;/P&gt;&lt;P&gt;I've attached a screen grab, my script and a sample of the data.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;JMP App(
	Set Name( "Dashboard" ),
	Set Description( "Three reports arranged horizontally" ),
	Auto Launch( 1 ),
	Snap To Grid( 1 ),
	Show Grid( 1 ),
	Show Properties( 0 ),
	Show Sources( 0 ),
	Group By Category( 0 ),
	Dashboard Mode( 0 ),
	Parameters,
	Tables(
		DataTable1 = GuiTable(
			Set Path( "" ),
			Set Label( "Output Table" ),
			Set Location( "Current Data Table" ),
			Set Invisible( 0 )
		)
	),

	Script(JSL Quote(// This script is executed when the application is run.
// Named objects have been created for the application modules
// (for example, "Module1") and the pre-defined object
// "thisApplication" refers to the application object itself.
// Variables and functions declared here are scoped to the
// Application namespace.

)	),
	Allocate(
		Module1 = Plan(
			PreAllocate,
			Script(JSL Quote(				thisModuleInstance &amp;lt;&amp;lt; Create Objects;				Try(MainTabPage &amp;lt;&amp;lt; Set Scriptable Object(thisApplication));			
)			),
			Allocate(
				Border1 = Border Box();
				Scroll1 = Scroll Box();
				List1 = H List Box();
				Report1 = Platform(
					DataTable1,
					Graph Builder(
						Size( 500, 80000 ),
						Show Control Panel( 0 ),
						Legend Position( "Inside Left" ),
						Fit to Window( "Maintain Aspect Ratio" ),
						Variables(
							X( :Date ),
							Y( :LevelObj ),
							Page(
								:Unit,
								Order By(
									:LevelObj,
									Descending,
									Order Statistic( "Mean" )
								)
							)
						),
						Elements(
							Points( X, Y, Legend( 13 ) ),
							Smoother( X, Y, Legend( 14 ) )
						),
						SendToReport(
							Dispatch(
								{},
								"Date",
								ScaleBox( 2 ),
								{Format( "y/m/d", 10 ),
								Interval( "Day" ), Inc( 14 ),
								Minor Ticks( 1 )}
							)
						)
					)
				);
				Report2 = Platform(
					DataTable1,
					Graph Builder(
						Size( 500, 80000 ),
						Show Control Panel( 0 ),
						Legend Position( "Inside Left" ),
						Fit to Window( "Maintain Aspect Ratio" ),
						Variables(
							X( :Date ),
							Y( :Scan ),
							Y( :Model, Position( 1 ) ),
							Page(
								:Unit,
								Order By(
									:LevelObj,
									Descending,
									Order Statistic( "Mean" )
								)
							)
						),
						Elements(
							Points( X, Y( 1 ), Y( 2 ), Legend( 20 ) ),
							Smoother( X, Y( 1 ), Y( 2 ), Legend( 21 ) )
						),
						SendToReport(
							Dispatch(
								{},
								"Date",
								ScaleBox( 2 ),
								{Format( "y/m/d", 10 ),
								Interval( "Day" ), Inc( 14 ),
								Minor Ticks( 1 )}
							)
						)
					)
				);
				Report3 = Platform(
					DataTable1,
					Graph Builder(
						Size( 600, 80000 ),
						Show Control Panel( 0 ),
						Legend Position( "Inside Left" ),
						Fit to Window( "Maintain Aspect Ratio" ),
						Variables(
							X( :Date ),
							Y( :Offset, Side( "Right" ) ),
							Y( :OffPctofScan, Position( 1 ) ),
								Page(
								:Unit,
								Order By(
									:LevelObj,
									Descending,
									Order Statistic( "Mean" )
								)
								)
						),
						Elements(
							Points( X, Y( 2 ), Legend( 32 ) ),
							Smoother( X, Y( 2 ), Legend( 33 ) ),
							Points( X, Y( 1 ), Legend( 34 ) ),
							Smoother( X, Y( 1 ), Legend( 35 ) )
						),
												SendToReport(
							Dispatch(
								{},
								"Date",
								ScaleBox( 2 ),
								{Format( "y/m/d", 10 ),
								Interval( "Day" ), Inc( 14 ),
								Minor Ticks( 1 )}
							)
						)
					)
				);
			),
			Organize(
				Reparent( List1( Report3 ) );
				Reparent( List1( Report2 ) );
				Reparent( List1( Report1 ) );
				Reparent( Scroll1( List1 ) );
				Reparent( Border1( Scroll1 ) );
				Relocate( Border1( 210, 60 ) );
			),
			Initialize(
				Border1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Border1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Border1 &amp;lt;&amp;lt; Enabled( 1 );
				Border1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Border1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Border1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Border1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Border1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Border1 &amp;lt;&amp;lt; Visibility( "Visible" );
				Border1 &amp;lt;&amp;lt; Top( 1 );
				Border1 &amp;lt;&amp;lt; Bottom( 1 );
				Border1 &amp;lt;&amp;lt; Left( 1 );
				Border1 &amp;lt;&amp;lt; Right( 1 );
				Border1 &amp;lt;&amp;lt; Sides( 0 );
				Border1 &amp;lt;&amp;lt; Set Background Color( "None" );
				Border1 &amp;lt;&amp;lt; Set Background Fill( 0 );
				Scroll1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Scroll1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Scroll1 &amp;lt;&amp;lt; Enabled( 1 );
				Scroll1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Scroll1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Scroll1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Scroll1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Scroll1 &amp;lt;&amp;lt; User Resizable( {1, 1} );
				Scroll1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Scroll1 &amp;lt;&amp;lt; Visibility( "Visible" );
				Scroll1 &amp;lt;&amp;lt; Width( 1206 );
				Scroll1 &amp;lt;&amp;lt; Height( 765 );
				Scroll1 &amp;lt;&amp;lt; Set Auto Scrollable( 0 );
				Scroll1 &amp;lt;&amp;lt; Set Scrollers( 1, 1 );
				Scroll1 &amp;lt;&amp;lt; Set Show Empty( 1 );
				Scroll1 &amp;lt;&amp;lt; Set Clip Printing( 0 );
				Scroll1 &amp;lt;&amp;lt; Set Min Size( 72, 36 );
				Scroll1 &amp;lt;&amp;lt; Set Max Size( 30000, 30000 );
				Scroll1 &amp;lt;&amp;lt; Set Auto Stretching( 1, 1 );
				List1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				List1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				List1 &amp;lt;&amp;lt; Enabled( 1 );
				List1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				List1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				List1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				List1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				List1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				List1 &amp;lt;&amp;lt; Visibility( "Visible" );
				List1 &amp;lt;&amp;lt; set horizontal( 1 );
				Report1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Report1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report1 &amp;lt;&amp;lt; Enabled( 1 );
				Report1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Report1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Report1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Report1 &amp;lt;&amp;lt; Visibility( "Visible" );
				Report1 &amp;lt;&amp;lt; set horizontal( 0 );
				Report2 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Report2 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report2 &amp;lt;&amp;lt; Enabled( 1 );
				Report2 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Report2 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report2 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report2 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Report2 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Report2 &amp;lt;&amp;lt; Visibility( "Visible" );
				Report2 &amp;lt;&amp;lt; set horizontal( 0 );
				Report3 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Report3 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report3 &amp;lt;&amp;lt; Enabled( 1 );
				Report3 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Report3 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report3 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report3 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Report3 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Report3 &amp;lt;&amp;lt; Visibility( "Visible" );
				Report3 &amp;lt;&amp;lt; set horizontal( 0 );
			)
		)
	),
	Initialize(
		Module1 &amp;lt;&amp;lt; Auto Launch( 1 );
		Module1 &amp;lt;&amp;lt; Set Module Type( "Report" );
		Module1 &amp;lt;&amp;lt; Set Window Title( "^TABLENAME - ^APPNAME" );
		Module1 &amp;lt;&amp;lt; Set Min Size( 0, 0 );
		Module1 &amp;lt;&amp;lt; Set Max Size( 30000, 30000 );
		Module1 &amp;lt;&amp;lt; Set Auto Stretching( ., . );
	)
) &amp;lt;&amp;lt; Run&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Application multiple charts using page.png" style="width: 917px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29381iD2B1E2DD43885126/image-size/large?v=v2&amp;amp;px=999" role="button" title="Application multiple charts using page.png" alt="Application multiple charts using page.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 22:03:04 GMT</pubDate>
    <dc:creator>spudton</dc:creator>
    <dc:date>2023-06-09T22:03:04Z</dc:date>
    <item>
      <title>Application builder - multiple graph builders using PAGE</title>
      <link>https://community.jmp.com/t5/Discussions/Application-builder-multiple-graph-builders-using-PAGE/m-p/347849#M59879</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've put together multiple time series plots using application builder. I've used PAGE to create a chart for each of my measurements in my data table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data table has been built by importing multiple csv files.&lt;/P&gt;&lt;P&gt;The issue I have is that only the first chart in the list is formatted as I've specified in the script (labels and axis formatting).&lt;/P&gt;&lt;P&gt;Any ideas why? Is this a result of using application builder vs just scripting it from scratch?&lt;/P&gt;&lt;P&gt;I've attached a screen grab, my script and a sample of the data.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;JMP App(
	Set Name( "Dashboard" ),
	Set Description( "Three reports arranged horizontally" ),
	Auto Launch( 1 ),
	Snap To Grid( 1 ),
	Show Grid( 1 ),
	Show Properties( 0 ),
	Show Sources( 0 ),
	Group By Category( 0 ),
	Dashboard Mode( 0 ),
	Parameters,
	Tables(
		DataTable1 = GuiTable(
			Set Path( "" ),
			Set Label( "Output Table" ),
			Set Location( "Current Data Table" ),
			Set Invisible( 0 )
		)
	),

	Script(JSL Quote(// This script is executed when the application is run.
// Named objects have been created for the application modules
// (for example, "Module1") and the pre-defined object
// "thisApplication" refers to the application object itself.
// Variables and functions declared here are scoped to the
// Application namespace.

)	),
	Allocate(
		Module1 = Plan(
			PreAllocate,
			Script(JSL Quote(				thisModuleInstance &amp;lt;&amp;lt; Create Objects;				Try(MainTabPage &amp;lt;&amp;lt; Set Scriptable Object(thisApplication));			
)			),
			Allocate(
				Border1 = Border Box();
				Scroll1 = Scroll Box();
				List1 = H List Box();
				Report1 = Platform(
					DataTable1,
					Graph Builder(
						Size( 500, 80000 ),
						Show Control Panel( 0 ),
						Legend Position( "Inside Left" ),
						Fit to Window( "Maintain Aspect Ratio" ),
						Variables(
							X( :Date ),
							Y( :LevelObj ),
							Page(
								:Unit,
								Order By(
									:LevelObj,
									Descending,
									Order Statistic( "Mean" )
								)
							)
						),
						Elements(
							Points( X, Y, Legend( 13 ) ),
							Smoother( X, Y, Legend( 14 ) )
						),
						SendToReport(
							Dispatch(
								{},
								"Date",
								ScaleBox( 2 ),
								{Format( "y/m/d", 10 ),
								Interval( "Day" ), Inc( 14 ),
								Minor Ticks( 1 )}
							)
						)
					)
				);
				Report2 = Platform(
					DataTable1,
					Graph Builder(
						Size( 500, 80000 ),
						Show Control Panel( 0 ),
						Legend Position( "Inside Left" ),
						Fit to Window( "Maintain Aspect Ratio" ),
						Variables(
							X( :Date ),
							Y( :Scan ),
							Y( :Model, Position( 1 ) ),
							Page(
								:Unit,
								Order By(
									:LevelObj,
									Descending,
									Order Statistic( "Mean" )
								)
							)
						),
						Elements(
							Points( X, Y( 1 ), Y( 2 ), Legend( 20 ) ),
							Smoother( X, Y( 1 ), Y( 2 ), Legend( 21 ) )
						),
						SendToReport(
							Dispatch(
								{},
								"Date",
								ScaleBox( 2 ),
								{Format( "y/m/d", 10 ),
								Interval( "Day" ), Inc( 14 ),
								Minor Ticks( 1 )}
							)
						)
					)
				);
				Report3 = Platform(
					DataTable1,
					Graph Builder(
						Size( 600, 80000 ),
						Show Control Panel( 0 ),
						Legend Position( "Inside Left" ),
						Fit to Window( "Maintain Aspect Ratio" ),
						Variables(
							X( :Date ),
							Y( :Offset, Side( "Right" ) ),
							Y( :OffPctofScan, Position( 1 ) ),
								Page(
								:Unit,
								Order By(
									:LevelObj,
									Descending,
									Order Statistic( "Mean" )
								)
								)
						),
						Elements(
							Points( X, Y( 2 ), Legend( 32 ) ),
							Smoother( X, Y( 2 ), Legend( 33 ) ),
							Points( X, Y( 1 ), Legend( 34 ) ),
							Smoother( X, Y( 1 ), Legend( 35 ) )
						),
												SendToReport(
							Dispatch(
								{},
								"Date",
								ScaleBox( 2 ),
								{Format( "y/m/d", 10 ),
								Interval( "Day" ), Inc( 14 ),
								Minor Ticks( 1 )}
							)
						)
					)
				);
			),
			Organize(
				Reparent( List1( Report3 ) );
				Reparent( List1( Report2 ) );
				Reparent( List1( Report1 ) );
				Reparent( Scroll1( List1 ) );
				Reparent( Border1( Scroll1 ) );
				Relocate( Border1( 210, 60 ) );
			),
			Initialize(
				Border1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Border1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Border1 &amp;lt;&amp;lt; Enabled( 1 );
				Border1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Border1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Border1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Border1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Border1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Border1 &amp;lt;&amp;lt; Visibility( "Visible" );
				Border1 &amp;lt;&amp;lt; Top( 1 );
				Border1 &amp;lt;&amp;lt; Bottom( 1 );
				Border1 &amp;lt;&amp;lt; Left( 1 );
				Border1 &amp;lt;&amp;lt; Right( 1 );
				Border1 &amp;lt;&amp;lt; Sides( 0 );
				Border1 &amp;lt;&amp;lt; Set Background Color( "None" );
				Border1 &amp;lt;&amp;lt; Set Background Fill( 0 );
				Scroll1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Scroll1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Scroll1 &amp;lt;&amp;lt; Enabled( 1 );
				Scroll1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Scroll1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Scroll1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Scroll1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Scroll1 &amp;lt;&amp;lt; User Resizable( {1, 1} );
				Scroll1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Scroll1 &amp;lt;&amp;lt; Visibility( "Visible" );
				Scroll1 &amp;lt;&amp;lt; Width( 1206 );
				Scroll1 &amp;lt;&amp;lt; Height( 765 );
				Scroll1 &amp;lt;&amp;lt; Set Auto Scrollable( 0 );
				Scroll1 &amp;lt;&amp;lt; Set Scrollers( 1, 1 );
				Scroll1 &amp;lt;&amp;lt; Set Show Empty( 1 );
				Scroll1 &amp;lt;&amp;lt; Set Clip Printing( 0 );
				Scroll1 &amp;lt;&amp;lt; Set Min Size( 72, 36 );
				Scroll1 &amp;lt;&amp;lt; Set Max Size( 30000, 30000 );
				Scroll1 &amp;lt;&amp;lt; Set Auto Stretching( 1, 1 );
				List1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				List1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				List1 &amp;lt;&amp;lt; Enabled( 1 );
				List1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				List1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				List1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				List1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				List1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				List1 &amp;lt;&amp;lt; Visibility( "Visible" );
				List1 &amp;lt;&amp;lt; set horizontal( 1 );
				Report1 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Report1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report1 &amp;lt;&amp;lt; Enabled( 1 );
				Report1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Report1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report1 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report1 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Report1 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Report1 &amp;lt;&amp;lt; Visibility( "Visible" );
				Report1 &amp;lt;&amp;lt; set horizontal( 0 );
				Report2 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Report2 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report2 &amp;lt;&amp;lt; Enabled( 1 );
				Report2 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Report2 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report2 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report2 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Report2 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Report2 &amp;lt;&amp;lt; Visibility( "Visible" );
				Report2 &amp;lt;&amp;lt; set horizontal( 0 );
				Report3 &amp;lt;&amp;lt; Background Color( 2147483647 );
				Report3 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report3 &amp;lt;&amp;lt; Enabled( 1 );
				Report3 &amp;lt;&amp;lt; Horizontal Alignment( "Default" );
				Report3 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report3 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} );
				Report3 &amp;lt;&amp;lt; Text Color( 2147483647 );
				Report3 &amp;lt;&amp;lt; Vertical Alignment( "Default" );
				Report3 &amp;lt;&amp;lt; Visibility( "Visible" );
				Report3 &amp;lt;&amp;lt; set horizontal( 0 );
			)
		)
	),
	Initialize(
		Module1 &amp;lt;&amp;lt; Auto Launch( 1 );
		Module1 &amp;lt;&amp;lt; Set Module Type( "Report" );
		Module1 &amp;lt;&amp;lt; Set Window Title( "^TABLENAME - ^APPNAME" );
		Module1 &amp;lt;&amp;lt; Set Min Size( 0, 0 );
		Module1 &amp;lt;&amp;lt; Set Max Size( 30000, 30000 );
		Module1 &amp;lt;&amp;lt; Set Auto Stretching( ., . );
	)
) &amp;lt;&amp;lt; Run&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Application multiple charts using page.png" style="width: 917px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29381iD2B1E2DD43885126/image-size/large?v=v2&amp;amp;px=999" role="button" title="Application multiple charts using page.png" alt="Application multiple charts using page.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 22:03:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-builder-multiple-graph-builders-using-PAGE/m-p/347849#M59879</guid>
      <dc:creator>spudton</dc:creator>
      <dc:date>2023-06-09T22:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Application builder - multiple graph builders using PAGE</title>
      <link>https://community.jmp.com/t5/Discussions/Application-builder-multiple-graph-builders-using-PAGE/m-p/347869#M59881</link>
      <description>&lt;P&gt;Have found solution to the linked Axes. there is a link axes option in Graph builder!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 20:10:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Application-builder-multiple-graph-builders-using-PAGE/m-p/347869#M59881</guid>
      <dc:creator>spudton</dc:creator>
      <dc:date>2021-01-12T20:10:16Z</dc:date>
    </item>
  </channel>
</rss>

