<?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: How i can get max size graph in PowerPoint - PPP ?? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/304478#M56085</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16797"&gt;@alsaqi89&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Native resolution for most ppt files these days is 1920x1080, so your graph size of 1155x703 would not fill it. I suggest two things: increase the size of the graph, and turn OFF "Fit to Window" to make sure that your graph is not automatically resized before you export to power point. Here is your code with those changes (and I maintained the aspect ratio of your graph):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb2 = Graph Builder(
	Size( 1920, 1169 ),
	Fit to Window( "Off" ),
	Variables(
		X( :Reference ID ),
		Y( :OD Inlet DB ),
		Y( :OD Outlet DB ),
		Y( :OD Inlet WB ),
		Y( :OD Outlet WB ),
		Overlay( :Test# )
	),
	Elements( Position( 1, 1 ), Line( X, Y, Legend( 14 ) ) ),
	Elements( Position( 1, 2 ), Line( X, Y, Legend( 15 ) ) ),
	Elements( Position( 1, 3 ), Line( X, Y, Legend( 16 ) ) ),
	Elements( Position( 1, 4 ), Line( X, Y, Legend( 17 ) ) ),
	SendToReport(
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "OD - DB &amp;amp; WB" )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Sep 2020 15:30:14 GMT</pubDate>
    <dc:creator>jules</dc:creator>
    <dc:date>2020-09-10T15:30:14Z</dc:date>
    <item>
      <title>How i can get max size graph in PowerPoint - PPP ??</title>
      <link>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/304285#M56068</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb2=
Graph Builder(
Size( 1155, 703 ),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Variables(
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; X( :Reference ID ),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Y( :OD Inlet DB ),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Y( :OD Outlet DB ),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y( :OD Inlet WB ),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Y( :OD Outlet WB ),
Overlay( :Test# )
),
Elements( Position( 1, 1 ), Line( X, Y, Legend( 14 ) ) ),
Elements( Position( 1, 2 ), Line( X, Y, Legend( 15 ) ) ),
Elements( Position( 1, 3 ), Line( X, Y, Legend( 16 ) ) ),
Elements( Position( 1, 4 ), Line( X, Y, Legend( 17 ) ) ),
SendToReport(
Dispatch( {}, "graph title", TextEditBox, {Set Text( "OD - DB &amp;amp; WB" )} )
)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;----------------------------&lt;/P&gt;
&lt;P&gt;whatever size I put here&amp;nbsp; //&lt;FONT size="2"&gt;Size( 1155, 703 ),//&amp;nbsp;&lt;/FONT&gt;will not change the size in PPP! .. thank you&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sss.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26681i2AD6C97D7E902826/image-size/large?v=v2&amp;amp;px=999" role="button" title="sss.PNG" alt="sss.PNG" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:05:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/304285#M56068</guid>
      <dc:creator>alsaqi89</dc:creator>
      <dc:date>2023-06-11T11:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: How i can get max size graph in PowerPoint - PPP ??</title>
      <link>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/304478#M56085</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16797"&gt;@alsaqi89&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Native resolution for most ppt files these days is 1920x1080, so your graph size of 1155x703 would not fill it. I suggest two things: increase the size of the graph, and turn OFF "Fit to Window" to make sure that your graph is not automatically resized before you export to power point. Here is your code with those changes (and I maintained the aspect ratio of your graph):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb2 = Graph Builder(
	Size( 1920, 1169 ),
	Fit to Window( "Off" ),
	Variables(
		X( :Reference ID ),
		Y( :OD Inlet DB ),
		Y( :OD Outlet DB ),
		Y( :OD Inlet WB ),
		Y( :OD Outlet WB ),
		Overlay( :Test# )
	),
	Elements( Position( 1, 1 ), Line( X, Y, Legend( 14 ) ) ),
	Elements( Position( 1, 2 ), Line( X, Y, Legend( 15 ) ) ),
	Elements( Position( 1, 3 ), Line( X, Y, Legend( 16 ) ) ),
	Elements( Position( 1, 4 ), Line( X, Y, Legend( 17 ) ) ),
	SendToReport(
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "OD - DB &amp;amp; WB" )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 15:30:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/304478#M56085</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2020-09-10T15:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: How i can get max size graph in PowerPoint - PPP ??</title>
      <link>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/305042#M56121</link>
      <description>&lt;P&gt;thank you! works fine&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 05:48:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-i-can-get-max-size-graph-in-PowerPoint-PPP/m-p/305042#M56121</guid>
      <dc:creator>alsaqi89</dc:creator>
      <dc:date>2020-09-11T05:48:24Z</dc:date>
    </item>
  </channel>
</rss>

