<?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 image in a label in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762116#M94070</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a database JMP. There are 2 columns "expression" with image (JPG) inside and labelled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought that JMP will show the 2 images in the label of a point but there is only one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to have more than 1 image in a label?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 31 May 2024 14:59:19 GMT</pubDate>
    <dc:creator>Françoise</dc:creator>
    <dc:date>2024-05-31T14:59:19Z</dc:date>
    <item>
      <title>image in a label</title>
      <link>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762116#M94070</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a database JMP. There are 2 columns "expression" with image (JPG) inside and labelled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought that JMP will show the 2 images in the label of a point but there is only one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to have more than 1 image in a label?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 14:59:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762116#M94070</guid>
      <dc:creator>Françoise</dc:creator>
      <dc:date>2024-05-31T14:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: image in a label</title>
      <link>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762118#M94071</link>
      <description>&lt;P&gt;I usually either create new column which combines them into single image and use that or hover labels. Below is hover label example (it does require some scripting)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class Families.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(534, 456),
	Show Control Panel(0),
	Variables(X(:height), Y(:weight)),
	Elements(Points(X, Y, Legend(6)))
);

frame = (gb &amp;lt;&amp;lt; report)[FrameBox(1)];
frame &amp;lt;&amp;lt; Set Graphlet(
	Picture(
		hlb = H List Box(Picture Box(:picture[local:_firstRow]), Picture Box(:pet[local:_firstRow]))
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1717168976134.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64679iB4B3525A35C6C70A/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1717168976134.png" alt="jthi_0-1717168976134.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nowadays there might be some easier options but these are the ones I'm used to&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 15:23:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762118#M94071</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-31T15:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: image in a label</title>
      <link>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762121#M94073</link>
      <description>&lt;P&gt;I am not aware of a way to do this in JMP directly.&amp;nbsp; However, you can create a new column that has both images joined together and then use that as your label column.&lt;/P&gt;
&lt;P&gt;Here is a simple example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1717169631584.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64680iFEEAC239292BD5C8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1717169631584.png" alt="txnelson_0-1717169631584.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 Families.jmp" );
dt &amp;lt;&amp;lt; New Column( "together", expression );
For( i = 1, i &amp;lt;= N Rows( dt ), i++,
	hlb = H List Box( dt:picture[i], dt:pet[i] );
	dt:together[i] = hlb &amp;lt;&amp;lt; get picture;
);
dt:picture &amp;lt;&amp;lt; label( 0 );
dt:pet &amp;lt;&amp;lt; label( 0 );
dt:together &amp;lt;&amp;lt; label( 1 );
Graph Builder(
	Size( 528, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 6 ) ), Smoother( X, Y, Legend( 7 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2024 15:34:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762121#M94073</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-05-31T15:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: image in a label</title>
      <link>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762157#M94081</link>
      <description>&lt;P&gt;If you have Jmp16 or above, you can use &lt;FONT face="courier new,courier"&gt;Hover Label / Label Viewer&lt;/FONT&gt; to enable Graph builder to show more than a single picture as label:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1717177907017.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64701i30BFF2A944343665/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1717177907017.png" alt="hogi_0-1717177907017.png" /&gt;&lt;/span&gt;&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="hogi_1-1717178017790.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64702i1315A122DC538548/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1717178017790.png" alt="hogi_1-1717178017790.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 17:53:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762157#M94081</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-31T17:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: image in a label</title>
      <link>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762166#M94084</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for all answers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use the solution of Jim. Its OK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 19:59:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/image-in-a-label/m-p/762166#M94084</guid>
      <dc:creator>Françoise</dc:creator>
      <dc:date>2024-05-31T19:59:17Z</dc:date>
    </item>
  </channel>
</rss>

