Hi,
I have a number of columns which I have grouped together.
In the graph builder I have the X axis constant, but the Y axis should have the column switcher function where we can chose which parameter we want to switch between from the said group of columns.
First I tell JSL what columns should be in the group and which column should be my first column
colList = dttable << get column names( continuous );
col1 = colList[1];
This is the code and the error I am getting,
Graph Builder(
Size( 570, 621 ),
Show Control Panel( 0 ),
Show Legend( 0 ),
Variables( X( :batch_no ), Y( :col1 ) /*###*/ ),
Elements( Points( X, Y, Legend( 8 ) ) ),
Column Switcher( :col1, {:colList} )
)
Can you tell me what I should write for the Y variable so I can get the first column to start with and then add the column switcher.
Thanks in advance