cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

color of a Drag Marker?

How can i change the color of a Drag marker?

with a black & white background the black circles are hard to see:

hogi_0-1674797877131.png

 

View more...
Names Default To Here( 1 );

img = New Image( "https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/hubble_leda48062_potw2302a.jpg" );

win = New Window( "marker",
V List Box (Text Box("black marker hardly visible"),
		g = Graph Box (
			Framesize( 600, 300 ),
			X Scale( 0, 1000 ),
			Y Scale( 0, 500 ), 
			Marker Size( 30 );
			Color State( {0, 1, 1} );
			Drag Marker( [500], [200], showpoints = 0, showpoints = 1 );
		) )

);

imgBox = win[framebox( 1 )];
imgBox << AddImage( Image( img ), bounds( Left( 0 ), Right( 1000 ), top( 500 ), bottom( 0 ) ) );
imgSeg = imgBox << FindSeg( PictSeg( 1 ) );
imgSeg << lock( 1 );

 

1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XIII

Re: color of a Drag Marker?

2 REPLIES 2

Re: color of a Drag Marker?

You can't.

hogi
Level XIII

Re: color of a Drag Marker?

Recommended Articles