Re: PlotStyle in MultipleListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg26482] Re: [mg26471] PlotStyle in MultipleListPlot
- From: BobHanlon at aol.com
- Date: Thu, 28 Dec 2000 02:52:22 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Did you use the option PlotJoined -> True?
Needs["Graphics`MultipleListPlot`"];
plt1 = Table[Sin[x], {x, 0, 2Pi, Pi/16}];
plt2 = Table[Cos[x], {x, 0, 2Pi, Pi/16}];
MultipleListPlot[{plt1, plt2}, PlotJoined -> True,
PlotStyle -> {{Thickness[0.01], RGBColor[1, 0, 0]}, {Thickness[0.02],
RGBColor[0, 1, 0]}}, SymbolShape -> None];
Bob Hanlon
In a message dated 12/22/00 11:06:55 PM, abwatson at mail.arc.nasa.gov writes:
>In the function MultipleListPlot, I am trying to give each plot a
>specified thickness as well as a specific color. I have tried various
>variants of
>
>PlotStyle ->{{Thickness[0.01], RGBColor[1, 0, 0]}, {Thickness[0.02],
>RGBColor[0, 1, 0]}}
>
>but nothing seems to work.
>any tips?
>