cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

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

Graph Builder Legend + multiline entries?

Hi,

I want to use entries with newline in the legend.

what can I do to get a nice legend in Graph builder?

 

hogi_1-1752139386323.png


Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
:name[30]="Robert\!n2nd";

Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( :name ), Y( :weight ), Color( :name ) ),
	Elements( Bar( X, Y ) ),
	Local Data Filter(
		Close Outline( 1 ),
		Add Filter(
			columns( :name ),
			Where( :name == {"MARTHA", "Robert
2nd", "ROBERT"} )
		)
	)
);

 

0 REPLIES 0

Recommended Articles