cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

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