Hi all. I have the below new window script but am having trouble.
I would like the plots and tests to be in there own columns (after the data and summary are stacked in the same column). Also, the plots and tests are reports that were once "fit group" output, and they are rather long so I would like to add a vertical scroll instead of having my window be the entire length of the output.
Any ideas? Thanks!
csp = New Window( "Platform Example",
V splitter box(Lineup Box(N Col(3),Outline Box( " Data",
::box1 = V List Box(),
),
Outline Box( "Summary",
::box2 = V List Box(),
),
Outline Box( "Totals",
::box3 = V List Box(),
),
Outline Box( "plots",
::box4 = V List Box()
),
Outline Box( "Tests",
::box5 = V List Box()
),
)));
::box1 << Append(data table(dtsubsets) << Get As Report) ;
::box2 << Append(data table("Summary") << Get As Report) ;
::box3 <<Append(data table("Totals") << Get As Report) ;
::box4 << Append(plots);
::box5 << append(tests);