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
hogi
Level XIII

Shape column : default markers?

Hi,

while waiting for new Column Property: Value Markers , I tried to use a Shape Column in Graph builder for better/consistent marker control:

hogi_0-1762619064927.png

Not bad ...

but I need more details:  How can I specify one of the default markers?

hogi_1-1762619462497.png

nice trick: empty entries are displayed with a "dot" 
but: Marker Drawing Mode - Outlined doesn't work. why?

hogi_3-1762619722050.png

View more...
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Variables( X( :height ), X( :height ), Y( :weight ) ),
	Elements( Position( 1, 1 ), Points( X, Y, Legend( 11 ), Set Shape Column( :Marker ) ) ),
	Elements( Position( 2, 1 ), Points( X, Y, Legend( 13 ) ) ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model( 11, Level Name( 0, "with Marker column", Item ID( "weight", 1 ) ) ),
			Legend Model(
				13,
				Level Name( 0, "standard plot", Item ID( "weight", 1 ) ),
				Type Properties( 0, "Marker", {Line Color( 36 )} ),
				Properties( 0, {Line Color( 36 )}, Item ID( "weight", 1 ) )
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox, {Marker Size( 6 ), Marker Drawing Mode( "Outlined" )} ),
		Dispatch( {}, "Graph Builder", FrameBox( 2 ), {Marker Size( 6 ), Marker Drawing Mode( "Outlined" )} )
	)
);


Workaround to get the outlines: add another point plot with hollow markers
(c) @Jed_Campbell , Pictures from the Gallery 10: Innovative Graph Builder Views (2025-US-30MP-2302) 

 

0 REPLIES 0

Recommended Articles