<?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 hover over a point and see the image associated with that row in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563021#M77610</link>
    <description>&lt;P&gt;You can use hover label and new http request (with get) for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is fairly quick example which will get the image from url and show it in hover label and when user clicks on the hover label, that url is opened in the web browser.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Test",
	Add Rows(3),
	New Column("Row", Numeric, Continuous, Values([1,2,3])),
	New Column("URL", Character, Nominal, Values({
		"https://www.jmp.com/en_fi/applications/data-visualization-exploratory-data-analysis/_jcr_content/par/styledcontainer_6515/par/lightbox/lightboxImage.img.jpg/1519152477742.jpg",
		"https://www.jmp.com/en_fi/applications/data-visualization-exploratory-data-analysis/_jcr_content/par/styledcontainer_b22d/par/lightbox_0/lightboxImage.img.jpg/1468506377078.jpg",
		"https://www.jmp.com/en_fi/applications/data-visualization-exploratory-data-analysis/_jcr_content/par/styledcontainer_4bc6/par/lightbox_d40e/lightboxImage.img.jpg/1468507003006.jpg"
	}))
);

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(535, 457),
	Show Control Panel(0),
	Variables(X(:Row), Y(:Row)),
	Elements(Points(X, Y, Legend(3)))
);

frame = Report(gb)[FrameBox(1)];
frame &amp;lt;&amp;lt; Set Graphlet(
	Picture(		
		img = New Image(
			New HTTP Request(
				Method("GET"),
				URL(:URL[local:_firstRow])
			) &amp;lt;&amp;lt; send
		);	
	),
	Click(
		Web(:URL[local:_firstRow])
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I would suggest modifying this at least in such a way that when the image is loaded first them, it should be saved to the data table to avoid the need to request same image again and again.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1667327691211.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46790i98F7310125F00BF9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1667327691211.png" alt="jthi_0-1667327691211.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hover labels also have fairly ok documentation in JMP Help &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/hover-labels.shtml#599987" target="_blank" rel="noopener"&gt; Scripting Guide &amp;gt; Scripting Graphs &amp;gt; Hover Labels&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Nov 2022 18:37:25 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2022-11-01T18:37:25Z</dc:date>
    <item>
      <title>How to hover over a point and see the image associated with that row</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563009#M77609</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi.&amp;nbsp; I have a column in a table with URL links to images.&amp;nbsp; I would like to hover over a point and see the image associated with that row.&amp;nbsp; And also click the point and go to the URL. Any help would be much appreciated.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:28:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563009#M77609</guid>
      <dc:creator>SampleTapir814</dc:creator>
      <dc:date>2023-06-11T11:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to hover over a point and see the image associated with that row</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563021#M77610</link>
      <description>&lt;P&gt;You can use hover label and new http request (with get) for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is fairly quick example which will get the image from url and show it in hover label and when user clicks on the hover label, that url is opened in the web browser.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Test",
	Add Rows(3),
	New Column("Row", Numeric, Continuous, Values([1,2,3])),
	New Column("URL", Character, Nominal, Values({
		"https://www.jmp.com/en_fi/applications/data-visualization-exploratory-data-analysis/_jcr_content/par/styledcontainer_6515/par/lightbox/lightboxImage.img.jpg/1519152477742.jpg",
		"https://www.jmp.com/en_fi/applications/data-visualization-exploratory-data-analysis/_jcr_content/par/styledcontainer_b22d/par/lightbox_0/lightboxImage.img.jpg/1468506377078.jpg",
		"https://www.jmp.com/en_fi/applications/data-visualization-exploratory-data-analysis/_jcr_content/par/styledcontainer_4bc6/par/lightbox_d40e/lightboxImage.img.jpg/1468507003006.jpg"
	}))
);

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(535, 457),
	Show Control Panel(0),
	Variables(X(:Row), Y(:Row)),
	Elements(Points(X, Y, Legend(3)))
);

frame = Report(gb)[FrameBox(1)];
frame &amp;lt;&amp;lt; Set Graphlet(
	Picture(		
		img = New Image(
			New HTTP Request(
				Method("GET"),
				URL(:URL[local:_firstRow])
			) &amp;lt;&amp;lt; send
		);	
	),
	Click(
		Web(:URL[local:_firstRow])
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I would suggest modifying this at least in such a way that when the image is loaded first them, it should be saved to the data table to avoid the need to request same image again and again.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1667327691211.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46790i98F7310125F00BF9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1667327691211.png" alt="jthi_0-1667327691211.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hover labels also have fairly ok documentation in JMP Help &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/hover-labels.shtml#599987" target="_blank" rel="noopener"&gt; Scripting Guide &amp;gt; Scripting Graphs &amp;gt; Hover Labels&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 18:37:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563021#M77610</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-11-01T18:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to hover over a point and see the image associated with that row</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563049#M77612</link>
      <description>&lt;P&gt;Thank you for the reply.&amp;nbsp; I tried to use this information but could not get it to work.&amp;nbsp; Can you please take a look at my screen captures and let me know if you see anything I may want to change.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 19:24:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-hover-over-a-point-and-see-the-image-associated-with-that/m-p/563049#M77612</guid>
      <dc:creator>SampleTapir814</dc:creator>
      <dc:date>2022-11-01T19:24:58Z</dc:date>
    </item>
  </channel>
</rss>

