Warning (!)

Wiki Cloud Migration Deadline

IMPORTANT!

On January 8th, 2024 the University of Iowa Wiki hosted at https://wiki.uiowa.edu will be shut down permanently. If you would like to continue using Confluence (Wiki) in the Cloud, you will need to request licenses by filling out this Workflow form if you haven't done so already.

For more information and other options for your content, please visit the Wiki Service Change Options and FAQs page. Your content from https://wiki.uiowa.edu will be available for migration upon request for two years (until 1/8/2026).

Child pages
  • More on Pie Charts

The pie chart is the default setting in the chart macro.
The pie chart code can be fairly simple to more complex depending on your needs.

As seen at the Generate a chart page the simple code:

{chart:title=Pitfalls}
|| ||Quicksand||Alligators||
|# affected|3|4|
{chart}


produces this pie chart:


Two things to notice:

  1. In this line || ||Quicksand||Alligators||, there is a space between the first pair of bars || and the second pair ||. This space is absolutely necessary. It serves as the place where you would practice good programming protocols and say what the line of code you are typing represents, in this case the types of traps. It also serves to keep your columns aligned correctly so that the chart macro pairs the labels (Quicksand, Alligators) with the correct numerical data (3 and 4 respectively). It might be better to type the line as || Traps || Quicksand || Alligators||
  2. In the next line |# affected|3|4|, you are again using good protocols, defining what the numbers stand for, in this case the number of each kind of trap. You could of course simply typed it as | |3|4|, making sure you put a space between the first two bars.


If you do not format correctly, your pie chart will not generate correctly. Unfortunately the Notation Help Guide does not give complete examples.
You should practice making a pie chart. Use a different number of items.
Click on the Pie Charts with Data Labels to go on to a more complex example.

  • No labels