PHP Chart Library

I am looking for a PHP chart library with a few specific criteria:

  • I cannot use Google charts because, in at least one case, I need to be able to run on a private network without access to the Internet (ergo no Google).
  • I need to be able to create bitmap images (png, etc.). SVG will also be nice, and Flash acceptable as an extra, but static bitmaps are necessary (so a full flash card will be unusable).
  • Open source preferred, but commercial.
+3
source share
5 answers

Take a look at:

+4
source
+1

I would recomment Flot - this is a client-side graphics library (javascript), but it does not require an Internet connection (you can host everything on the intranet). If you need a PHP shell for it, many frameworks come to it - for example, here for QCubed, the structure used is: http://examples.qcu.be/assets/plugins/QFlot/example/qflot-timeseries.php

-1
source

Source: https://habr.com/ru/post/1724651/


All Articles