How to set different scale when I use "by"?
Hi, I use "by" function to draw plots one-time.How could I use script to set different scale?I tried to use "if" but it didn't work.Here is my script:d_graph=dt3 << Graph Builder(
Size( 1200, 300 ),
Show Control Panel( 0 ),
Variables(
X( :Lot ),
X( :ReadPoint, Position( 1 ) ),
Y( :drift% ),
Group X( :Rel_Test ),
Color( :Lot )
),
Elements( Box Plot( X( 1 ), X( 2 ), Y, Legend( 1 ) ) )
...