Hi all,
i'm trying to script a trend chart and set a title, it's working on bivariate but not working on oneway. anyone can help to advice? thanks.
trend_R14toCu = V List Box (For( k = 1, k <= N Items( Conf ), k++, joindt << Oneway(
Y( :Name( "FVIM - R14 to Cu" ) ),
X( :Point_Wafer ),
Means and Std Dev( 0 ),
Mean Lines( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 ),
Connect Means( 1 ),
Where( :Config == Conf[k] ),
SendToReport(
Dispatch(
{},
"Oneway Analysis of FVIM - R14 to Cu By Point_Wafer Config=A",
OutlineBox,
{Set Title( "I want to update title here" )}
),
Dispatch(
{},
"1",
ScaleBox,
{Max( 500 ), Min(400),
Add Ref Line(R14toCu_lsl,"Solid","Medium Dark Red","LSL = 461",2),
Add Ref Line(R14toCu_usl, "Solid", "Medium Dark Red", "USL = 500", 2 )}
)
)
)
)
);