| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| COPYING | D | 21-Jan-2025 | 17.6 KiB | 341 | 281 | |
| README.md | D | 21-Jan-2025 | 577 | 31 | 20 | |
| example.png | D | 21-Jan-2025 | 954 | |||
| plugin.info.txt | D | 21-Jan-2025 | 254 | 8 | 7 | |
| syntax.php | D | 21-Jan-2025 | 4.5 KiB | 154 | 95 |
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