Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder2.hal-mli.net!feeder.erje.net!eu.feeder.erje.net!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: sfeam Newsgroups: comp.graphics.apps.gnuplot Subject: Re: setting absolute size of point (or circle) with autoscaled xrange Followup-To: comp.graphics.apps.gnuplot Date: Thu, 07 Feb 2013 10:29 -0800 Organization: gnuplot development team Lines: 23 Message-ID: References: <726ae321-eb11-4be5-9f4a-ac117947c168@googlegroups.com> Reply-To: sfeam@users.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit Injection-Date: Thu, 7 Feb 2013 18:28:34 +0000 (UTC) Injection-Info: mx05.eternal-september.org; posting-host="8e86a57dfa599721f116da4577f3d1af"; logging-data="26322"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19q/Yaly+Vec3XUgPmFxxp8" User-Agent: KNode/4.4.9 Cancel-Lock: sha1:COXsJP4d9XDyL/Vko4IIxx5b728= Xref: csiph.com comp.graphics.apps.gnuplot:1612 fearless_fool wrote: > On Thursday, 7 February 2013 09:04:31 UTC-8, sfeam wrote: >> See "help set style circle" >> >> set style circle radius screen 0.01 >> plot "-" using 1:2 with circles > > Well, heck yeah! That IS a lot easier -- thank you. > > To push the question a bit further: If I want to use *two* different > circle styles whose sizes are given in terms of screen coordinates, is > there a way to set up multiple styles? Conceptually along the lines of > (yeah, I know this doesn't actually work): You could fake it by plotting one case with circles and the other case with ellipses that just happen to be circular: set style circle radius screen 0.01 set style ellipse size screen 0.02, screen 0.02 units xx But if you want a third case then you're out of luck :-) Ethan