MathGroup Archive 2006

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

Search the Archive

Re: multipleListPlot does not seem to accept Multiple Hue commands

  • To: mathgroup at smc.vnet.net
  • Subject: [mg64112] Re: [mg64095] multipleListPlot does not seem to accept Multiple Hue commands
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Thu, 2 Feb 2006 00:04:56 -0500 (EST)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

You are coloring invisible lines.

Needs["Graphics`MultipleListPlot`"];

multiplot=Table[Sort[Table[{Random[],Random[]},{10}]],{3}];

MultipleListPlot[multiplot,
    SymbolStyle->{Hue[0.6],Hue[0.1],Hue[0.2]}];

MultipleListPlot[multiplot,
    PlotJoined->True,
    SymbolShape->None,
    PlotStyle->{Hue[0.6],Hue[0.1],Hue[0.2]}];


Bob Hanlon

> 
> From: Ariel sumeruk <ariel.sumeruk at gmail.com>
To: mathgroup at smc.vnet.net
> Subject: [mg64112] [mg64095] multipleListPlot does not seem to accept Multiple Hue 
commands
> 
> 
> Hello
> Does anybody know why this does not work?
> 
> MultipleListPlot[multiplot,PlotStyle->{Hue[0.6],Hue[0.1],Hue[0.2]}]
> 
> were multiplot is 3 lists of x,y pairs lists. All 3 grpahs appear in black
> only.
> Thanks
> 
> 
> 


  • Prev by Date: Re: multipleListPlot does not seem to accept Multiple Hue commands
  • Next by Date: Re: Utilizing the Result From Solve[]
  • Previous by thread: Re: multipleListPlot does not seem to accept Multiple Hue commands
  • Next by thread: Utilizing the Result From Solve[]