Yes; thank you; I've attached the script and the generated image. On Thu, Jul 31, 2008 at 10:04 AM, Michael Droettboom <[EMAIL PROTECTED]>wrote:
> Can you provide a standalone script that reproduces this error? > > Cheers, > Mike > > "Jonathan Hayward, http://JonathansCorner.com" wrote: > >> If there are one or more narrow wedges on a pie graph, narrow enough that >> the percentage values overlap and are hard to read, there seems to be a >> knife-thin missing wedge from the pie, including a break in the >> circumference. >> >> Is this configurable, even if it means that the border completely covers >> the colored interior of ultra-thin wedges? >> >> -- >> -- Jonathan Hayward, [EMAIL PROTECTED] <mailto: >> [EMAIL PROTECTED]> >> >> ** To see an award-winning website with stories, essays, artwork, >> ** games, and a four-dimensional maze, why not visit my home page? >> ** All of this is waiting for you at http://JonathansCorner.com >> >> ++ Would you like to curl up with one of my hardcover books? >> ++ You can now get my books from http://CJSHayward.com >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Matplotlib-users mailing list >> Matplotlib-users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/matplotlib-users >> >> > > -- > Michael Droettboom > Science Software Branch > Operations and Engineering Division > Space Telescope Science Institute > Operated by AURA for NASA > > -- -- Jonathan Hayward, [EMAIL PROTECTED] ** To see an award-winning website with stories, essays, artwork, ** games, and a four-dimensional maze, why not visit my home page? ** All of this is waiting for you at http://JonathansCorner.com ++ Would you like to curl up with one of my hardcover books? ++ You can now get my books from http://CJSHayward.com
#!/usr/bin/python import matplotlib matplotlib.use("Agg") import pylab labels = ["A", "B", "C"] values = [98.5, 1.0, .5] pylab.figure(1, figsize=(3,3)) ax = pylab.axes([0.1,0.1,0.8,0.8]) pylab.pie(values, labels=labels, autopct='%1.0f%%', shadow=False) pylab.savefig("/tmp/test.png")
<<attachment: test.png>>
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users