bevan j wrote:
> 
> Sorry if it has already been reported I searched in the bug reports for
> qt4agg and didn't find anything.  Although I may have been looking in the
> wrong place.
> I have also noticed that editing some parameters (or pressing apply
> without any changes) alters others.  For instance if I have:
> from matplotlib import pyplot 
> import numpy as np 
> 
> a = np.random.rand(12) 
> 
> fig = pyplot.figure() 
> ax = fig.add_subplot(111)
> wdth = 0.20
> ind = np.arange(a.size) 
> mon_ticks =('Jan','Feb','Mar','Apr','May','Jun','Jul', 'Aug', 'Sep',
> 'Oct', 'Nov','Dec')
> ax.bar(ind, a, wdth, color='0.8')
> ax.set_xticks(ind)
> ax.set_xticklabels(mon_ticks)
> pyplot.show() 
> Then pressing apply removes the ticks and tick label setting.
> 
> Hopefully this is adressed in the bug report you mention.  Thanks.
> 

@bevan j: nothing wrong with reporting bugs that should have been solved
long ago.
Patches that correct the issues you mentioned initially have indeed been
submitted, but have not be included in matplotlib as of yet. >> Look in
patches at the mpl tracker.

The last issue with the tick labels on the other hand is more difficult.
Please note that Tick labels are not supported by figure_options currently. 
If you haven't changed any settings that make your ticks go away, it would
be possible to ensure your plot is not messed up by qt4_editor when you
click apply/OK, but this feature has not been implemented yet.
-- 
View this message in context: 
http://old.nabble.com/Qt4Agg-backend---edit-curves-and-axis-parameters-tp29754925p29765678.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to