I’m looking for a solution for creating charts dynamically, that will be ready to be used in a newspaper or similar printed media.
I’ve got data that is updated regurarly, stored on a server. What I need is a script that takes the data and creates a (good looking) chart, and exports the chart as PDF or EPS (or a high resolution pixel image). Preferably using PHP or Java.
Does anyone know any libraries that does this, and is customizable?
http://www.jfree.org/jfreechart/
You can do it using java and JFreeChart provides you a nice API. It provide output support for image files (including PNG and JPEG), and vector graphics file formats (including PDF, EPS and SVG)
You need to create java code to take data and supply to chart templates.