There is not an equivalent "Value Markers" to the "Value Colors". Markers are set either by Row State
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Marker by Column( :sex );
Graph Builder(
Variables( X( :height ), Y( :weight ), Color( :age ) ),
Elements( Points( X, Y, Legend( 1 ) ) )
);
![txnelson_0-1667645626028.png txnelson_0-1667645626028.png](https://community.jmp.com/t5/image/serverpage/image-id/47070iD4C7CE886B333AD2/image-size/medium?v=v2&px=400)
Or by specific changes to elements within the Graphic platform
names default to here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
Size( 525, 454 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ), Color( :sex ) ),
Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
9,
Properties(
0,
{Marker( "FilledWide" ), Marker Size( 6 )},
Item ID( "F", 1 )
)
)}
)
)
);
![txnelson_1-1667645955985.png txnelson_1-1667645955985.png](https://community.jmp.com/t5/image/serverpage/image-id/47071i52D4522CCACEA0A3/image-size/medium?v=v2&px=400)
Jim