<?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: Saving Dashboard to .jpg or Png format in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218165#M43620</link>
    <description>I think this technique works well with single chart, but i want to convert dash board into image and trying to save them.&lt;BR /&gt;Please guide&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dilip</description>
    <pubDate>Fri, 19 Jul 2019 15:04:31 GMT</pubDate>
    <dc:creator>dilipkumar</dc:creator>
    <dc:date>2019-07-19T15:04:31Z</dc:date>
    <item>
      <title>Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218093#M43608</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I want to save jmp dashboard into to a image file (.jpg..png). can any one can help in that.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 06:56:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218093#M43608</guid>
      <dc:creator>dilipkumar</dc:creator>
      <dc:date>2019-07-19T06:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218116#M43611</link>
      <description>&lt;P&gt;Select Help &amp;gt; Scripting Index. Change browser to Display Boxes. Search for 'jpeg'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
//This message applies to all display box objects
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv &amp;lt;&amp;lt; report;
rbiv &amp;lt;&amp;lt; Save Picture( "path/to/example.png", "png" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Jul 2019 11:57:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218116#M43611</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-19T11:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218165#M43620</link>
      <description>I think this technique works well with single chart, but i want to convert dash board into image and trying to save them.&lt;BR /&gt;Please guide&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dilip</description>
      <pubDate>Fri, 19 Jul 2019 15:04:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218165#M43620</guid>
      <dc:creator>dilipkumar</dc:creator>
      <dc:date>2019-07-19T15:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218170#M43625</link>
      <description>&lt;P&gt;Custom window containing multiple platforms:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

path = Pick Directory();

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

nw = New Window( "Dashboard",
	dt &amp;lt;&amp;lt; Distribution( Y( :weight, :height ) ),
	dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ) )
);

Wait( 0 );
nw &amp;lt;&amp;lt; Save Picture( path || "example.png", "png" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Custom dashboard:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

path = Pick Directory();

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

dash = JMP App(
	Set Name( "Dashboard" ),
	Set Description( "Description" ),
	Auto Launch( 1 ),
	Snap To Grid( 1 ),
	Show Grid( 1 ),
	Show Properties( 0 ),
	Show Sources( 1 ),
	Group By Category( 0 ),
	Dashboard Mode( 1 ),
	Parameters,
	Tables(
		DataTable1 = GuiTable(
			Set Path( "$SAMPLE_DATA/Big Class.jmp" ),
			Set Label( "Big Class.jmp" ),
			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(// This script is executed when a new module instance is
// created.  The pre-defined object "thisModuleInstance" refers
// to the instance object, but other objects such as boxes and
// scripts have not yet been created.  Variables declared here are
// scoped to the ModuleInstance namespace.

// This special function will receive parameters passed to CreateInstance()
OnModuleLoad({},
);

thisModuleInstance &amp;lt;&amp;lt; Create Objects;

// After this point your module instance objects have been created
// and can be referred to by name (for example, "Button1").

Try(TabPage3 &amp;lt;&amp;lt; Set Scriptable Object(thisApplication));
)			),
			Allocate(
				TabPage3 = Tab Page Box();
				Splitter1 = H Splitter Box();
				TabPage2 = Tab Page Box();
				Scroll2 = Scroll Box();
				Report2 = Platform(
					DataTable1,
					Distribution(
						Continuous Distribution( Column( :weight ) ),
						Continuous Distribution( Column( :height ) )
					)
				);
				TabPage1 = Tab Page Box();
				Scroll1 = Scroll Box();
				Report1 = Platform(
					DataTable1,
					Bivariate( Y( :weight ), X( :height ) )
				);
			),
			Organize(
				Reparent( Scroll1( Report1 ) );
				Reparent( TabPage1( Scroll1 ) );
				Reparent( Splitter1( TabPage1 ) );
				Reparent( Scroll2( Report2 ) );
				Reparent( TabPage2( Scroll2 ) );
				Reparent( Splitter1( TabPage2 ) );
				Reparent( TabPage3( Splitter1 ) );
				Relocate( TabPage3( 0, 0 ) );
			),
			Initialize(
				TabPage3 &amp;lt;&amp;lt; Background Color( 2147483647 ),
				TabPage3 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				TabPage3 &amp;lt;&amp;lt; Enabled( 1 ),
				TabPage3 &amp;lt;&amp;lt; Horizontal Alignment( "Default" ),
				TabPage3 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				TabPage3 &amp;lt;&amp;lt; Padding(
					{Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )}
				),
				TabPage3 &amp;lt;&amp;lt; Text Color( 2147483647 ),
				TabPage3 &amp;lt;&amp;lt; Vertical Alignment( "Default" ),
				TabPage3 &amp;lt;&amp;lt; Visibility( "Visible" ),
				TabPage3 &amp;lt;&amp;lt; Title( "Dashboard" ),
				TabPage3 &amp;lt;&amp;lt; Tip( "" ),
				TabPage3 &amp;lt;&amp;lt; Icon( "" ),
				TabPage3 &amp;lt;&amp;lt; Closeable( 0 ),
				TabPage3 &amp;lt;&amp;lt; Moveable( 0 ),
				Splitter1 &amp;lt;&amp;lt; Background Color( 2147483647 ),
				Splitter1 &amp;lt;&amp;lt; Border(
					{Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )}
				),
				Splitter1 &amp;lt;&amp;lt; Enabled( 1 ),
				Splitter1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" ),
				Splitter1 &amp;lt;&amp;lt; Margin(
					{Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )}
				),
				Splitter1 &amp;lt;&amp;lt; Padding(
					{Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )}
				),
				Splitter1 &amp;lt;&amp;lt; Text Color( 2147483647 ),
				Splitter1 &amp;lt;&amp;lt; Vertical Alignment( "Default" ),
				Splitter1 &amp;lt;&amp;lt; Visibility( "Visible" ),
				Splitter1 &amp;lt;&amp;lt; Dockable( 1 ),
				Splitter1 &amp;lt;&amp;lt; Set Width( 1021 ),
				Splitter1 &amp;lt;&amp;lt; Set Height( 666 ),
				Splitter1 &amp;lt;&amp;lt; Set Sizes( {0.555009823182711, 0.444990176817289} ),
				Splitter1 &amp;lt;&amp;lt; set horizontal( 1 ),
				Splitter1 &amp;lt;&amp;lt; Set Min Size( 147, 62 ),
				Splitter1 &amp;lt;&amp;lt; Set Max Size( 60003, 30000 ),
				Splitter1 &amp;lt;&amp;lt; Set Auto Stretching( 1, 1 ),
				TabPage2 &amp;lt;&amp;lt; Background Color( 2147483647 ),
				TabPage2 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				TabPage2 &amp;lt;&amp;lt; Enabled( 1 ),
				TabPage2 &amp;lt;&amp;lt; Horizontal Alignment( "Default" ),
				TabPage2 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				TabPage2 &amp;lt;&amp;lt; Padding(
					{Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )}
				),
				TabPage2 &amp;lt;&amp;lt; Text Color( 2147483647 ),
				TabPage2 &amp;lt;&amp;lt; Vertical Alignment( "Default" ),
				TabPage2 &amp;lt;&amp;lt; Visibility( "Visible" ),
				TabPage2 &amp;lt;&amp;lt; Title( "Distributions" ),
				TabPage2 &amp;lt;&amp;lt; Tip( "" ),
				TabPage2 &amp;lt;&amp;lt; Icon( "Distrib" ),
				TabPage2 &amp;lt;&amp;lt; Closeable( 1 ),
				TabPage2 &amp;lt;&amp;lt; Moveable( 1 ),
				Scroll2 &amp;lt;&amp;lt; Background Color( 2147483647 ),
				Scroll2 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				Scroll2 &amp;lt;&amp;lt; Enabled( 1 ),
				Scroll2 &amp;lt;&amp;lt; Horizontal Alignment( "Default" ),
				Scroll2 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				Scroll2 &amp;lt;&amp;lt; Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				Scroll2 &amp;lt;&amp;lt; Text Color( 2147483647 ),
				Scroll2 &amp;lt;&amp;lt; User Resizable( {1, 1} ),
				Scroll2 &amp;lt;&amp;lt; Vertical Alignment( "Default" ),
				Scroll2 &amp;lt;&amp;lt; Visibility( "Visible" ),
				Scroll2 &amp;lt;&amp;lt; Width( 565 ),
				Scroll2 &amp;lt;&amp;lt; Height( 640 ),
				Scroll2 &amp;lt;&amp;lt; Set Auto Scrollable( 1 ),
				Scroll2 &amp;lt;&amp;lt; Set Scrollers( 1, 1 ),
				Scroll2 &amp;lt;&amp;lt; Set Background Color( 2147483647 ),
				Scroll2 &amp;lt;&amp;lt; Set Show Empty( 0 ),
				Scroll2 &amp;lt;&amp;lt; Set Clip Printing( 0 ),
				Scroll2 &amp;lt;&amp;lt; Set Min Size( 72, 36 ),
				Scroll2 &amp;lt;&amp;lt; Set Max Size( 30000, 30000 ),
				Scroll2 &amp;lt;&amp;lt; Set Auto Stretching( 1, 1 ),
				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 ),
				TabPage1 &amp;lt;&amp;lt; Background Color( 2147483647 ),
				TabPage1 &amp;lt;&amp;lt; Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				TabPage1 &amp;lt;&amp;lt; Enabled( 1 ),
				TabPage1 &amp;lt;&amp;lt; Horizontal Alignment( "Default" ),
				TabPage1 &amp;lt;&amp;lt; Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ),
				TabPage1 &amp;lt;&amp;lt; Padding(
					{Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )}
				),
				TabPage1 &amp;lt;&amp;lt; Text Color( 2147483647 ),
				TabPage1 &amp;lt;&amp;lt; Vertical Alignment( "Default" ),
				TabPage1 &amp;lt;&amp;lt; Visibility( "Visible" ),
				TabPage1 &amp;lt;&amp;lt; Title( "Bivariate Fit of weight By height" ),
				TabPage1 &amp;lt;&amp;lt; Tip( "" ),
				TabPage1 &amp;lt;&amp;lt; Icon( "Bivariate" ),
				TabPage1 &amp;lt;&amp;lt; Closeable( 1 ),
				TabPage1 &amp;lt;&amp;lt; Moveable( 1 ),
				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( 453 ),
				Scroll1 &amp;lt;&amp;lt; Height( 640 ),
				Scroll1 &amp;lt;&amp;lt; Set Auto Scrollable( 1 ),
				Scroll1 &amp;lt;&amp;lt; Set Scrollers( 1, 1 ),
				Scroll1 &amp;lt;&amp;lt; Set Background Color( 2147483647 ),
				Scroll1 &amp;lt;&amp;lt; Set Show Empty( 0 ),
				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 ),
				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 )
			)
		)
	),
	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;

Wait( 0 );

dash rep = dash &amp;lt;&amp;lt; Get Windows;

dash rep &amp;lt;&amp;lt; Save Picture( path || "example.png", "png" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Jul 2019 18:17:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218170#M43625</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-19T18:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218228#M43642</link>
      <description>Hi,&lt;BR /&gt;Thanks for reply, Now i can able to save the image of Dash board, at same time i am trying to hide the dash board , which is appearing now after executing the script. Is there any way to hide the dash board and only image get saved.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dilip</description>
      <pubDate>Sun, 21 Jul 2019 06:49:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218228#M43642</guid>
      <dc:creator>dilipkumar</dc:creator>
      <dc:date>2019-07-21T06:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218230#M43644</link>
      <description>&lt;P&gt;You would add the &lt;STRONG&gt;Invisible&lt;/STRONG&gt; argument to the &lt;STRONG&gt;JMP App( )&lt;/STRONG&gt; function call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You would also have to close the app as well after the picture is saved.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jul 2019 13:02:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218230#M43644</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-07-21T13:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Dashboard to .jpg or Png format</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218231#M43645</link>
      <description>If possible can you provide any example ?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Jul 2019 14:24:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Dashboard-to-jpg-or-Png-format/m-p/218231#M43645</guid>
      <dc:creator>dilipkumar</dc:creator>
      <dc:date>2019-07-21T14:24:14Z</dc:date>
    </item>
  </channel>
</rss>

