I'm trying to make the caption box in graph builder change to a different decimal format without changing the column properties.
Names Default to Here(1);
dt = Open("$SAMPLE_DATA\Big Class.jmp");
dt << Graph Builder(
Size( 570, 496 ),
Variables( Group X( :sex ), Group Y( :age ), Color( :height ) ),
Elements(
Heatmap( Legend( 12 ) ),
Caption Box( Legend( 4 ), Summary Statistic( "Mean" ), Format("Fixed Dec", 12, 2) )
),
SendToReport( Dispatch( {}, "400", LegendBox, {Set Title( "" )} ) )
);
Can't seem to get it. Anyone had luck with this?