<?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: JMP Script: Save all the graph created from the column switcher by the user in the journal in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606313#M80833</link>
    <description>&lt;P&gt;Is something like this what you're looking for?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open ("$SAMPLE_DATA/big class.jmp");
g = Graph Builder(
	Size( 525, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 5 ) ) )	
);
cs = (g &amp;lt;&amp;lt; Column Switcher( :height, {:height, :weight} ));

ncols = n items (cs &amp;lt;&amp;lt; get list);

for each ({i}, 1::ncols,
	g &amp;lt;&amp;lt; Journal;
	cs &amp;lt;&amp;lt; next;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 28 Feb 2023 18:16:09 GMT</pubDate>
    <dc:creator>Jed_Campbell</dc:creator>
    <dc:date>2023-02-28T18:16:09Z</dc:date>
    <item>
      <title>JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/605239#M80772</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I would like to know if it is possible to create a PDF from the graphics that are created by the user?&lt;/P&gt;&lt;P&gt;for example here is my code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;graph1 = dt &amp;lt;&amp;lt; 
			Control Chart Builder(
				Size( 600, 500 ),
				Show Two Shewhart Charts( 0 ),
				Show Control Panel( 0 ),
				Sort by Row Order( 1 ),
				
				Show Excluded Region( 0 ),
				Variables(  Y( :"Y1") ,Subgroup( :batch ), Subgroup(:Date) ),
				Get Limits(dt3),
				Chart(
					Warnings( Test 1( 1 ), Test 2( 1 ), Test 3( 1 ) )
				),
				Local Data Filter(
					Add Filter(
						columns( :Version ), 
						Display( :Version, Size( 160, 75 ), List Display )
					),
					Mode( Select( 1), Show( 1), Include( 1 ) )
				),
				Column Switcher(
					:Name( "Y1" ),
					If( prod_n == 2, 
						{:Name( "Y1" ), :Name( "Y2" ), :Name( "Y3" )
						}
					)
				)
			)&lt;BR /&gt;graph1 &amp;lt;&amp;lt; journal;&lt;BR /&gt;...&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;When the user creates a graph by clicking on the variable he wants to study from the column switcher, is it possible to save all the graphs created by the users in a PDF file with the journal?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank's in advance,&lt;/P&gt;&lt;P&gt;Sébastien&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:33:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/605239#M80772</guid>
      <dc:creator>Sebastienlg</dc:creator>
      <dc:date>2023-06-08T16:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/605262#M80775</link>
      <description>&lt;P&gt;Do you want to have one journal &lt;STRONG&gt;for each of the columns&lt;/STRONG&gt; user goes through or &lt;STRONG&gt;one journal&lt;/STRONG&gt; for all of them?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 15:22:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/605262#M80775</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-02-24T15:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/605689#M80801</link>
      <description>&lt;P&gt;one journal for all of them&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 09:08:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/605689#M80801</guid>
      <dc:creator>Sebastienlg</dc:creator>
      <dc:date>2023-02-27T09:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606200#M80827</link>
      <description>&lt;P&gt;Hi jthi,&lt;/P&gt;&lt;P&gt;Do you have any suggestion that could help me with my request to make&amp;nbsp;&lt;SPAN&gt;one journal for all of them ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank's a lot for your answer,&lt;/P&gt;&lt;P&gt;Sebastien&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 12:49:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606200#M80827</guid>
      <dc:creator>Sebastienlg</dc:creator>
      <dc:date>2023-02-28T12:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606249#M80829</link>
      <description>&lt;P&gt;It depends a lot on how the application will be used. Below are few questions:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Based on what the users will click different columns?&lt;/LI&gt;
&lt;LI&gt;Can they click wrong columns and if they can how should those be handled?&lt;/LI&gt;
&lt;LI&gt;If they can't do you need user selections or can you just plot everything&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 28 Feb 2023 15:13:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606249#M80829</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-02-28T15:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606313#M80833</link>
      <description>&lt;P&gt;Is something like this what you're looking for?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open ("$SAMPLE_DATA/big class.jmp");
g = Graph Builder(
	Size( 525, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 5 ) ) )	
);
cs = (g &amp;lt;&amp;lt; Column Switcher( :height, {:height, :weight} ));

ncols = n items (cs &amp;lt;&amp;lt; get list);

for each ({i}, 1::ncols,
	g &amp;lt;&amp;lt; Journal;
	cs &amp;lt;&amp;lt; next;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Feb 2023 18:16:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/606313#M80833</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2023-02-28T18:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script: Save all the graph created from the column switcher by the user in the journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/608383#M80981</link>
      <description>&lt;P&gt;Great, this is exactly what I wanted !!!&lt;/P&gt;&lt;P&gt;Thank's a lot&lt;/P&gt;&lt;P&gt;Sebastien&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 07:58:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-Save-all-the-graph-created-from-the-column-switcher/m-p/608383#M80981</guid>
      <dc:creator>Sebastienlg</dc:creator>
      <dc:date>2023-03-06T07:58:52Z</dc:date>
    </item>
  </channel>
</rss>

