Hello!
For example, set lines 1-20 and 21-40 to different background colors.
dt=Open("$SAMPLE_DATA/Big Class.jmp");
p1=dt<<Bubble Plot(
X( Transform Column( "Row", Formula( Row() ) ) ),
Y( :height ),
Sizes( :weight ),
Coloring( :sex ),
Title Position( 0, 0 ),
SendToReport(
Dispatch(
{},
"1",
ScaleBox,
{Min( 0 ), Max( 45 ), Inc( 5 ), Minor Ticks( 0 )}
),
Dispatch(
{},
"2",
ScaleBox,
{Min( 50 ), Max( 72.5 ), Inc( 5 ), Minor Ticks( 1 )}
),
Dispatch(
{},
"Bubble Plot",
FrameBox,
{Frame Size( 565, 360 ), Background Color( 76 )}
)
)
);