Re: How Can I Make Plot Options Conditional?
- To: mathgroup at smc.vnet.net
- Subject: [mg121366] Re: How Can I Make Plot Options Conditional?
- From: Panayiotis Georgiou <ps.georgiou at gmail.com>
- Date: Mon, 12 Sep 2011 04:22:48 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <j0riot$41o$1@smc.vnet.net>
Hello, I had the same problem. I looked a lot on the internet but couldn't find anything. Here is how I manage to overcome this problem: Epilog -> {If[ x > xMin, PointSize[.02], { }], Orange, Point[ptX]}, Basically you return an empty option by using '{}' when the condition is false. I hope this helps. Panayiotis. On 28 =C9=EF=FD=EB, 12:56, Gregory Lypny <gregory.ly... at videotron.ca> wrote: > Hello everyone, > > Is there a preferred way to make plot options conditional? For Epilog > points, for example, I've been using an IF statement within the Epilog > list to determine whether the point size should be set to zero and > therefore make the point invisible. > > Epilog -> {If[x >= xMin, PointSize[.02], PointSize[0]], Orange, Point[ptX]}, > > Gregory=