cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

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

Characters as Markers: How to get rid of the shadows?

I like the ability to add outlines to data points. This is very useful for separating partially overlapping data points.

Unfortunately, when characters are used as markers, the outline mode looks very unprofessional - kind of like shadows, but without blur.

Besides turning off the outline mode - is there a way to get rid of the "shadows"?

 

(view in My Videos)

 

 

Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Variables( X( :sex ), Y( :height ), Overlay( :sex ) ),
	Elements(
		Points( X, Y, Legend( 28 ), Jitter( "Random Uniform" ), Jitter Limit( 2 ) )
	),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				28,
				Properties( 0, {Marker Size( 6 )}, Item ID( "F", 1 ) ),
				Properties( 1, {Marker( "Z" ), Marker Size( 3 )}, Item ID( "M", 1 ) )
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox,
			{Marker Drawing Mode( "Outlined" )}
		)
	)
);
	
0 REPLIES 0

Recommended Articles