cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!

Discussions

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

Heatmap Labels Too Big

I have a custom heatmap made of squares in a grid. When displayed on a smaller screen the labels from the labelled columns spill over and don't fit into their square. They would fit in the square if they were not all in a horizontal line and instead were formatted to stack vertically. Is there any way to script JMP to display the labels not in one line and instead fit into the box.

1 REPLY 1
Georg
Level VII

Re: Heatmap Labels Too Big

I'm not sure if I understand your problem,

I have no problem in displaying large texts in a heatmap, see example.

And if I even need more text in a box, I press CRTL+SHIFT+"-" to reduce font size, and everything fits.

BR

 

Georg_0-1659023208035.png

 

Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA\Aircraft Incidents.jmp" );

Graph Builder(
	Size( 495, 489 ),
	Show Control Panel( 0 ),
	Graph Spacing( 5 ),
	Variables( X( :Final Narrative ) ),
	Elements( Treemap( X, Legend( 2 ) ) ),
	Local Data Filter(
		Conditional,
		Add Filter(
			columns( :Accident Number ),
			Where(
				:Accident Number == {"ANC01FA033", "ANC01FA084", "ANC01FA093", "ANC01FA095", "ANC01FA100",
				"ANC01FA102"}
			),
			Display( :Accident Number, N Items( 15 ), Find( Set Text( "" ) ) )
		)
	)
		
);

 

Georg

Recommended Articles