Thanks Jim.  I'm less than a novice coder.  My code results in a blank page.  X and Y are continuous; By (material) is categorical.  All variable names are sanitized.  Thanks in advance for your help.
Fit Group(
	Lineup Box( N Col( 2 ), 
 
		Bivariate(
			Y( :"delP/delQ"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
		Bivariate(
			Y( :" flow rate at 5 deg"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
		Bivariate(
			Y( :" flow rate at 30 deg"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
		Bivariate(
			Y( :" calc outlet (inches)"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
		Bivariate(
			Y( :" wall angle (deg)"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
		Bivariate(
			Y( :" rathole (inches)"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
		Bivariate(
			Y( :"off gas"n ),
			X( :M wt% ),
			By( :material ),
			Fit Line( {Line Color( {212, 73, 88} )} )
		),
	) 
)