cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Apply axis limits to graph builder

Hello everyone,

 

I am new to jmp. I am trying to apply minimum and maximum axis limits to the legend of contour plot inside graph builder.

However, I am not able to find a good way of doing this. I see if I draw the contour plot outside graph builder I have the option for changing limits there.

But this seems to be missing from the version of contour plot available inside graph builder.

Any pointers will be appreciated. Thanks.

 

 

VG= Graph Builder(
Auto Stretching( 0),
Automatic Recalc( 0 ),

Variables(
X( :X_COL ),
Y( :Y_COL ),
Group X( :Class ),
Color( age )
),
Elements(
Contour( X, Y, Number of Levels( 6 ))

// I want to apply min and maximum limit to this contour plot
),
SendToReport(
Dispatch( {}, "graph title", TextEditBox, {Set Text( title_variable)} )
)

);

2 REPLIES 2

Re: Apply axis limits to graph builder

You could apply a local data filter to your graph builder for the axis you wish to limit.

rahulsmils
Level III

Re: Apply axis limits to graph builder

Thanks for the help. Yeah, that was the only way I could think of to get this done.

Recommended Articles