Graph Builder: change width line
Hello everyone,
I’d be happy to know how can I change in the script the line width the graph builder which contains more than one axis. gb = Graph Builder(
Size( 568, 438 ),
Show Control Panel( 0 ),
Variables( X( :age ), Y( :height ), Y( :weight ) ));
gbR = Report( gb )[Graph Builder Box( 1 )];
gbR << Add Element( 1,1, {Type( "Smoother" ), X, Y, Legend( 3 ),Confidence of Fit( 0 )} );
gbR << Ad
...