Re: turn off symbols in MultipleListPlot?
- To: mathgroup at smc.vnet.net
- Subject: [mg2475] Re: turn off symbols in MultipleListPlot?
- From: ianc (Ian Collier)
- Date: Sun, 12 Nov 1995 22:29:01 -0500
- Organization: Wolfram Research, Inc.
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/ -----------------------------------------------------------