Re: Mesh->Full, Joined->True
- To: mathgroup at smc.vnet.net
- Subject: [mg80236] Re: Mesh->Full, Joined->True
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Wed, 15 Aug 2007 04:21:58 -0400 (EDT)
- Organization: Uni Leipzig
- References: <f9s4n8$b2n$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
pure points in
have no Mesh and in
ListPlot[{curve1, curve2}, Mesh->Full]
the Mesh option is useless and you don't get two
dotted curves you get two sets of data points.
Joined lines have a Mesh
ListPlot[{curve1, curve2}, Mesh->Full,Joined->True]
and the Mesh are the points you use and there is a unique
MeshStyle for for the Mesh.
You mean
ListPlot[{curve1, curve2}, Joined -> True,
Epilog -> {{RGBColor[1, 0, 0], Point /@ curve1}, {RGBColor[0, 0, 1],
Point /@ curve2}}]
Regards
Jens
Arkadiusz.Majka at gmail.com wrote:
> Hi,
>
>
> For plots of two curves
>
> ListPlot[{curve1, curve2}, Mesh->Full] I get two "dotted" curves of
> different colors. When I order to join the points
> (dots) :
>
> ListPlot[{curve1, curve2}, Mesh->Full,Joined->True]
>
> the color of points become the same. Why? How can I change it?
>
> Arek
>
>