cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

How to draw a polygon with outline?

I have a piece of script that draws a polygon.

It has semi-transparent fill, but I'd rather have just line outline. How do I do that?

	framebox << Add Graphics Script(
		Transparency( 0.5 );
		Fill Color("Green");
		Polygon( {246, 37}, {246, 437}, {772, 437}, {772, 37} );
                //Command for an outline?
	);
3 REPLIES 3

Re: How to draw a polygon with outline?

What do you get with this version:

 

framebox << Add Graphics Script(
	Polygon( {246, 37}, {246, 437}, {772, 437}, {772, 37} );
);
miguello
Level VII

Re: How to draw a polygon with outline?

I'm getting dark violet polygon, no outline.
I think I'll just use Line(); instead.

Re: How to draw a polygon with outline?

Sorry, I forgot that the Polygon() graphics function renders filled shapes. Use Line() function instead.

 

Names Default to Here( 1 );

New Window( "Draw My Polygon",
	Outline Box( "Polygon",
		Graph Box(
			Line(
				{ 10, 10 },
				{ 50, 10 },
				{ 90, 50 },
				{ 50, 90 },
				{ 10, 10 }
			)
		)
	)
);

Recommended Articles