Does somebody use GraphBuilder in his/her Dashboards - with manually selected markers?
If yes, how do you prevent Graph Builder from overwriting YOUR settings?
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder(
Variables( X( :height ), Y( :weight ), Overlay( :sex ), Color( :age ) ),
Elements( Points( X, Y, Legend( 1 ) ) ),
Local Data Filter( Add Filter( columns( :sex ) ) ),
SendToReport(
Dispatch( {}, "400", ScaleBox,
{Legend Model(
1,
Properties( 7, {Marker( "Dot" ), Marker Size( 30 )}, Item ID( "M", 1 ) )
)}
),
Dispatch( {}, "Graph Builder", FrameBox, {Marker Drawing Mode( "Outlined" )} )
)
)
The background: there are some points in my data set which are not in focus at the moment, but should be plotted somehow.
The idea: show them as tiny gray dots.
But it seems that the setting for marker state DOT is deleted whenever the respective legend item is excluded by a data filter.
One could say: no wonder, how could Jmp remember such a setting when the legend item is gone?
Actually Jmp can remember may other marker settings - and the marker size - but not this one.