MathGroup Archive 2004

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: MultipleListPlot without any Point Shape, only with line made by PlotJoined -> True tests=INVALID_DATE,QUOTED_EMAIL_TEXT,RCVD_IN_ORBS,

  • To: mathgroup at smc.vnet.net
  • Subject: [mg51497] Re: [mg51485] MultipleListPlot without any Point Shape, only with line made by PlotJoined -> True tests=INVALID_DATE,QUOTED_EMAIL_TEXT,RCVD_IN_ORBS,
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Wed, 20 Oct 2004 01:21:17 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

Use SymbolShape->None

Needs["Graphics`"];

list1=Table[{x, Sin[x]}, {x, 0, 2Pi, Pi/100}];
list2=Table[{x, Cos[x]}, {x, 0, 2Pi, Pi/100}];

MultipleListPlot[list1, list2, 
    PlotJoined->True, 
    PlotStyle->{Blue, Red}, 
    SymbolShape->None,
    Ticks->{PiScale, Automatic}];


Bob Hanlon

> 
> From: foice <NONfoiceSPAMMARE at tiscalinet.it>
To: mathgroup at smc.vnet.net
> Date: 2004/10/19 Tue AM 02:56:10 EDT
> To: mathgroup at smc.vnet.net
> Subject: [mg51497] [mg51485] MultipleListPlot without any Point Shape, only with line 
made by  PlotJoined -> True
> 
> Hi people, I'll need some help in oder to have a decent plot.
> 
> Using  PlotJoined -> True into the MultipleListPlot you can have a line
> between the points of your list. And it's a very nice feature to use, but
> when you have something like 1000 point in Plot, and specially if they
> are very close to each other, you risk to not see the line joining the
> points beacuse of the Symbols used to draw the points in the list. How
> can I turn off the point marker drawing?  This naturally happen using
> ListPlot. In ListPlot when you activate the PointJoined option the point's
> shape automatically turn off and you have only a line.  I'd like to have
> the same result with MultipleListPlot because I'm goind to use different
> colors for different data sets.
> 
> Anyone can help me?
> thank you.
> Roberto
> 



  • Prev by Date: Re: Re: Corrupted file
  • Next by Date: Re: MultipleListPlot without any Point Shape, only with line made by PlotJoined -> True
  • Previous by thread: Re: Plot of Elliptic Curve with Grid
  • Next by thread: Re: MultipleListPlot without any Point Shape, only with line made by PlotJoined -> True tests=INVALID_DATE,QUOTED_EMAIL_TEXT,RCVD_IN_ORBS,