<?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: Help with Graph Builder - Would like a Background Color other than White in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323023#M57306</link>
    <description>Excellent.........</description>
    <pubDate>Sun, 18 Oct 2020 14:48:41 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-10-18T14:48:41Z</dc:date>
    <item>
      <title>Help with Graph Builder - Would like a Background Color other than White</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/322991#M57299</link>
      <description>&lt;P&gt;Hello - I would like to add a background color to a JMP chart that I built in JMP Graph Builer.&amp;nbsp; I save the chart as a PNG and have attached it.&amp;nbsp; Does anyone know how to do this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Chart_2 (1).png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27488i9BDF814C86F5D538/image-size/large?v=v2&amp;amp;px=999" role="button" title="Chart_2 (1).png" alt="Chart_2 (1).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:06:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/322991#M57299</guid>
      <dc:creator>dfusco923</dc:creator>
      <dc:date>2023-06-11T11:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Graph Builder - Would like a Background Color other than White</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323014#M57301</link>
      <description>&lt;P&gt;Go to File --&amp;gt; Preferences --&amp;gt; Styles and select the color you want :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11111.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27472i6F8390FCB4A5C3FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="11111.PNG" alt="11111.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 03:54:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323014#M57301</guid>
      <dc:creator>ThuongLe</dc:creator>
      <dc:date>2020-10-18T03:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Graph Builder - Would like a Background Color other than White</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323019#M57302</link>
      <description>&lt;P&gt;You should be able to go to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Edit=&amp;gt;Properties&lt;/P&gt;
&lt;P&gt;and then click on the area of interest and change the background color&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="background2.PNG" style="width: 926px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27473iA75A2A3CF5A95D3A/image-size/large?v=v2&amp;amp;px=999" role="button" title="background2.PNG" alt="background2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;But for JMP 15, changing the background color of the Frame Box() using this method, does not work.&amp;nbsp; It appears to have been fixed in JMP 16.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, through scripting, you can use the&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;&amp;lt; background color( ??? )&lt;/P&gt;
&lt;P&gt;to get the results you want&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="background.PNG" style="width: 639px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27474iFE4FA6A3242F6A3A/image-size/large?v=v2&amp;amp;px=999" role="button" title="background.PNG" alt="background.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

gb = Graph Builder(
	Size( 528, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) )
	)
);

Report( gb )[FrameBox( 1 )] &amp;lt;&amp;lt; background color( red );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and change the color&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 11:44:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323019#M57302</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-10-18T11:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Graph Builder - Would like a Background Color other than White</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323022#M57305</link>
      <description>&lt;P&gt;In my JMP 15.1.0 (win10) in GB I can Change Background Color via context menu interactively.&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 14:39:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323022#M57305</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2020-10-18T14:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Graph Builder - Would like a Background Color other than White</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323023#M57306</link>
      <description>Excellent.........</description>
      <pubDate>Sun, 18 Oct 2020 14:48:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Graph-Builder-Would-like-a-Background-Color-other-than/m-p/323023#M57306</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-10-18T14:48:41Z</dc:date>
    </item>
  </channel>
</rss>

