Dear all,
I am building a script to make a graph using graph builder. The resulting graph builder figure have to be in black/white/grayscales, and should only contain filled/solid markers. An example of what I would like is shown here
I do not know the names or number of overlay-levels (Ages in the Big Class example).
I have attempted using Color Theme and Graph Marker Theme within Legend Model Properties to control the color and markers. However, this does not change the color or markers.
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb=dt << Graph Builder(
Variables( X( :height ), Y( :weight ), Overlay( :age ) , Color( :age )),
Elements( Points( X, Y, Legend( 15 ) ), Smoother( X, Y, Legend( 16 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
15,
Properties({Color Theme( "White to Black" ), Graph Marker Theme( "Solid" )})),
Legend Model(
16,
Properties({Color Theme( "White to Black" ), Graph Marker Theme( "Solid" )}))
}
)
));
Anybody has a suggestion on how to control the colors to black/white/gray and the markers to solid/filled?
Thanks,
Peter