cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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.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.png

 

Jim

Recommended Articles