Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
COPYING | H A D | 08-Aug-2022 | 17.6 KiB | 341 | 281 | |
README.md | H A D | 08-Aug-2022 | 577 | 31 | 20 | |
example.png | H A D | 08-Aug-2022 | 954 | |||
plugin.info.txt | H A D | 08-Aug-2022 | 254 | 8 | 7 | |
syntax.php | H A D | 08-Aug-2022 | 4.5 KiB | 154 | 96 |
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