cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

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