<?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: save report as interactive html in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/save-report-as-interactive-html/m-p/239160#M47262</link>
    <description>&lt;P&gt;When you have a report open in a window and you reuse the box in another window, a copy of the report is created, but it does not copy the analytical platform - it's just a copy of the display.&amp;nbsp; You can create your reports initially in the same window, with something like this:&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;dt=Open("$SAMPLE_DATA/Big Class.jmp");
new_window = New Window("NW",
	V List Box(
		dt &amp;lt;&amp;lt; Run Script("Graph Builder Smoother Line"),
		dt &amp;lt;&amp;lt; Run Script("Graph Builder Line Chart")
	)
);
new_window &amp;lt;&amp;lt; Save Interactive HTML("$DESKTOP/my_plots.htm");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you really want to have independent reports as well as the combined report, you can do something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open("$SAMPLE_DATA/Big Class.jmp");&lt;BR /&gt;gb1 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Smoother Line");
gb2 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Line Chart");
new_window = New Window("NW",
	V List Box(
		gb1 &amp;lt;&amp;lt; Redo Analysis;
		gb2 &amp;lt;&amp;lt; Redo Analysis;
	)
);
new_window &amp;lt;&amp;lt; Save Interactive HTML("$DESKTOP/my_plots.htm");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The &amp;lt;&amp;lt;Redo Analysis command creates a full copy of the Graph Builder platform rather than just copying the report.&amp;nbsp; If you need yet another way to combine windows, it is possible to script the "Combine Windows" functionality that you'll find in the Window menu.&amp;nbsp; This results in a JMP Dashboard, which results in a similar window with multiple reports:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open("$SAMPLE_DATA/Big Class.jmp");
gb1 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Smoother Line");
gb2 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Line Chart");

gb1&amp;lt;&amp;lt;Move Window(0,0);
gb2&amp;lt;&amp;lt;Move Window(500,0);
dashboard = JMPApp();
dashboard &amp;lt;&amp;lt; Combine Windows({gb1&amp;lt;&amp;lt;Report,gb2&amp;lt;&amp;lt;Report});
dashboard &amp;lt;&amp;lt; Run;

db_win = dashboard &amp;lt;&amp;lt; Get Windows();
db_win &amp;lt;&amp;lt; Save Interactive HTML("$DESKTOP/db_plots.htm");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In this case, I arranged the reports horizontally instead of vertically by setting the positions of the original reports.&amp;nbsp; Combine Windows looks at the placement of the windows on the screen to try to replicate the layout vertically, horizontally, or for 3+ reports a combination of the two.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Dec 2019 17:26:29 GMT</pubDate>
    <dc:creator>danschikore</dc:creator>
    <dc:date>2019-12-19T17:26:29Z</dc:date>
    <item>
      <title>save report as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/save-report-as-interactive-html/m-p/239138#M47260</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to save a report including multiple Graph Builders as an interactive html.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I am doing:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;a_plot=Report(Graph Builder(...));
b_plot=Report(Graph Builder(...));
c_plot=Report(Graph Builder(...));
new_window = New Window( "NW", hlb = H List Box() );
hlb &amp;lt;&amp;lt; append(
				V List Box(
				a_plot,
				b_plot,
				c_plot
			);
new_window &amp;lt;&amp;lt; save interactive html("my_plots".htm");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It works fine except for the fact that the report is not really interactive. You cannot choose points on one plot and have the related points selected on other plots.&lt;/P&gt;&lt;P&gt;Is there any solution for this? Is it possible to save reports (collection of plots) in an interactive format?&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 15:04:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-report-as-interactive-html/m-p/239138#M47260</guid>
      <dc:creator>Leily</dc:creator>
      <dc:date>2019-12-19T15:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: save report as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/save-report-as-interactive-html/m-p/239160#M47262</link>
      <description>&lt;P&gt;When you have a report open in a window and you reuse the box in another window, a copy of the report is created, but it does not copy the analytical platform - it's just a copy of the display.&amp;nbsp; You can create your reports initially in the same window, with something like this:&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;dt=Open("$SAMPLE_DATA/Big Class.jmp");
new_window = New Window("NW",
	V List Box(
		dt &amp;lt;&amp;lt; Run Script("Graph Builder Smoother Line"),
		dt &amp;lt;&amp;lt; Run Script("Graph Builder Line Chart")
	)
);
new_window &amp;lt;&amp;lt; Save Interactive HTML("$DESKTOP/my_plots.htm");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you really want to have independent reports as well as the combined report, you can do something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open("$SAMPLE_DATA/Big Class.jmp");&lt;BR /&gt;gb1 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Smoother Line");
gb2 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Line Chart");
new_window = New Window("NW",
	V List Box(
		gb1 &amp;lt;&amp;lt; Redo Analysis;
		gb2 &amp;lt;&amp;lt; Redo Analysis;
	)
);
new_window &amp;lt;&amp;lt; Save Interactive HTML("$DESKTOP/my_plots.htm");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The &amp;lt;&amp;lt;Redo Analysis command creates a full copy of the Graph Builder platform rather than just copying the report.&amp;nbsp; If you need yet another way to combine windows, it is possible to script the "Combine Windows" functionality that you'll find in the Window menu.&amp;nbsp; This results in a JMP Dashboard, which results in a similar window with multiple reports:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open("$SAMPLE_DATA/Big Class.jmp");
gb1 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Smoother Line");
gb2 = dt &amp;lt;&amp;lt; Run Script("Graph Builder Line Chart");

gb1&amp;lt;&amp;lt;Move Window(0,0);
gb2&amp;lt;&amp;lt;Move Window(500,0);
dashboard = JMPApp();
dashboard &amp;lt;&amp;lt; Combine Windows({gb1&amp;lt;&amp;lt;Report,gb2&amp;lt;&amp;lt;Report});
dashboard &amp;lt;&amp;lt; Run;

db_win = dashboard &amp;lt;&amp;lt; Get Windows();
db_win &amp;lt;&amp;lt; Save Interactive HTML("$DESKTOP/db_plots.htm");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In this case, I arranged the reports horizontally instead of vertically by setting the positions of the original reports.&amp;nbsp; Combine Windows looks at the placement of the windows on the screen to try to replicate the layout vertically, horizontally, or for 3+ reports a combination of the two.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 17:26:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-report-as-interactive-html/m-p/239160#M47262</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2019-12-19T17:26:29Z</dc:date>
    </item>
  </channel>
</rss>

