When drawing bubbles, how can I set the background color to different colors according to the number of rows?
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(
{},
...