Hi all,
I am trying to fix the coloring of my variability chart. I create the variability chart and then use the row legend to create a legend for the column dose. I am trying to color the label "control" the color black through JSL code. How is this possible. I have tried many combinations but my JMP 16 doesn't seem to color anything differently. Any help would be appreciated to get it like the picture attached. Below is the code I have tried out. Thanks!
dt = Open("$SAMPLE_DATA/Blood Pressure.jmp");
vc = Variability Chart(
Y( :BP 8M ),
X( :Subject ),
Show Range Bars( 0 ),
Show Cell Means( 0 ),
Std Dev Chart( 0 ),
SendToReport(
Dispatch(
{"Variability Chart for BP 8M"},
"Variability Chart",
FrameBox,
{Row Legend(
Dose,
Color( 1 ),
Color Theme( "JMP Default" ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
/*Custom Colors(
{{"Control", RGB Color(0,0,0)}}
)*/
)}
)
)
);
vc << Legend(
Color(1),
Color Theme("JMP Default"),
Customize(
1,
{Row Label("Control"), Text Color(RGB Color(0,0,0))}
)
);