Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 652 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 652 Bytes

picoCharts

Pico CMS plugin to show charts or graphs dynamically and easily by Graphviz.

Installation

This plugin needs Graphviz

Please install Graphviz before install this plugin.

  • Debian, Ubuntu... apt install graphviz
  • RHEL, CentOS... dnf install graphviz

Copy the 'PicoCharts.php' file to the 'plugins/' directory of your Pico Project.

Usage

Put DOT formats file to your content directory.

Markdown

![alt](yourfile.dot)

DOT file example

digraph g {
    graph [];
    node [];
    edge [];
    a -> b;
}

example