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 )}
)
));