Sherif Ahmed wrote: > Hello Mike, > > Thanks for your advice. I think this is exactly what I need. I am not sure > how to use this option, might you help me? > > I use simply the following lines in my code: > > self.figure.clf() > self.axes = self.figure.add_axes([0.1,0.1,0.8,0.8], projection='polar', resolution=1, > aspect='equal') > > and later: > self.axes.plot(angle(data),abs(data),label=title,linewidth = 2,zorder=10) > > Where should I change the resolution feature? With each plot or with figure > object?
Put the resolution kwarg in the call to the add_axes method. The way the line is drawn between points--whether as a straight line on the plot or by interpolating in the data coordinates--is controlled on a per-axes basis by this kwarg when the axes are created. Eric ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel