182x Posted July 24, 2007 Share Posted July 24, 2007 Hey guys, I have been reading all the tutorials and class reference for JpGraph but I was just wondering if its possible to plot individual points without using an array? for example in libchart the following code is used but I can't figure out how do do this in JpGraph as all the examples use arrays. Any help would be great, Thanks. <?php include "libchart/libchart.php"; header("Content-type: image/png"); $chart = new VerticalChart(500,250); $chart->addPoint(new Point("Jan 2005", 273)); $chart->addPoint(new Point("Feb 2005", 321)); $chart->addPoint(new Point("March 2005", 442)); $chart->addPoint(new Point("April 2005", 711)); $chart->setTitle("Monthly usage for www.example.com"); $chart->render(); ?> Link to comment https://forums.phpfreaks.com/topic/61515-php-jpgraph-plot-advice/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.