Ordering the Y groups in the Graph Builder
Hi, I have the following jsl script that populated GB plots based on the list's column values. The problem is that the plot's ordering is incorrect for some reason.Eg list 1 has the columns in the following order:List1 = {"NPN1", "PNP1", "PNP2", "NPN2", "PNP3", "IVP1"};
The loop swaps 1st column to the last; see below. Is there a workaround? Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/S
...