---README for "chart" plugin version 0.0.1---
This plugin will map a lexer under the "chart" tag name. Text between tags will be evaluated as data for
a chart and displayed inline in the topic using JFreeChart. Line graphs, vertical bar graphs and pie
graphs can all be displayed.
The format for the contents is:
[]
type,title,domain axis title,range axis title;
category 1, category n;
series 1,data 1-1,data 1-n;
series n,data n-1,data n-n;
[]
Type may be "pie", "line" or "bar".
Any number of categories and series can be specified.
---Installation---
Put chart.zip in your {wikihome}/plugins directory and restart the webapp context or the server.
---Usage example---
Inserting this in a topic body:
[]
bar,Sales 2004,Office,Number (1000s);
North,South,East,West;
March,1,10,4,5;
April,3,9,5,7;
[]
will produce a bar graph comparing sales for March and April for the different offices North, South,
East and West.