cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

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

Help how to if-else graphic script output based on number of items selected in Local Data Filter

Looking for professional advice. I have these 3 variables:  Y( :C ), X( :A, :B ) to be plotted in a Variability Chart.

 

1. If number of A selected in local data filter equals to 1, I would like the graphic display output to be as below:

Fill Color( "green" );
Transparency( 0.3 );
Rect( 0, 0, 1, 80, 1 );

 

2. If number of A selected in local data filter equals to 2, I would like the graphic display output to be as below:

Fill Color( "green" );
Transparency( 0.3 );
Rect( 0, 0, 2, 80, 1 );

 

I have a JMP Pro 16.1.0.

1 REPLY 1
jthi
Super User

Re: Help how to if-else graphic script output based on number of items selected in Local Data Filter

You might have to utilize << Make Filter Change Handler.

-Jarmo

Recommended Articles