How can I script a moving Y variable for the graph builder ?
Hi all,I am doing a graph builder with a moving Y variables, the output of the graph will appear like this:But, I am struggling to script the Y axis in JSL. How can I do so ?For( i = 1, i <= N Items( NamesList ), i++,
obj = Graph Builder(
Size( 534, 464 ),
Show Control Panel( 0 ),
Variables(
X( :TETEST_MONTH ),
X( :TETEST_WEEK, Position( 1 ) ),
Y( :Name ("Y")) , // how do I insert the
...