<?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: JMP 16 to JMP 18- get Legend Server/Item question in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847741#M102267</link>
    <description>&lt;P&gt;workaround: use &lt;FONT face="courier new,courier"&gt;get legend item()&lt;/FONT&gt; for each item.&lt;BR /&gt;&lt;LI-MESSAGE title="issue with get legend items" uid="825469" url="https://community.jmp.com/t5/Discussions/issue-with-get-legend-items/m-p/825469#U825469" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;[fixed in JMP19]&lt;/P&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;&amp;nbsp;&lt;/P&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Mar 2025 21:09:31 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-03-13T21:09:31Z</dc:date>
    <item>
      <title>JMP 16 to JMP 18- get Legend Server/Item question</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847716#M102264</link>
      <description>&lt;P&gt;I recently moved from JMP 16 to JMP 18 and the following line in my script is causing an error while plotting using the graph builder&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;server = gb_obj&amp;lt;&amp;lt; Get Legend Server; For Each({item}, server &amp;lt;&amp;lt; Get Legend Items, 	item &amp;lt;&amp;lt; Set Properties({Marker("Minus")}));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;where gb_obj is the graph builder object and error is&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Send Expects Scriptable Object at row 6 in access or evaluation of 'List' , {/*###*/LegendModelItem( Label( "meas_para_name" ), Type( "Marker" ) )}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;where "meas_para_name" is the name of a measured parameter in the data table plotted.&lt;/P&gt;&lt;P&gt;What to change to get this to work on JMP18?&lt;/P&gt;&lt;P&gt;(let me know if above info is not enough)&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 15:20:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847716#M102264</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2025-03-13T15:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16 to JMP 18- get Legend Server/Item question</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847741#M102267</link>
      <description>&lt;P&gt;workaround: use &lt;FONT face="courier new,courier"&gt;get legend item()&lt;/FONT&gt; for each item.&lt;BR /&gt;&lt;LI-MESSAGE title="issue with get legend items" uid="825469" url="https://community.jmp.com/t5/Discussions/issue-with-get-legend-items/m-p/825469#U825469" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;[fixed in JMP19]&lt;/P&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;&amp;nbsp;&lt;/P&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 21:09:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847741#M102267</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-03-13T21:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16 to JMP 18- get Legend Server/Item question</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847839#M102275</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;Thanks. Below (with for each) does not work in JMP 18. What am I missing?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;server = gb_expr_obj&amp;lt;&amp;lt; Get Legend Server; For Each({item}, server &amp;lt;&amp;lt; Get Legend Item (), 	item &amp;lt;&amp;lt; Set Properties({Marker("Minus")}));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Mar 2025 10:19:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847839#M102275</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2025-03-14T10:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16 to JMP 18- get Legend Server/Item question</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847875#M102277</link>
      <description>&lt;P&gt;Use Get legend Items in a first step. And use "i" as index for the second step:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;server = gb &amp;lt;&amp;lt; Get Legend Server;
Nitems = Nitems(( server &amp;lt;&amp;lt; Get Legend Items)[1]);
for(i=1, i&amp;lt;= Nitems, i++, 
Eval(Eval Expr(item = server  &amp;lt;&amp;lt; Get Legend Item(1, Expr(i))));
	item &amp;lt;&amp;lt; Set Label( "Item " || Char( i ) )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If you have multiple layers, you might need to change the first index as well.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 13:35:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/847875#M102277</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-03-14T13:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16 to JMP 18- get Legend Server/Item question</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/848771#M102427</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;When is JMP 19 getting released?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 14:25:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/848771#M102427</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2025-03-20T14:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16 to JMP 18- get Legend Server/Item question</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/848827#M102434</link>
      <description>&lt;P&gt;2025-09&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 15:45:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-to-JMP-18-get-Legend-Server-Item-question/m-p/848827#M102434</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-03-20T15:45:31Z</dc:date>
    </item>
  </channel>
</rss>

