cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

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

Default Y-axis scale for multiple charts in graph builder, using page function

I am using graph builder for a data set that produces 20+ graphs.  I would like the scale & range of the Y-axis to be the same for all 20 graphs.  I tried the script below with no success

 

Graph Builder(
Variables( X( :Date ), Y( :Rate ), Page( :Category ) ),
Elements( Line( X, Y, Legend( 5 ) ) ),
SendToReport(
Dispatch(
{},
eval( column( :Rate)),
ScaleBox,
{Min( 0 ), Max( 50 ), Inc( 10 ),
Minor Ticks( 10 )}
)
));
1 REPLY 1
Jeff_Perkinson
Community Manager Community Manager

Re: Default Y-axis scale for multiple charts in graph builder, using page function

It's probably easiest to use the Axis column property on your :Rate column. That will make sure the axis is always what you want, and it's easier than trying to get to all the axes across reports to format them.

-Jeff

Recommended Articles