<?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 pass parameters to the specified JSL in the graph fetch? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725010#M90885</link>
    <description>&lt;P&gt;You run the above JSL,&lt;BR /&gt;The cursor hovers over the graph, gets the "age" parameter, and gets the pie chart via hllib.jsl.&lt;BR /&gt;No pie chart appears without hllib.jsl.&lt;BR /&gt;So I think it's passing the age parameter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want to know how this example works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2024 06:27:52 GMT</pubDate>
    <dc:creator>lala</dc:creator>
    <dc:date>2024-02-22T06:27:52Z</dc:date>
    <item>
      <title>How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725000#M90881</link>
      <description>&lt;P&gt;Examples in the index of software&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
gb = dt &amp;lt;&amp;lt; Graph Builder( Show Control Panel( 0 ), Variables( X( :age ), Y( :weight ) ), Elements( Bar( X, Y, Legend( 7 ) ) ));
frame = (gb &amp;lt;&amp;lt; report)[FrameBox( 1 )];
frame &amp;lt;&amp;lt; Set Graphlet( Picture(  loader = Include( "$BUILTIN_SCRIPTS/hllib.jsl" );  hlp = loader:lazyLoad( "hllPresets" );  hlp:launchPie(); ), Title( "Pie Preset" ), Reapply( 1 ));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;How does it pass parameters to hllib.jsl?&lt;BR /&gt;Which variable name is it in hllib.jsl?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-02-22_13-52-28.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61341iD491B8353F1BB5C6/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-02-22_13-52-28.png" alt="2024-02-22_13-52-28.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 06:01:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725000#M90881</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T06:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725004#M90883</link>
      <description>&lt;P&gt;What are you trying to pass?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 06:15:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725004#M90883</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-22T06:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725010#M90885</link>
      <description>&lt;P&gt;You run the above JSL,&lt;BR /&gt;The cursor hovers over the graph, gets the "age" parameter, and gets the pie chart via hllib.jsl.&lt;BR /&gt;No pie chart appears without hllib.jsl.&lt;BR /&gt;So I think it's passing the age parameter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want to know how this example works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 06:27:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725010#M90885</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T06:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725013#M90887</link>
      <description>&lt;P&gt;Age is found from x-axis so it will be shown in the hoverlabel&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Show Control Panel(0),
	Variables(X(:age), Y(:weight)),
	Elements(Bar(X, Y, Legend(7))),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Set Graphlet(
				Picture(
					Graph Builder(
						Size(502, 435),
						Show Control Panel(0),
						Variables(X(:name), Y(:weight)),
						Elements(Pie(X, Y, Legend(10)))
					)
				)
			)}
		)
	)
);&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-1708584444823.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61347i98BA2FD1D7EC3B8F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1708584444823.png" alt="jthi_0-1708584444823.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 06:47:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725013#M90887</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-22T06:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725017#M90889</link>
      <description>&lt;P&gt;Thank jthi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's probably not the answer I was looking for.&lt;BR /&gt;I found this example because I wanted to keep it&amp;nbsp;&amp;nbsp;the form of&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Include( "$BUILTIN_SCRIPTS/hllib.jsl" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Because I also need to use Include("D:\test.jsl") in my own example application;The form of.&lt;BR /&gt;So I need to know how hllib.jsl gets parameter passing in the above example.&lt;BR /&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 07:07:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725017#M90889</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T07:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725020#M90891</link>
      <description>&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Scripts/WikiReader-Augmenting-Hover-Labels-with-web-data-and-images/ta-p/237488" target="_self"&gt;https://community.jmp.com/t5/JMP-Scripts/WikiReader-Augmenting-Hover-Labels-with-web-data-and-images/ta-p/237488&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;I've found examples like this that require this approach.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 07:14:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725020#M90891</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T07:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725021#M90892</link>
      <description>&lt;P&gt;I have commented few times to you already, read the documentation regarding hover labels from JMP Help and especially&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/work-with-the-hover-label-execution-context.shtml#" target="_blank"&gt;Work with the Hover Label Execution Context (jmp.com)&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way of seeing all the variables (to my knowledge) which you can access in hover labels local context, is to use Namespace("local") &amp;lt;&amp;lt; get contents()&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); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Show Control Panel(0),
	Variables(X(:age), Y(:weight)),
	Elements(Bar(X, Y, Legend(7))),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Set Graphlet(
				Picture(
					Show(Namespace("local") &amp;lt;&amp;lt; Get Contents());
					Graph Builder(
						Size(502, 435),
						Show Control Panel(0),
						Variables(X(:name), Y(:weight)),
						Elements(Pie(X, Y, Legend(10)))
					)
				)
			)}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Namespace("local") &amp;lt;&amp;lt; Get Contents() = 
{
	{"_filters", {:age}}, 
	{"_mode", "Picture"}, 
	{"_where", ":age == 17"}, 
	{"_age", 17}, 
	{"_name", "KIRK, LAWRENCE, LINDA"}, 
	{"_groupings", {:age}},
	{"_firstRow", 38}, 
	{"_Mean(weight)", 140.666666666667}, 
	{"_underlyingRows", 3}, 
	{"_measurements", {:weight}}, 
	{"_displaySegName", "BarSeg"}, 
	{"_dataTable", Data Table("Big Class")},
	{"_summaryStatistic", "Mean"}, 
	{"_drillDepth", 1}, 
	{"_xaxis", 0}, 
	{"_yaxis", 0}, 
	{"_customData", [=&amp;gt; ]}, 
	{"_localDataFilter", "Local Data Filter(Close Outline(1), Add Filter(columns(:age), Where(:age == 17)))"},
	{"_whereExpr", :age == 17}
};&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Feb 2024 07:22:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725021#M90892</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-22T07:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725023#M90893</link>
      <description>&lt;P class=""&gt;&lt;SPAN class=""&gt;Yes, thank you for your patient help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;My understanding of scripts is limited.&lt;/SPAN&gt;&lt;SPAN class=""&gt;Never understood.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;I am so that I can understand,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;But it doesn't seem to work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-02-22_15-47-45.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61349iE5481AB552D99DA6/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-02-22_15-47-45.png" alt="2024-02-22_15-47-45.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 528, 450 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements( Bar( X, Y, Legend( 3 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Set Textlet(
				Setup(
					local:encodedWhere = XML Encode( local:_where );
					/* Show() provides additional information about the
					HLEC variables in the log */
					Show( Namespace( "local" ) &amp;lt;&amp;lt; Get Contents() );
				),
				Markup(
					"
&amp;lt;b&amp;gt;Groupings&amp;lt;/b&amp;gt;: {local:_groupings}
&amp;lt;b&amp;gt;Measurements&amp;lt;/b&amp;gt;: {local:_measurements}
&amp;lt;b&amp;gt;Summary statistic&amp;lt;/b&amp;gt;: {local:_summaryStatistic}
&amp;lt;b&amp;gt;Filter columns&amp;lt;/b&amp;gt;: {local:_filters}
&amp;lt;b&amp;gt;Where clause&amp;lt;/b&amp;gt;: {local:encodedWhere}
&amp;lt;b&amp;gt;Graph type&amp;lt;/b&amp;gt;: {local:_displaySegName}
&amp;lt;b&amp;gt;Data table&amp;lt;/b&amp;gt; {local:_dataTable}
&amp;lt;b&amp;gt;Drill depth&amp;lt;/b&amp;gt;: {local:_drillDepth}
&amp;lt;b&amp;gt;First Row&amp;lt;/b&amp;gt;: {local:_firstRow}
&amp;lt;b&amp;gt;Underlying Rows&amp;lt;/b&amp;gt;: {local:_underlyingRows}
"
				)
			)}
		)
	)
);
a = {local:encodedWhere};
b = {local:encodedWhere}[1];&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Feb 2024 07:51:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725023#M90893</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T07:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725027#M90895</link>
      <description>&lt;P&gt;They are in local scope, so they don't exist outside hover label -&amp;gt; use them inside the hover label call.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 08:33:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725027#M90895</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-22T08:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725030#M90897</link>
      <description>&lt;P&gt;yes&lt;/P&gt;&lt;P&gt;I try&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Set Clipboard( {local:encodedWhere} );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;in JSL 18 row&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 528, 450 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements( Bar( X, Y, Legend( 3 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Set Textlet(
				Setup(
					local:encodedWhere = XML Encode( local:_where );
					/* Show() provides additional information about the
					HLEC variables in the log */
					Show( Namespace( "local" ) &amp;lt;&amp;lt; Get Contents() );
					Set Clipboard( {local:encodedWhere} );
				),
				Markup(
					"
&amp;lt;b&amp;gt;Groupings&amp;lt;/b&amp;gt;: {local:_groupings}
&amp;lt;b&amp;gt;Measurements&amp;lt;/b&amp;gt;: {local:_measurements}
&amp;lt;b&amp;gt;Summary statistic&amp;lt;/b&amp;gt;: {local:_summaryStatistic}
&amp;lt;b&amp;gt;Filter columns&amp;lt;/b&amp;gt;: {local:_filters}
&amp;lt;b&amp;gt;Where clause&amp;lt;/b&amp;gt;: {local:encodedWhere}
&amp;lt;b&amp;gt;Graph type&amp;lt;/b&amp;gt;: {local:_displaySegName}
&amp;lt;b&amp;gt;Data table&amp;lt;/b&amp;gt; {local:_dataTable}
&amp;lt;b&amp;gt;Drill depth&amp;lt;/b&amp;gt;: {local:_drillDepth}
&amp;lt;b&amp;gt;First Row&amp;lt;/b&amp;gt;: {local:_firstRow}
&amp;lt;b&amp;gt;Underlying Rows&amp;lt;/b&amp;gt;: {local:_underlyingRows}
"
				);				
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it only get&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;{local:encodedWhere}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Feb 2024 08:45:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725030#M90897</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T08:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725032#M90898</link>
      <description>&lt;P&gt;OK&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-02-22_16-53-24.png" style="width: 636px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61351iBF1979879ED566FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-02-22_16-53-24.png" alt="2024-02-22_16-53-24.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;GET&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:sex == &amp;amp;quot;M&amp;amp;quot;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 08:54:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725032#M90898</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-02-22T08:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass parameters to the specified JSL in the graph fetch?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725033#M90899</link>
      <description>&lt;P&gt;I don't test anything in JMP18 as it isn't ready product so no idea if it behaves in different way (and if it does I will only comment that to JMP developers). JMP lists aren't evaluated, you will have to evaluated it or not use the list (there should be no need for adding the list in your case).&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");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Show Control Panel(0),
	Variables(X(:age), Y(:weight)),
	Elements(Bar(X, Y, Legend(7))),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Set Graphlet(
				Picture(
					Set Clipboard(Char(local:_where));
					//Set Clipboard(local:encodedWhere);
					Graph Builder(
						Size(502, 435),
						Show Control Panel(0),
						Variables(X(:name), Y(:weight)),
						Elements(Pie(X, Y, Legend(10)))
					)
				)
			)}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Feb 2024 08:55:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-pass-parameters-to-the-specified-JSL-in-the-graph-fetch/m-p/725033#M90899</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-22T08:55:58Z</dc:date>
    </item>
  </channel>
</rss>

