<?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: Change Control Chart Size (Aspect Ratio) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/45045#M25736</link>
    <description>&lt;P&gt;Perfect! Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 22 Sep 2017 20:09:08 GMT</pubDate>
    <dc:creator>atlas100</dc:creator>
    <dc:date>2017-09-22T20:09:08Z</dc:date>
    <item>
      <title>Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29022#M19253</link>
      <description>&lt;P&gt;I copy control charts from JMP and paste to Word documents. In Jmp 12 and before the charts had a narrow height and wide width that was condusive to pasting two charts on each page. In JMP 13 the chart is much more square and does not use the width of the Word page efficiently. I am attaching two versions of the control charts for viewing. I would like help returning JMP 13 to the control chart aspect ratio of JMP 12.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2016 18:25:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29022#M19253</guid>
      <dc:creator>atlas100</dc:creator>
      <dc:date>2016-11-09T18:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29035#M19258</link>
      <description>&lt;P&gt;You can&amp;nbsp;re-size the charts in the JMP report by dragging an edge of the chart.&amp;nbsp; Then save the script.&amp;nbsp; You can then reuse the script to produce the charts with the&amp;nbsp;exact dimensions you like for pasting into MS Word.&amp;nbsp;&amp;nbsp;I hope that helps.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2016 23:11:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29035#M19258</guid>
      <dc:creator>matthew_b_niema</dc:creator>
      <dc:date>2016-11-09T23:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29039#M19261</link>
      <description>In the Graph Preferences, it appears that for both JMP 12 and 13, the Height of graphs is set to 240.  Maybe you could reduce that, and see if JMP will keep the width the same.</description>
      <pubDate>Wed, 09 Nov 2016 23:48:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29039#M19261</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2016-11-09T23:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29042#M19264</link>
      <description>&lt;P&gt;I think you are on the right track. I can drag the edge to make the chart size better fit my needs but I can't figure out how to save that as part of the script. I use a script to generate the control charts. Are you suggesting I can modify those scripts to make the chart size change?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2016 04:05:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29042#M19264</guid>
      <dc:creator>atlas100</dc:creator>
      <dc:date>2016-11-10T04:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29047#M19267</link>
      <description>&lt;P&gt;Here is an example of what you want.&amp;nbsp; I took the example from&lt;/P&gt;
&lt;P&gt;Help==&amp;gt;Scripting Index==&amp;gt;Framebox&lt;/P&gt;
&lt;P&gt;and switched out a control chart for their example, which was a Fit Y by X&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = Control Chart(
	Sample Size( 5 ),
	KSigma( 3 ),
	Chart Col( :height, XBar, R )
);
rbiv = biv &amp;lt;&amp;lt; report;
framebox = rbiv[Frame Box( 1 )];
framebox &amp;lt;&amp;lt; Frame Size( 800, 300 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2016 13:07:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29047#M19267</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2016-11-10T13:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29049#M19269</link>
      <description>&lt;P&gt;Yes, re-sizing the chart and saving the script should generate the code you need for setting the size of the frame box.&amp;nbsp; Just copy and paste the extra snippets of code to your existing script.&amp;nbsp; For example I took the sample data table &amp;nbsp;"Braces" that alrady has script embeded to produce a U-chart.&amp;nbsp; I ran the script and then re-sized the chart and save the modified report as a new script.&amp;nbsp; Below I've include a copy of both scritps for comparison.&amp;nbsp; What I colored in red is the new code generated from re-sizing the chart, green was original.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Original Script copied to the sample data table:&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;Control Chart(
Sample Label( :Date ),
Unit Size( :Unit size ),
K Sigma( 3 ),
Chart Col( Name( "# defects" ), U )
)&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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;New script that I saved to the data table after modifying the chart dimentions:&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;Control Chart(
Sample Label( :Date ),
Unit Size( :Unit size ),
KSigma( 3 ),
Chart Col( :Name( "# defects" ), U ),
SendToReport(
Dispatch(
{"U of # defects"},
"Attributes Chart",
FrameBox,
{Frame Size( 354, 193 )}
),
Dispatch(
{"U of # defects"},
"Attributes Chart",
FrameBox( 2 ),
{Frame Size( 55, 193 )}
)
)
)&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2017 21:07:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/29049#M19269</guid>
      <dc:creator>matthew_b_niema</dc:creator>
      <dc:date>2017-09-22T21:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/30935#M19622</link>
      <description>&lt;P&gt;I am still struggling with this. I am not much of a scripter. Here is my Control Chart Builder script. I have tried the sendtoreport and dispatch functions to no avail. I appreciate your attempts to help me with this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
Variables(
Y(
:Name( "% Oversize" ),
:Ms Temp.,
:Ideal Diameter,
:Name( "Grain Size, Surface" ),
:Name( "Grain Size, Center" ),
:Name( "C, LECO" ),
:Mn,
:P,
:S,
:Si,
:Ni,
:Cr,
:Mo,
:Cu,
:Ti,
:V,
:Nb,
:Al,
:Surface Hardness,
:Avg. Volumetric Hardness,
)
),
Chart( Position( 1 ) ),
Chart( Position( 2 ) ),
 
Where( :Source == "SINO" )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2017 21:08:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/30935#M19622</guid>
      <dc:creator>atlas100</dc:creator>
      <dc:date>2017-09-22T21:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/45041#M25734</link>
      <description>&lt;P&gt;The examples that have been provided thus far are for the traditional control chart platform. It appears you are using Control Chart Builder which has a somewhat easier method of controlling the size of the graph. At the beginning of your script try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Control Chart Builder(
Size( 600, 450 ),
Variables( Y( ....&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first number in the Size statement controls the width of the graph; the second number controls the height of the graph.&lt;/P&gt;
&lt;P&gt;You can try varying these values to get the size graph you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2017 21:06:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/45041#M25734</guid>
      <dc:creator>susan_walsh1</dc:creator>
      <dc:date>2017-09-22T21:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/45045#M25736</link>
      <description>&lt;P&gt;Perfect! Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2017 20:09:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/45045#M25736</guid>
      <dc:creator>atlas100</dc:creator>
      <dc:date>2017-09-22T20:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Change Control Chart Size (Aspect Ratio)</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/49255#M27997</link>
      <description>&lt;P&gt;I would like to be able to script the size of the data box, not the size of the window. How can this be done using graph builder?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why?: When you make figures with many paralell data boxes but with different axes, the Size(x, y) does not help as the data frame is scaled to fit the text of the axis into the set window size. This way, when I align the figure panes&amp;nbsp;in intaglio/illustrator, the data frames are of different sizes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 19:27:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Control-Chart-Size-Aspect-Ratio/m-p/49255#M27997</guid>
      <dc:creator>buzuddha1</dc:creator>
      <dc:date>2018-01-04T19:27:38Z</dc:date>
    </item>
  </channel>
</rss>

