Re: multipleListPlot does not seem to accept Multiple Hue commands
- To: mathgroup at smc.vnet.net
- Subject: [mg64130] Re: [mg64095] multipleListPlot does not seem to accept Multiple Hue commands
- From: Darren Glosemeyer <darreng at wolfram.com>
- Date: Thu, 2 Feb 2006 00:05:52 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
At 04:34 AM 2/1/2006 -0500, Ariel sumeruk wrote: >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 PlotStyle defines the styles for lines if they are drawn. To set the styles for symbols, you can use SymbolStyle. MultipleListPlot[multiplot, PlotStyle -> {Hue[0.6], Hue[0.1], Hue[0.2]}, PlotJoined -> True] MultipleListPlot[multiplot, SymbolStyle -> {Hue[0.6], Hue[0.1], Hue[0.2]}] Darren Glosemeyer Wolfram Research