Thanks!
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
ca="tem";New Column(ca);Column(ca)<<Formula( char(age)||"longlong" );dt<<run formulas;Column(ca)<<deleteFormula;
p1 = dt << Graph Builder(
Size( 300, 400 ),
Show Control Panel( 0 ),
Legend Position( "Inside Bottom Right" ),
X Group Edge( "Bottom" ),
Variables( X( :weight ), Y( :height ), Group X( :tem, Size( 161 ) ), Color( :sex ) ),
Elements( Bar( X, Y, Legend( 5 ), Response Axis( "X" ) ) ),
SendToReport(
Dispatch(
{},
"weight",
ScaleBox,
{Label Row(
{Automatic Tick Marks( 0 ), Show Major Labels( 0 ), Show Major Ticks( 0 ),
Show Minor Ticks( 0 )}
)}
),
Dispatch(
{},
"height",
ScaleBox,
{Label Row(
{Automatic Tick Marks( 0 ), Show Major Labels( 0 ), Show Major Ticks( 0 ),
Show Minor Ticks( 0 )}
)}
),
Dispatch( {}, "X title", TextEditBox, {Hide( 1 )} ),
Dispatch( {}, "Y title", TextEditBox, {Hide( 1 )} )
)
);