cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Chris_Liu
Level II

JSL generate map graph

As the attachment, the JPG  graph is manually generated, then save as JSL, when add for loop and use "char(columnname(i))" to place "Flange", it not display "Row Legend()".

manually generated:

 

Bivariate(
	Y(:Y),
	X(:X),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Marker Size(5), Marker Drawing Mode("Normal"),
			Row Legend(
				Flange,
				Color(1),
				Color Theme("Blue to Gray to Red"),
				Marker(0),
				Marker Theme(""),
				Continuous Scale(1),
				Reverse Scale(0),
				Excluded Rows(0)
			)}
		)
	)
);
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: JSL generate map graph

If you change your JSL line in your attached JSL file from

Char( columnname(i)),

to

Eval( columnname(i)),

your script will work

txnelson_1-1679398293388.pngtxnelson_1-1679398293388.png

 

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: JSL generate map graph

If you change your JSL line in your attached JSL file from

Char( columnname(i)),

to

Eval( columnname(i)),

your script will work

txnelson_1-1679398293388.pngtxnelson_1-1679398293388.png

 

Jim

Recommended Articles