There is not a build in selection to wrap or display the charts on the horizontal. However, as you know, the components of JMP platform's output can be manipulated. Below is the manipulated output display, and the script that creates the new output
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.jmp" );
tab = dt << Tabulate(
invisible,
Show Chart( 1 ),
Show Control Panel( 0 ),
Add Table(
Column Table( Analysis Columns( :NPN1 ) ),
Row Table( Grouping Columns( :lot_id, :wafer ) )
)
);
nw = New Window( "test",
H List Box( Report( tab )[tabulatebox( 1 )], Report( tab )[tabulatebox( 2 )] )
);
Jim