cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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.