I would like to draw a round pie in a rectangle figure. At the moment I'm
using something like:

        fig = plt.figure( figsize = figsize, dpi=inch)

        # plot actually
        ax = fig.add_subplot( 1, 1, 1 )
        ax.pie( value_list, labels = labels_list, **kwargs )

        plt.savefig( plt_pathname )
        plt.close()

If the figsize is not square ( eg. [4, 4]) then the resulting figure will be
stretched, elipsoid.
Can I overcome this issue.
Thanks in advance
-- 
View this message in context: 
http://old.nabble.com/Round-pie-in-non-square-figure-size-tp32929787p32929787.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Cloud Services Checklist: Pricing and Packaging Optimization
This white paper is intended to serve as a reference, checklist and point of 
discussion for anyone considering optimizing the pricing and packaging model 
of a cloud services business. Read Now!
http://www.accelacomm.com/jaw/sfnl/114/51491232/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to