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

How can I move the x-axis on top of graph?

maribliss
Level I

Hi, I'm trying to create a trace element concentration profile and need to have the x-axis (concentrations) at the top of the graph so that it can show how the concentration varies down-core .. Is there any way to do this? 

2 REPLIES 2
ian_jmp
Level X


Re: How can I move the x-axis on top of graph?

If you run this script:

NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
gb = dt << Graph Builder(
	Size( 528, 452 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 6 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Label Row(
				{Inside Ticks( 1 ), Show Major Grid( 1 ), Show Minor Grid( 1 ),
				Show Minor Labels( 1 )}
			)}
		)
	)
);

it produces:

Screen Shot 2017-11-13 at 09.09.26.png

(which you could make interactively, of course).

I then did 'Edit > Journal' to make a Journal file, then used the 'fat plus' tool to move elements around to make:

Screen Shot 2017-11-13 at 09.07.03.png

David_Burnham
Super User (Alumni)


Re: How can I move the x-axis on top of graph?

Finally we discover a reason why we might want to select the axes in isolation from the graph :)

-Dave