Making a Pie Chart: Difference between revisions
Jump to navigation
Jump to search
(new page) |
|||
Line 4: | Line 4: | ||
==SVG Specifications and Drawing Arcs== | ==SVG Specifications and Drawing Arcs== | ||
For the details and much more information about SVG specifications, check [http://www.w3.org/TR/2000/CR-SVG-20001102/paths.html this link]. |
Revision as of 01:25, 1 June 2006
The difficulty with making a pie chart with Scribus is that, if there is a way to use the various drawing tools to do it, the programming is quite beyond anything one would want to tackle. What we need then, is a more elegant way. Fortunately, with SVGs, there is a way.
What you cannot do is draw a circle, then subdivide it, because what we really want is a series of segments like variably sized pieces of pie, each of which can have its own fill color. What I want to show in this page is the process of putting information together to make the python script you will find at the end.
SVG Specifications and Drawing Arcs
For the details and much more information about SVG specifications, check this link.