Radio button on Graph builder to vary Variable Role("Y)
Hi, I want to create a RB where you can change three variables Resistance, Currents, Voltage using Radio buttons. Here's what I have tried but something doesn't seem to be correct. Any advice?Names Default To Here( 1 );
stk = Current Data Table();
col = stk << Get Column Names( "String" );
Resist = {};
curr = {};
Volt = {};
For( i = 1, i <= N Items( col ), i++,
If(
Contains( col[i], "Resistan
...