Re: turn off symbols in MultipleListPlot?
- Subject: [mg2475] Re: turn off symbols in MultipleListPlot?
- From: ianc (Ian Collier)
- Date: Mon, 13 Nov 1995 03:29:01 GMT
- Approved: usenet@wri.com
- Distribution: local
- Newsgroups: wri.mathgroup
- Organization: Wolfram Research, Inc.
- Sender: daemon at wri.com ( )
In article <DHtHqA.2wB at wri.com>, Mimi Lawrence
<lawrencem at arlut.utexas.edu> wrote:
> I'm plotting several curves of closely-spaced points using a different
> line style for each under MultipleListPlot. How do I "turn off" the
> symbol associated with each point? I tried a zero-size for the polygon
> drawn by DotShapes, but each symbol still showed up. Since the points
> are close together, the symbol shapes change what the line style is
> supposed to look like.
>
> Thanks,
> Mimi L.
You can control the symbols drawn at each point with the SymbolShape
option. Setting SymbolShape to None for each line will do what I think
you want.
In[24]:=
Needs[ "Graphics`MultipleListPlot`"]
In[25]:=
ls1 = Table[ {x, Sin[x]},{x, 0, 10, .5}];
In[26]:=
ls2 = Table[ {x, Cos[x]},{x, 0, 10, .5}];
In[27]:=
MultipleListPlot[ ls1, ls2 ,
SymbolShape -> {None, None},
PlotJoined -> True,
LineStyles ->{Dashing[{0.05}],Dashing[{0.02}]}]
Out[27]=
-Graphics-
I hope this helps.
--Ian
-----------------------------------------------------------
Ian Collier
Technical Sales Support
Wolfram Research, Inc.
-----------------------------------------------------------
tel:(217)-398-0700 fax:(217)-398-0747 ianc at wri.com
Wolfram Research Home Page: http://www.wri.com/
-----------------------------------------------------------