Re: Problem with PlotStyle in ListPlot
- To: mathgroup at yoda.physics.unc.edu
- Subject: Re: Problem with PlotStyle in ListPlot
- From: John Gray <gray at symcom.math.uiuc.edu>
- Date: Thu, 2 Apr 1992 14:44:51 -0600
>When I try the command
>ListPlot[Table[Sin[x],{x,0,10,1}],PlotRange->All,
PlotStyle->{{Dashing[{.1,.1}],Thickness[.1]}},PlotJoined->True]
>I don't get a thick, dashed curve.
The problem is the extra brackets. Use
ListPlot[Table[Sin[x],{x,0,10,1}],PlotRange->All,
PlotStyle->{Dashing[{.1,.1}],Thickness[.1]},PlotJoined->True]
John Gray