From: John H. <jdh...@ac...> - 2004-03-26 13:50:24
|
>>>>> "Steve" == Steve Chaplin <ste...@ya...> writes: Steve> John, I'm having a problem with gridlines. I set axes.grid Steve> : True in my .matplotlibrc file Steve> But when I run examples/embedding_in_gtk.py and Steve> examples/simple_plot.py there are no gridlines. Oops, this was just an oversight. In matplotlib.axes.Axes.cla, change self._gridOn = False to self._gridOn = rcParams['axes.grid'] Should help; thanks for letting me know, JDH |