There is not an equivalent "Value Markers" to the "Value Colors".  Markers are set either by Row State
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Marker by Column( :sex );
Graph Builder(
	Variables( X( :height ), Y( :weight ), Color( :age ) ),
	Elements( Points( X, Y, Legend( 1 ) ) )
);

Or by specific changes to elements within the Graphic platform
names default to here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Size( 525, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ), Color( :sex ) ),
	Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				9,
				Properties(
					0,
					{Marker( "FilledWide" ), Marker Size( 6 )},
					Item ID( "F", 1 )
				)
			)}
		)
	)
);

 
					
				
			
			
				
	Jim