Hi @Kemable , @SED , you can use set Font() to adjust the font size:
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
Graph Builder(
Variables( X( :name ), Y( :height ) ),
Elements(
Bar(
X,
Y,
Label( "Label by Value" ),
)
),
SendToReport(
Dispatch( {}, "Graph Builder", FrameBox,
{DispatchSeg( BarSeg( 1 ), Set Font( "", 30, "", 0 ) )}
)
)
);