<?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: JSL coding debug - help needed with &amp;quot;Label&amp;quot; in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914615#M107476</link>
    <description>&lt;P&gt;Also I am generating hundreds of plot, so activating by clicks will not work for my purpose. Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 20 Nov 2025 22:23:42 GMT</pubDate>
    <dc:creator>hasanurkhan</dc:creator>
    <dc:date>2025-11-20T22:23:42Z</dc:date>
    <item>
      <title>JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914581#M107463</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my JSL code, I am using&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dtt&amp;lt;&amp;lt;Set Label Columns (:skew);&lt;/P&gt;
&lt;P&gt;and I can see in the table that label icon is being added next to skew. Then I am using graph builder and within that routine, I have&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Show labels(1),&lt;/P&gt;
&lt;P&gt;But when plots are being generated, it is not showing Label. Can you please help on this? Do I need to add anything else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks much&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 21:24:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914581#M107463</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-20T21:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914592#M107464</link>
      <description>&lt;P&gt;Usually you enable labels from Label section on the left (this can be different for different plot types)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1763674479073.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87434iE684E2803D099046/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1763674479073.png" alt="jthi_0-1763674479073.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After you are happy with your graph builder, copy the script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Cities.jmp");
dt &amp;lt;&amp;lt; Set Label Columns(:City, :State);

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(528, 454),
	Show Control Panel(0),
	Variables(X(:Longitude), Y(:Latitude)),
	Elements(Points(X, Y, Legend(3), Label("Label by Row")))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Nov 2025 21:36:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914592#M107464</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-20T21:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914594#M107465</link>
      <description>&lt;P&gt;&amp;nbsp;you have to activate the labels in the control panel:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1763677659185.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87444i0FB95D444CC0C0C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1763677659185.png" alt="hogi_0-1763677659185.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
:name&amp;lt;&amp;lt; Label( 1 ); // no effect, label is already activated by default for this column
Graph Builder(
	Size( 451, 447 ),
	Graph Spacing( 4 ),
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Label( "Label by Row" ) ), Smoother( X, Y ) )
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1763675289298.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87437i0FBEA6150643C212/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1763675289298.png" alt="hogi_2-1763675289298.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Nov 2025 11:39:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914594#M107465</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-23T11:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914595#M107466</link>
      <description>&lt;P&gt;As an alternative, you can tag rows with the "label" flag - and show labels for the tagged rows:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_4-1763675472574.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87439iDD8A49847B092844/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_4-1763675472574.png" alt="hogi_4-1763675472574.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 21:51:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914595#M107466</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-20T21:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914610#M107472</link>
      <description>&lt;P&gt;Thank you for the tips but unfortunately still Not working. I highlighted in bold the lines in my JSL.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;dtt&amp;lt;&amp;lt;Set Label Columns (:skew);&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Summarize(dtt, byGroup0 = by (:layout));&lt;/DIV&gt;
&lt;DIV&gt;Summarize( dtt, byGroup1 = by( :Label ));&lt;/DIV&gt;
&lt;DIV&gt;Summarize( dtt, byGroup2 = by( :Vt_flavor));&lt;/DIV&gt;
&lt;DIV&gt;Summarize( dtt, byGroup3 = by( :Z_width));&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;For (nn =1, nn &amp;lt;= N Items (byGroup0), nn++,&lt;/DIV&gt;
&lt;DIV&gt;For ( ii = 1, ii &amp;lt;= N Items( byGroup1 ), ii++,&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; For ( jj = 1, jj &amp;lt;= N Items( byGroup2 ), jj++,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; For ( kk = 1, kk &amp;lt;= N Items( byGroup3 ), kk++,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; dtt &amp;lt;&amp;lt; select where(:Label == byGroup1[ii] &amp;amp; :Vt_flavor == byGroup2[jj] &amp;amp; :Z_width == byGroup3[kk] &amp;amp; :layout ==byGroup0[nn] );&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; //show(ii,jj,kk,bygroup1[ii],bygroup2[jj],bygroup3[kk]);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; sel = dtt &amp;lt;&amp;lt; get selected rows;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; If( n rows(sel) &amp;gt; 0,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; //show("inside",ii,jj,kk);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; dt = dtt &amp;lt;&amp;lt; subset( selected rows(1), selected columns(0));&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; gb = dt &amp;lt;&amp;lt; Graph Builder(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Size( 266, 228 ),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Show Control Panel( 0 ),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Variables( X( :nmos ), Y( :pmos ), Overlay( :PDK ) ),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt; Elements( Points( X, Y, legend( 5 ), Label("Label by Row") ) ),&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Show labels(1),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; SendToReport(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Dispatch(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; {},&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; "nmos",&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ScaleBox,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; {Label Row(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; {Show Major Grid( 1 ), Show Minor Labels( 1 ), Show Minor Grid( 1 )}&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; )}&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Nov 2025 22:11:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914610#M107472</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-20T22:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914612#M107473</link>
      <description>&lt;P&gt;could you please generate a code - as short as possible.&lt;BR /&gt;Starting with loading a data table , e.g.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and post it via:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1763676860912.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87443iD929DE711D198F93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1763676860912.png" alt="hogi_0-1763676860912.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-MESSAGE title="Getting fast helpful answers to your questions" uid="28583" url="https://community.jmp.com/t5/Getting-Started/Getting-fast-helpful-answers-to-your-questions/m-p/28583#U28583" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-MESSAGE title="Getting correct answers to correct questions quickly" uid="550097" url="https://community.jmp.com/t5/Discussions/Getting-correct-answers-to-correct-questions-quickly/m-p/550097#U550097" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 22:37:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914612#M107473</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-20T22:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914613#M107474</link>
      <description>&lt;P&gt;My sincere apology for dumb questions. Not sure what you meant by "Activate the label". I am just running JSL on my database and not clicking on any GUI to activate anything. I thought that setting the column "skew" as label and then what you suggested to add "Label by row" - it should work? Can you please elaborate on the activation part in JSL script (not clicking on any GUI)? Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 22:21:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914613#M107474</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-20T22:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914614#M107475</link>
      <description>&lt;P&gt;please share your code and we can check ...&lt;BR /&gt;&lt;BR /&gt;The smart/lazy way to use JMP:&lt;BR /&gt;use the GUI and let JMP generate the code.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 22:38:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914614#M107475</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-20T22:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914615#M107476</link>
      <description>&lt;P&gt;Also I am generating hundreds of plot, so activating by clicks will not work for my purpose. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 22:23:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914615#M107476</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-20T22:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914618#M107478</link>
      <description>&lt;P&gt;Attached are the JSL code and associated data table. Also the graph size is always coming to be&amp;nbsp;Size( 1401, 909 ) even though my code has it as Size (266,228). Appreciate if you can also take a look on that. Thank you so much for your time and help.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 22:54:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914618#M107478</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-20T22:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914633#M107481</link>
      <description>&lt;P&gt;Using GUI to create the script means, that do it once, copy the script and use that JMP generated JSL going forward. When JMP is able to create those scripts properly (like running platforms) it is the best JSL scripter you have.&lt;/P&gt;
&lt;P&gt;On your issue: solve the issues for single graph first (so drop the loops and use one subset). After you get that working as intended, then add the loops as it makes it much easier to debug.&amp;nbsp;When I run your plot for one I get this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1763702068512.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87449iB5647D12D753D6B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1763702068512.png" alt="jthi_0-1763702068512.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;My guess is that your problems are within the graphic script. I'm not exactly sure what you are trying to do within it?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 05:18:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914633#M107481</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-21T05:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914762#M107500</link>
      <description>&lt;P&gt;Did you use the code as-is or you changed something?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 19:35:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914762#M107500</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-21T19:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914763#M107501</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dtt = Open("$DOWNLOADS/output_sorted_test.jmp");
dtt &amp;lt;&amp;lt; Set Label Columns(:skew);

Summarize(dtt, byGroup0 = by(:layout));
Summarize(dtt, byGroup1 = by(:Label));
Summarize(dtt, byGroup2 = by(:Vt_flavor));
Summarize(dtt, byGroup3 = by(:Z_width));

nn = 1;
ii = 1;
jj = 1;
kk = 1;

dtt &amp;lt;&amp;lt; select where(:Label == byGroup1[ii] &amp;amp; :Vt_flavor == byGroup2[jj] &amp;amp; :Z_width == byGroup3[kk] &amp;amp; :layout == byGroup0[nn]);
sel = dtt &amp;lt;&amp;lt; get selected rows;

If(N Rows(sel) &amp;gt; 0, 
	dt = dtt &amp;lt;&amp;lt; subset(selected rows(1), selected columns(0));

	gb = dt &amp;lt;&amp;lt; Graph Builder(
		Size(266, 228),
		Show Control Panel(0),
		Variables(X(:nmos), Y(:pmos), Overlay(:PDK)),
		Elements(Points(X, Y, legend(5), Label("Label by Row"))),
		Show labels(1),
		SendToReport(
			Dispatch({}, "nmos", ScaleBox, {Label Row({Show Major Grid(1), Show Minor Labels(1), Show Minor Grid(1)})}),
			Dispatch({}, "pmos", ScaleBox, {Label Row({Show Major Grid(1), Show Minor Labels(1), Show Minor Grid(1)})}), 
			Dispatch({}, "Graph Builder", FrameBox,
				{Marker Size(6), Add Graphics Script(
					6,
					Description(""),
					Summarize(dt, byGroup = by(:PDK));
					colorList = {"Blue", "red", "Green", "Green"};
					Fill Pattern([0]);
					For(i = 1, i &amp;lt;= N Items(byGroup), i++,
						Pen Color(colorList[i]);
						theRows = dt &amp;lt;&amp;lt; get rows where(
							:PDK == byGroup[i] &amp;amp; :skew != "tttt" &amp;amp; :skew != "ff" &amp;amp; :skew != "fs" &amp;amp; :skew != "sf" &amp;amp; :skew != "ss"
						);
						If(Word(2, byGroup[i], "/") == "a",
							Line Style("Dashed"),
						);
						theRows = theRows |/ theRows[1];
						xMatrix = :nmos[theRows];
						yMatrix = :pmos[theRows];
						Line(xMatrix, yMatrix);
					);
				), Add Text Annotation(
					Text(byGroup1[ii] || "_" || "Z" || byGroup3[kk] || "_" || bygroup2[jj] || "_" || bygroup0[nn]),
					Background Color("White"), 
					Filled(0),
					Font("Segoe UI", 14, "Plain")
				)}
			)			
		)
	);
);

Write();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Nov 2025 20:13:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914763#M107501</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-21T20:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914764#M107502</link>
      <description>&lt;P&gt;This is very strange. I tried with one plot. Somehow it does not show the label. I also tried copying your code and ran - it does not show the label.&amp;nbsp; Below is what I get from a single plot and as you can see somehow the Label by row does not show up (as expected). I added in back, re-ran the script, it is same - no label.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 1430, 909 ),
	Show Control Panel( 0 ),
	Variables( X( :nmos ), Y( :pmos ), Overlay( :PDK ) ),
	Elements( Points( X, Y, Legend( 5 ) ) ),
	SendToReport(
		Dispatch( {}, "nmos", ScaleBox,
			{Label Row( {Show Major Grid( 1 ), Show Minor Grid( 1 ), Show Minor Labels( 1 )} )}
		),
		Dispatch( {}, "pmos", ScaleBox,
			{Label Row( {Show Major Grid( 1 ), Show Minor Grid( 1 ), Show Minor Labels( 1 )} )}
		),
		Dispatch( {}, "Graph Builder", FrameBox,
			{Marker Size( 6 ), Marker Drawing Mode( "Normal" ),
			Add Graphics Script(
				5,
				Description( "" ),
				Summarize( dt, byGroup = by( :PDK ) );
				colorList = {"Blue", "red", "Green", "Green"};
				Fill Pattern( [0] );
				For( i = 1, i &amp;lt;= N Items( byGroup ), i++,
					Pen Color( colorList[i] );
					theRows = dt &amp;lt;&amp;lt; get rows where(
						:PDK == byGroup[i] &amp;amp; :skew != "tttt" &amp;amp; :skew != "ff" &amp;amp; :skew != "fs" &amp;amp; :skew != "sf" &amp;amp;
						:skew != "ss"
					);
					If( Word( 2, byGroup[i], "/" ) == "a",
						Line Style( "Dashed" )
					);
					theRows = theRows |/ theRows[1];
					xMatrix = :nmos[theRows];
					yMatrix = :pmos[theRows];
					Line( xMatrix, yMatrix );
				);
			), Add Text Annotation(
				Text( "cgate_per_um_Z120_dev1_s9999019999d9999019999" ),
				Fixed Size( 0 ),
				Text Box( {87, 62, 341, 134} ),
				Background Color( "White" ),
				Font( "Segoe UI", 14, "Plain" ),
				Filled( 0 )
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV&gt;Note: JSL copied into JSL object to assist in easier reading by TXNELSON&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sat, 22 Nov 2025 23:44:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914764#M107502</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-11-22T23:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914776#M107503</link>
      <description>&lt;P&gt;The script you pasted isn't the same as my script as I have&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;		Elements(Points(X, Y, legend(5), Label("Label by Row"))),
		Show labels(1),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which you do not&lt;/P&gt;</description>
      <pubDate>Sat, 22 Nov 2025 05:53:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/914776#M107503</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-22T05:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/916117#M107643</link>
      <description>&lt;P&gt;I tried that (snippet below). It still does not put Label in the graph. No clue what is wrong. Thanks&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="hasanurkhan_0-1764611256831.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88061i5CC42C38B36215C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hasanurkhan_0-1764611256831.png" alt="hasanurkhan_0-1764611256831.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 17:48:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/916117#M107643</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-12-01T17:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/916120#M107644</link>
      <description>&lt;P&gt;To be honest, neither do I have any idea what is wrong. If I run the script I provided you with (with slight window resizing) I get this with JMP18&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1764612179647.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88062i96092ECEB77D6B09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1764612179647.png" alt="jthi_0-1764612179647.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And this with JMP19&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1764612216195.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88063iB6C278FA3BCFD216/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1764612216195.png" alt="jthi_1-1764612216195.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 18:05:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/916120#M107644</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-12-01T18:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: JSL coding debug - help needed with "Label"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/916334#M107668</link>
      <description>&lt;P&gt;Let me update the JMP version and see if that helps. Thanks much.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 22:19:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-coding-debug-help-needed-with-quot-Label-quot/m-p/916334#M107668</guid>
      <dc:creator>hasanurkhan</dc:creator>
      <dc:date>2025-12-02T22:19:39Z</dc:date>
    </item>
  </channel>
</rss>

