MathGroup Archive 1992

[Date Index] [Thread Index] [Author Index]

Search the Archive

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





  • Prev by Date: why won't this work??
  • Next by Date: RE: Division of multi-var polynomials
  • Previous by thread: Problem with PlotStyle in ListPlot
  • Next by thread: RE: Division of multi-var polynomials