<?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 Drill down graph through hoverlabel from summary table to underlying linked table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Drill-down-graph-through-hoverlabel-from-summary-table-to/m-p/907661#M106587</link>
    <description>&lt;P&gt;I've got a table that has a summary table built off of it (with linkage).&amp;nbsp; I wanted to have a graph in the summary table use the table links to pull up a hoverlabel graphlet from the underlying table.&amp;nbsp; I could swear I did this before years ago, but...well if I did it was years ago and I can't seem to remember how to do it, and not having luck finding the answer with my mediocre google skills.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Is this actually possible?&lt;/P&gt;</description>
    <pubDate>Tue, 14 Oct 2025 18:43:23 GMT</pubDate>
    <dc:creator>emorris1000</dc:creator>
    <dc:date>2025-10-14T18:43:23Z</dc:date>
    <item>
      <title>Drill down graph through hoverlabel from summary table to underlying linked table</title>
      <link>https://community.jmp.com/t5/Discussions/Drill-down-graph-through-hoverlabel-from-summary-table-to/m-p/907661#M106587</link>
      <description>&lt;P&gt;I've got a table that has a summary table built off of it (with linkage).&amp;nbsp; I wanted to have a graph in the summary table use the table links to pull up a hoverlabel graphlet from the underlying table.&amp;nbsp; I could swear I did this before years ago, but...well if I did it was years ago and I can't seem to remember how to do it, and not having luck finding the answer with my mediocre google skills.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Is this actually possible?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 18:43:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Drill-down-graph-through-hoverlabel-from-summary-table-to/m-p/907661#M106587</guid>
      <dc:creator>emorris1000</dc:creator>
      <dc:date>2025-10-14T18:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Drill down graph through hoverlabel from summary table to underlying linked table</title>
      <link>https://community.jmp.com/t5/Discussions/Drill-down-graph-through-hoverlabel-from-summary-table-to/m-p/907673#M106588</link>
      <description>&lt;P&gt;This can be done by explicitly specifying the underlying table as a recipient of &lt;FONT face="courier new,courier"&gt;&amp;lt;&amp;lt; Graph Builder&lt;/FONT&gt; in the expression of the hover label command:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1760468483059.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/85073i2929B0F14F178E2D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1760468483059.png" alt="hogi_1-1760468483059.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;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Names Default to Here(1);
new namespace("myNs");
myNS:dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );

myNS:dt &amp;lt;&amp;lt; Summary(
	Group( :sex )
);

Graph Builder(
	Variables( X( :sex ), Y( :N Rows ) ),
	Elements( Bar( X, Y, Legend( 3 ) ) ),
	SendToReport(
		Dispatch( {}, "Graph Builder", FrameBox,
			{Set Graphlet(
				Picture(
					myNS:dt &amp;lt;&amp;lt; Graph Builder(
						Size( 656, 556 ),
						Show Control Panel( 0 ),
						Graph Spacing( 4 ),
						Variables( X( :height ), Y( :weight ) ),
						Elements(
							Points( X, Y, Legend( 3 ) ),
							Smoother( X, Y, Legend( 4 ) )
						)
					)
				)
			)}
		)
	)
);
	
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2025 19:03:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Drill-down-graph-through-hoverlabel-from-summary-table-to/m-p/907673#M106588</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-14T19:03:13Z</dc:date>
    </item>
  </channel>
</rss>

