Hello,
I'm trying to stack vertically several graph in a journal in jsl. In order to get every graph perfectly aligned, I'd like to set the same width of the axis box on every graph. Whatever I do I am not able to modify the width of the axis box (whereas it works on Oneway graph for example). Any idea?
Here is the script
TempGraph2 = graph builder(
Show Control Panel( 0 ),
Variables( X( :Split ), Y( :BVD_POVW_10 ) ),
Elements( Points( X, Y, Legend( 1 ), Jitter( 1 ) ) ),
);
r2 = TempGraph2 << report;
axisbox2 =r2[axis box( 2 )] ;
r2[axis box( 2 )] <<set width(100);
Thanks!