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
lala
Level IX

How to pass parameters to the specified JSL in the graph fetch?

Examples in the index of software

dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
gb = dt << Graph Builder( Show Control Panel( 0 ), Variables( X( :age ), Y( :weight ) ), Elements( Bar( X, Y, Legend( 7 ) ) ));
frame = (gb << report)[FrameBox( 1 )];
frame << Set Graphlet( Picture(  loader = Include( "$BUILTIN_SCRIPTS/hllib.jsl" );  hlp = loader:lazyLoad( "hllPresets" );  hlp:launchPie(); ), Title( "Pie Preset" ), Reapply( 1 ));

How does it pass parameters to hllib.jsl?
Which variable name is it in hllib.jsl?

Thanks!

2024-02-22_13-52-28.png

 

11 REPLIES 11
lala
Level IX

Re: How to pass parameters to the specified JSL in the graph fetch?

OK

2024-02-22_16-53-24.png

GET

:sex == &quot;M&quot;

 

 

lala
Level IX

Re: How to pass parameters to the specified JSL in the graph fetch?

https://community.jmp.com/t5/JMP-Scripts/WikiReader-Augmenting-Hover-Labels-with-web-data-and-images... 

 

  • I've found examples like this that require this approach.

Thanks!

Recommended Articles