cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Heatmap Labels Too Big

Jemster
Level III

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

No recommendations found