Hi,
In Graph Builder, how can I use the Overlay and Color options to change the color and marker for each data group? Changing the marker is useful to help distinguish data when there are many colors, which may be very similar to each other.
For example, in the script below, it is useful use Overlay to separate data by age, and use Color to change the color and marker for each point, but if I use them together Overlay will change the line type and color to black, which adds confusion to the graph but no new information.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder(
Show Control Panel( 0 ),
Variables( X( :height ), Y( :weight ), Overlay( :age ), Color( :age ) ),
Elements( Points( X, Y, Legend( 21 ) ), Smoother( X, Y, Legend( 22 ) ) )
);