<?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 programmatically enable &amp;quot;Show as Graph Reference Lines&amp;quot; in Spec Limits property of a column? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630558#M82874</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;&lt;/P&gt;&lt;P&gt;On JMP 16.2.0 doing it manually works (i.e. all grouped columns get the "&lt;SPAN&gt;Show as Graph Reference Lines"&lt;/SPAN&gt;&amp;nbsp;checked) but the script is not working i.e.&amp;nbsp;"&lt;SPAN&gt;Show as Graph Reference Lines" remain unchecked.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 10 May 2023 12:18:34 GMT</pubDate>
    <dc:creator>Neo</dc:creator>
    <dc:date>2023-05-10T12:18:34Z</dc:date>
    <item>
      <title>How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630540#M82871</link>
      <description>&lt;P&gt;I am the recipient of a data table where each column has spec limits defined under its Column Property. I would like show these limits as reference lines in my charts when I plot the column data. How do I enable&amp;nbsp; "Show as Graph Reference Lines" in Spec Limits property for each and every (or some selected) columns in a data table?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:09:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630540#M82871</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-06-09T16:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630551#M82873</link>
      <description>&lt;P&gt;I think using Manage Limits is easiest option even without any scripting&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1683718467816.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/52686i0854632B6A8FF26D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1683718467816.png" alt="jthi_0-1683718467816.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and it is also fairly simple to script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
obj = dt &amp;lt;&amp;lt; Manage Limits(Process Variables(dt &amp;lt;&amp;lt; Get Column Group("Processes")));
Wait(1);
obj &amp;lt;&amp;lt; Show Limits All;
obj &amp;lt;&amp;lt; Save to Column Properties;&lt;BR /&gt;//obj&amp;nbsp;&amp;lt;&amp;lt;&amp;nbsp;Close Window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 May 2023 11:36:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630551#M82873</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-10T11:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630558#M82874</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;&lt;/P&gt;&lt;P&gt;On JMP 16.2.0 doing it manually works (i.e. all grouped columns get the "&lt;SPAN&gt;Show as Graph Reference Lines"&lt;/SPAN&gt;&amp;nbsp;checked) but the script is not working i.e.&amp;nbsp;"&lt;SPAN&gt;Show as Graph Reference Lines" remain unchecked.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 12:18:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630558#M82874</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-10T12:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630561#M82875</link>
      <description>&lt;P&gt;Try Manage Spec Limits for JMP16&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
obj = dt &amp;lt;&amp;lt; Manage Spec Limits(Process Variables(dt &amp;lt;&amp;lt; Get Column Group("Processes")));
Wait(1);
obj &amp;lt;&amp;lt; Show Limits All;
obj &amp;lt;&amp;lt; Save to Column Properties;//obj &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 May 2023 12:28:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630561#M82875</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-10T12:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630641#M82882</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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;SPAN&gt;JMP16 version of the script works but the end result of having the LSL/USL on the chart as reference lines is not satisfactory. JMP appears to automatically place the text LSL and USL at the extremities of the Y axis and the reference lines are hidden outside the visible y-axis range. Any way to fix this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 16:00:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/630641#M82882</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-10T16:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/631100#M82935</link>
      <description>&lt;P&gt;How would you adjust the scale with the data and the limits manually? I am not asking about the steps taken. I am asking about your criterion.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 16:37:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/631100#M82935</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2023-05-11T16:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to programmatically enable "Show as Graph Reference Lines" in Spec Limits property of a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/632152#M83053</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5358"&gt;@Mark_Bailey&lt;/a&gt;&amp;nbsp; I have explained the issue here&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-show-USL-LSL-lines-enabled-via-the-property-quot-Show-as/m-p/631433#M82968" target="_self"&gt;https://community.jmp.com/t5/Discussions/How-to-show-USL-LSL-lines-enabled-via-the-property-quot-Show-as/m-p/631433#M82968&lt;/A&gt;&amp;nbsp;. Apparently on a more recent JMP version, a satisfactory result could be expected. I am (we are) on 16.2.0 and do not want to upgrade yet.&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2023 09:27:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-programmatically-enable-quot-Show-as-Graph-Reference/m-p/632152#M83053</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-16T09:27:57Z</dc:date>
    </item>
  </channel>
</rss>

