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 > > >