cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
hogi
Level XI

Data Filter source Box - issue with the legend

Hi,

  • in the right graph, I can click on items in the graph or in the legend. The selected items get highlighted in the graph and in the legend.
  • in the left graph, I can click on items in the legend. The selected items get highlighted in the legend - but not in the graph (*)
    in addition, the content of the right graph gets adjusted
  • in the left graph, I can click on items in the graph. The selected items get highlighted in the graph - but not in the legend (**)
    in addition, the content of the right graph gets adjusted

(*) why ? can I change this behavior?

(**) less interesting. ok, it's symmetric ...

TS-00138704


 

 

View more...
Local Here(
	table1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
	New Window( "Big Class - Dashboard",
		Data Filter Context Box(
			Tab Page Box(
				"Dashboard",
				H Splitter Box(
					Size( 1046, 387 ),
					<<Sizes( {0.500479386385427, 0.499520613614573} ),
					Data Filter Source Box(
						Tab Page Box(
							"Graph Builder",
							Scroll Box(
								Size( 522, 361 ),
								Flexible( 1 ),
								V List Box(
									table1 <<
									Graph Builder(
										Size( 465, 360 ),
										Show Control Panel( 0 ),
										Show Title( 0 ),
										Fit to Window,
										Summary Statistic( "Median" ),
										Graph Spacing( 4 ),
										Variables( X( :sex ), Overlay( :sex ) ),
										Elements( Bar( X, Legend( 3 ) ) ),
										SendToReport(
											Dispatch( {}, "Graph Builder", FrameBox,
												{
												Fill Selection Mode(
													"Unselected Faded"
												)}
											)
										)
									)
								)
							),
							<<Title( "Graph Builder" ),
							<<Icon( "Trellis" )
						)
					),
					Tab Page Box(
						"Graph Builder",
						Scroll Box(
							Size( 521, 361 ),
							Flexible( 1 ),
							V List Box(
								table1 <<
								Graph Builder(
									Size( 402, 360 ),
									Show Control Panel( 0 ),
									Show Title( 0 ),
									Fit to Window,
									Summary Statistic( "Median" ),
									Graph Spacing( 4 ),
									Variables(
										X( :sex ),
										Y( :weight ),
										Overlay( :sex )
									),
									Elements( Bar( X, Y, Legend( 19 ) ) )
								)
							)
						),
						<<Title( "Graph Builder" ),
						<<Icon( "Trellis" )
					)
				),
				<<Title( "Dashboard" ),
				<<Icon( "" )
			)
		)
	) << Move Window( 243, 183 ) << Set Window Icon( "ReportFile" );
);

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Data Filter source Box - issue with the legend

Thanks @hogi - this looks like a bug.

 

Within the selection filter, the selected row state should be private.  When clicking in the legend in this case, the selection is changing in the data table row states, rather than the private row states.  Currently there are no options to selection filter behaviors - the intended behavior is for selection in the filter reports to act as exclude in the connected reports.

 

The legend issue will be fixed in a future release.

 

Thanks,

-Dan

View solution in original post

2 REPLIES 2

Re: Data Filter source Box - issue with the legend

Thanks @hogi - this looks like a bug.

 

Within the selection filter, the selected row state should be private.  When clicking in the legend in this case, the selection is changing in the data table row states, rather than the private row states.  Currently there are no options to selection filter behaviors - the intended behavior is for selection in the filter reports to act as exclude in the connected reports.

 

The legend issue will be fixed in a future release.

 

Thanks,

-Dan

hogi
Level XI

Re: Data Filter source Box - issue with the legend

Hi Dan, thank you for the fast reply.