appreciated if someone can share the knowledge to define and assign row legend color.
take Cheese.jmp dataset example, if it is possible to assign row cheese A = pink color, cheese B= black color by using JMP 14.
Bivariate(
Y( :Score ),
X( :Count ),
SendToReport(
Dispatch(
{},
"Bivar Plot",
FrameBox,
{Row Legend(
Cheese,
Color( 1 ),
Color Theme( "JMP Default" ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
)
)
);