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