<?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 can I highlight data points when clicking on legend in interactive HTML? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/477543#M72180</link>
    <description>&lt;P&gt;Thanks for your question,&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/19770"&gt;@simon_2&lt;/a&gt;. In JMP 17, HTML5 supports&amp;nbsp;interactive legends in Graph Builder reports.&amp;nbsp;&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="bfricke_0-1649431486761.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41612i1239BDBACB3EA05F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bfricke_0-1649431486761.png" alt="bfricke_0-1649431486761.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Apr 2022 15:32:36 GMT</pubDate>
    <dc:creator>Bryan_Fricke</dc:creator>
    <dc:date>2022-04-08T15:32:36Z</dc:date>
    <item>
      <title>How can I highlight data points when clicking on legend in interactive HTML?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/475392#M71992</link>
      <description>&lt;P&gt;I have a bivariate chart saved as interactive HTML. I would like to be able to select a legend and highlight points on the chart. Is it possible to do this using JSL?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the chart after saving as interactive HTML.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simon_2_0-1648842076350.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41430i597238E4657D2CF2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simon_2_0-1648842076350.png" alt="simon_2_0-1648842076350.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the JSL script:&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 = Open( "$SAMPLE_DATA/Big Class.jmp" );

biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Frame Size( 448, 348 ), Row Legend(
				sex,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 1 ),
				Marker Theme( "Standard" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

rbiv = biv &amp;lt;&amp;lt; report;
rbiv &amp;lt;&amp;lt; Save Interactive HTML( "height_weight_chart.html" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:23:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/475392#M71992</guid>
      <dc:creator>simon_2</dc:creator>
      <dc:date>2023-06-11T11:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: How can I highlight data points when clicking on legend in interactive HTML?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/475412#M71993</link>
      <description>&lt;P&gt;Legends aren't interactive in Interactive HTML, unfortunately. But you can achieve something close using a &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/create-dashboards.shtml#" target="_self"&gt;dashboard&lt;/A&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="Jordan_Hiller_0-1648844096349.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41431iA64553F308BA43B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jordan_Hiller_0-1648844096349.png" alt="Jordan_Hiller_0-1648844096349.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 20:17:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/475412#M71993</guid>
      <dc:creator>Jordan_Hiller</dc:creator>
      <dc:date>2022-04-01T20:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can I highlight data points when clicking on legend in interactive HTML?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/476033#M72054</link>
      <description>&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 18:08:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/476033#M72054</guid>
      <dc:creator>simon_2</dc:creator>
      <dc:date>2022-04-04T18:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can I highlight data points when clicking on legend in interactive HTML?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/477543#M72180</link>
      <description>&lt;P&gt;Thanks for your question,&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/19770"&gt;@simon_2&lt;/a&gt;. In JMP 17, HTML5 supports&amp;nbsp;interactive legends in Graph Builder reports.&amp;nbsp;&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="bfricke_0-1649431486761.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41612i1239BDBACB3EA05F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bfricke_0-1649431486761.png" alt="bfricke_0-1649431486761.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 15:32:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/477543#M72180</guid>
      <dc:creator>Bryan_Fricke</dc:creator>
      <dc:date>2022-04-08T15:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can I highlight data points when clicking on legend in interactive HTML?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/477669#M72203</link>
      <description>&lt;P&gt;&amp;nbsp;Cool. Looking forward to using JMP 17.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 23:13:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-highlight-data-points-when-clicking-on-legend-in/m-p/477669#M72203</guid>
      <dc:creator>simon_2</dc:creator>
      <dc:date>2022-04-08T23:13:57Z</dc:date>
    </item>
  </channel>
</rss>

