<?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 to change frame border color in y grouped charts in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/696071#M88128</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Do not see Graph spacing color in JMP 16.2 but&amp;nbsp; Grid Color does the job.&lt;/P&gt;&lt;P&gt;(I did search the scripting index before asking but did not expect this to be called Grid Color as these lines are separation/spacing lines)&lt;/P&gt;</description>
    <pubDate>Thu, 09 Nov 2023 10:39:44 GMT</pubDate>
    <dc:creator>Neo</dc:creator>
    <dc:date>2023-11-09T10:39:44Z</dc:date>
    <item>
      <title>How to change frame border color in y grouped charts</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/695781#M88093</link>
      <description>&lt;P&gt;I want to change the color of the grey borders marked by red arrows below. How to do this via JSL (without changing JMP preferences)?&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="Neo_0-1699464942384.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58462i4E46448CDB0B9EE9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_0-1699464942384.png" alt="Neo_0-1699464942384.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 17:36:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/695781#M88093</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-11-08T17:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to change frame border color in y grouped charts</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/695834#M88097</link>
      <description>&lt;P&gt;So you wish to change Graph Spacing color? Let JMP do it&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1699467963466.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58463i7D6D1988765D8445/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1699467963466.png" alt="jthi_0-1699467963466.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and then get script and see what is "different"&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	Grid Color("Medium Light Red"),
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and finally try searching from Scripting Index with that (after you know what you are looking for)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1699468067382.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58464i9E0B4EBA7CE8D7ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1699468067382.png" alt="jthi_1-1699468067382.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 18:27:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/695834#M88097</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-08T18:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to change frame border color in y grouped charts</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/695857#M88100</link>
      <description>&lt;P&gt;I could not see any option to directly change the borders around each frame box, so here is the method that I came up with:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1699471466679.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58466i6EDA5E8FD631C071/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1699471466679.png" alt="txnelson_0-1699471466679.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( 570, 578 ),
	Variables( X( :sex ), Y( :height ), Group Y( :age ) ),
	Elements( Smoother( X, Y, Legend( 1 ) ) )
);

(Report( gb ) &amp;lt;&amp;lt; xpath( "//FrameBox" )) &amp;lt;&amp;lt; add graphics script(
	Pen Size( 2 );
	Pen Color( red );
	H Line( -5000, 5000, Report( gb )[axisbox( 2 )] &amp;lt;&amp;lt; get min );
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Nov 2023 19:27:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/695857#M88100</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-11-08T19:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to change frame border color in y grouped charts</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/696071#M88128</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Do not see Graph spacing color in JMP 16.2 but&amp;nbsp; Grid Color does the job.&lt;/P&gt;&lt;P&gt;(I did search the scripting index before asking but did not expect this to be called Grid Color as these lines are separation/spacing lines)&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 10:39:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-frame-border-color-in-y-grouped-charts/m-p/696071#M88128</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-11-09T10:39:44Z</dc:date>
    </item>
  </channel>
</rss>

