Hi all,
I got a problem regarding the JPgraph
I am able to generate a graph with the following code for the first time
<?php
include ("jpgraph.php");
include ("jpgraph_gantt.php");
// A new graph with automatic size
$graph = new GanttGraph(0,0,"auto");
// A new activity on row '0'
$activity = new GanttBar(0,"Project","2001−12−21","2002−02−20");
$graph−>Add($activity);
// Display the Gantt chart
$graph−>Stroke();
?>
But when i refreshed the browser the image went away , I dont know what happened . I tried renaming, copying the contents to a different file and ran it still it contains the same problem .
What is a better way to learn this type of chart creations ?
Please help .....
Thanks in Advance