Re: multipleListPlot does not seem to accept Multiple Hue commands
- To: mathgroup at smc.vnet.net
- Subject: [mg64128] Re: multipleListPlot does not seem to accept Multiple Hue commands
- From: ggroup at sarj.ca
- Date: Thu, 2 Feb 2006 00:05:44 -0500 (EST)
- References: <drq094$mp0$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Ariel sumeruk wrote: > Does anybody know why this does not work? > MultipleListPlot[multiplot,PlotStyle->{Hue[0.6],Hue[0.1],Hue[0.2]}] You need to wrap each Hue command in a list. Ie: MultipleListPlot[multiplot,PlotStyle->{{Hue[0.6]},{Hue[0.1]},{Hue[0.2]}}]