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.
![CDW_0-1685150379548.png CDW_0-1685150379548.png](https://community.jmp.com/t5/image/serverpage/image-id/53176iC3AD509F7D7A7A99/image-size/medium?v=v2&px=400)
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 )
)}
)
)
);