Re: ListPlot still ignores SetOptions[] command
- To: mathgroup at smc.vnet.net
- Subject: [mg90564] Re: ListPlot still ignores SetOptions[] command
- From: "David Park" <djmpark at comcast.net>
- Date: Sun, 13 Jul 2008 15:47:53 -0400 (EDT)
- References: <g56tg1$3vr$1@smc.vnet.net>
Rather fortuitously, with the Presentations package setting the options does
work.
Needs["Presentations`Master`"]
SetOptions[ListDraw, Mesh -> All, Joined -> True];
Draw2D[
{ListDraw[Range[50]^2]},
AspectRatio -> 1/GoldenRatio,
Axes -> True]
Gives a Joined plot with the points.
--
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/
<lehin.p at gmail.com> wrote in message news:g56tg1$3vr$1 at smc.vnet.net...
> Hello,
> In version 6.03 some bug in ListPlot is fixed and the following code
> works well:
>
> SetOptions[ListPlot, Joined -> True];
> ListPlot[Range[50]^2]
>
> But adding Mesh -> All is ignored:
>
> SetOptions[ListPlot, Mesh -> All, Joined -> True];
> ListPlot[Range[50]^2]
>
> As I understand the bug is still here.
>