Hi,
Actually every tab i have 5 charts.
Well, in each of the chart, I need have 5 reference line.
For the red color part, I able to generate out the reference line on chart for only one tab, other 4 tab of the chart, I not able to generate out the reference line.
But when i run the whole script, it doesnt show me any error, so I don't know how to fix it. 
 
Thanks.
 
variabilityWindow = New Window( "Variability Chart", tb = Tab Box() );
For( i = 1, i <= N Items(distinctFamilyDevice), i++, 
// Create a new tab and append the variability charts
	tb << Insert(
		distinctFamilyDevice[i],
		VListBox(
  
                vchart = dt_raw_dataset << Variability Chart(
	        Y( Eval(IAT[i]) ),
	        X( :Name( "Lot" ), :Name( "Fab Lot" ) ),
	        Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),		
                       );
    
		         )
				
	       );
 
	);
For(m = 1, m <= N Items(IAT), m++,
        vc = vchart[m] << Report; 
        axisbox = vc [axisbox(1)];
        axisbox << Add Ref Line(-1.5,"Dashed",red,"-1.5 Sigma",2);
        axisbox << Add Ref Line(1.5, "Dashed", red, "1.5 Sigma", 2);	
	axisbox << Add Ref Line(0, "Solid", red, "Target", 2);	
	axisbox << Add Ref Line(-3, "Dotted", red, "-3 Sigma", 2);
	axisbox << Add Ref Line(3, "Dotted", red, "3 Sigma", 2);
	                    
        );