• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..Today-

COPYINGH A D08-Aug-202217.6 KiB341281

README.mdH A D08-Aug-2022577 3120

example.pngH A D08-Aug-2022954

plugin.info.txtH A D08-Aug-2022254 87

syntax.phpH A D08-Aug-20224.5 KiB15496

README.md

1# DokuWiki Plugin: AVBarChart
2
3<img src="example.png" border="0" />
4
5Generates a very simple CSS/HTML bar chart. Supports colors.
6
7## Install and documentation:
8
9* https://www.dokuwiki.org/plugin:avbarchart
10* Licence: GPL-2.0 (https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
11* Author: Sherri W. (https://syntaxseed.com)
12
13## Usage
14
15### Format
16
17```
18<barchart>MAXVAL|Label1:#,Label2:#:Color,Label3:#</barchart>
19```
20### Examples
21
22```
23<barchart>100|A:55,B:5,C:23,D:38</barchart>
24```
25
26With Colored Bars:
27
28```
29<barchart>100|A:55:#ffcccc,B:5,C:23#00ff00,D:38</barchart>
30```
31