ListPlot ignoring default options
- To: mathgroup at smc.vnet.net
- Subject: [mg84254] ListPlot ignoring default options
- From: nigol <dario.buttari at gmail.com>
- Date: Sun, 16 Dec 2007 05:36:27 -0500 (EST)
Does anybody know why the two graphs below look different? The second
graph is not joined. It seems that ListPlot ignores the settings in
Options[ListPlot].
$Version
6.0 for Microsoft Windows (32-bit) (June 19, 2007)
ListPlot[{1, 3, 2, 4}, Joined -> True]
SetOptions[ListPlot, Joined -> True];
ListPlot[{1, 3, 2, 4}]
Thanks,
Dario
- Follow-Ups:
- Re: ListPlot ignoring default options
- From: Brett Champion <brettc@wolfram.com>
- Re: ListPlot ignoring default options
- From: "Thomas Dowling" <thomasgdowling@gmail.com>
- Re: ListPlot ignoring default options