cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Due to global connectivity issues impacting AWS Services, users may experience unexpected errors while attempting to authorize JMP. Please try again later or contact support@jmp.com to be notified once all issues are resolved.

Discussions

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

Row States markers & colors disappear when selected in 'data filter source box()'

I'm trying to use a graph as a filter for another graph using 'data filter source box()' (see script below). 

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Selection Filter",
	Data Filter Context Box(
		H List Box(
			DFSB = Data Filter Source Box(
				Graph Builder(
					Size( 208, 207 ),
					Show Control Panel( 0 ),
					Show Legend( 0 ),
					Variables( X( :age ) ),
					Elements( Points( X, Legend( 3 ) ) ),
					SendToReport( Dispatch( {}, "Graph Builder", OutlineBox, {Set Title( "Filter" )} ) )
				)
			),
			Platform( Current Data Table(), Bubble Plot( X( :weight ), Y( :height ), Sizes( :age ), Title Position( 0, 0 ) ) )
		)
	)
);
dt << clear row states;

wait(1);
rs = dt << get row states();
selected_rows = [35,36,37];
rs[selected_rows] = 945;
DFSB << set row states (dt,rs);

 

Let's say I've marked row 35,35,37 with red stars. For some reason, when I select these 3 points in the filter graph, those three points automatically returned to default black points (see attached picture comparison of before & after selection). Is there a way for these points to remain as red stars even when selected ?

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Row States markers & colors disappear when selected in 'data filter source box()'

Thanks for this report - I agree that this is a bug, and we are working on a fix for a future release.  It looks like single-selection of points does not clear the row states, but brushing of points does clear the row states.

View solution in original post

2 REPLIES 2
pauldeen
Level VI

Re: Row States markers & colors disappear when selected in 'data filter source box()'

I can replicate the behavior (on JMP15, 16 and 17), seems like a bug to me. You should contact tech support.

Re: Row States markers & colors disappear when selected in 'data filter source box()'

Thanks for this report - I agree that this is a bug, and we are working on a fix for a future release.  It looks like single-selection of points does not clear the row states, but brushing of points does clear the row states.

Recommended Articles