RE: ListPlot Points
- To: mathgroup at smc.vnet.net
- Subject: [mg29082] RE: [mg29064] ListPlot Points
- From: "David Park" <djmp at earthlink.net>
- Date: Sun, 27 May 2001 18:04:47 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Phil,
Use the Prolog option to set graphics directives you want to be in effect
before the plot is drawn. The following uses larger, blue points.
data = Table[{x, Sin[x]}, {x, 0., Pi/2, Pi/16}];
ListPlot[data, Prolog -> {AbsolutePointSize[4],
RGBColor[0, 0, 1]}];
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
> From: Phil Larson [mailto:PLarson at bju.edu]
To: mathgroup at smc.vnet.net
>
> Can someone please tell me how to control the diameter of points in
> ListPlot?
>