Good morning/afternoon/evening everyone,
Having this strange issue where when I report a fit group I made to a tabbed report it makes the plots non-interactive (red triangle not doing the usual stuff). Screen shot here shows what happens when I click on the red triangle.
Here is where I make the tabbed report:
////////////////////////Show graphs for each test//////////////////
Tests = db_Tests:Test << Get Values;
Testset = Associative Array( Tests );//get unique set of fail names
Tests = Testset << Get Keys;
Try( Remove From( Tests, As List( Loc( Tests, "WAIT" ) ) ) );
Try( Remove From( Tests, As List( Loc( Tests, "RAMP" ) ) ) );
Try( Remove From( Tests, As List( Loc( Tests, "-CALC" ) ) ) );
//run through each test type, make category tab for each
For( i = 1, i <= N Items( Tests ), i++,
Report << Append( Tests[i], TestCategory = Tab Box() );
/////////loop through all test of that name and make charts
db_Tests << Select Where( :Test == Tests[i] );
TestNums = db_Tests:TestNum[(db_Tests << get selected rows)];
TestNumsSet = Associative Array( TestNums );//get unique set of fail names
TestNums = TestNumsSet << Get Keys;
Here is the portion of my script that generates the fit groups:
ow = probeSummary << Fit Group(
Oneway(
Y( :("Median" || " " || TestNums[j] || " " || Tests[i]) ),
X( probeSummary:analysisCol ),
Quantiles( 1 ),
Means( 1 ),
Means and Std Dev( 1 ),
t Test( 1 ),
Box Plots( 1 ),
Mean Diamonds( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 ),
X Axis Proportional( 0 ),
Points Jittered( 1 ),
Grand Mean( 0 ),
SendToReport(
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
Oneway(
Y( :("Interquartile Range" || " " || TestNums[j] || " " || Tests[i]) ),
X( probeSummary:analysisCol ),
Quantiles( 1 ),
Means( 1 ),
Means and Std Dev( 1 ),
t Test( 1 ),
Box Plots( 1 ),
Mean Diamonds( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 ),
X Axis Proportional( 0 ),
Points Jittered( 1 ),
Grand Mean( 0 ),
SendToReport(
Dispatch( {}, "Oneway Anova", OutlineBox, {Close( 1 )} ),
Dispatch( {"Oneway Anova"}, "Analysis of Variance", OutlineBox, {Close( 1 )} )
)
),
<<{Arrange in Rows( 2 )}
)
And lastly here is the portion that creates the report:
owrep = ow << Report;
title = TestName;
owrep << Set Title( title );
TestCategory << Append( title, ow << Report );
ow << close window();
Any help would be greatly appreciated as I'm very stuck right now. Thank you