JPGraph+Help
Am gettin an error msg like this-->
The image “ http://localhost/linegrph.php” cannot be displayed, because it contains errors.
while tryin 2 run my code on localhost..
Wen I comment d statemnt, $graph->Stroke(), nthng at all displys..
Plseeee do tell me a solution..
Thnks in advance :)
tessy7
Junior Poster in Training
51 posts since Apr 2008
Reputation Points: 15
Solved Threads: 3
tessy7
Junior Poster in Training
51 posts since Apr 2008
Reputation Points: 15
Solved Threads: 3
This is d sample pgm I hav taken frm d tutorials..
<?php
include ("jpgraph.php" );
include ("jpgraph_line.php");
// Some data
$ydata=array(11,3, 8,12,5 ,1,9, 13,5,7 );
// Create the graph. These two calls are always required
$graph=new Graph(350, 250,"auto");
$graph->SetScale("textlin");
// Create the linear plot
$lineplot=new LinePlot($ydata);
$lineplot->SetColor("blue");
// Add the plot to the graph
$graph->Add($lineplot);
// Display the graph
$graph->Stroke();
?>
tessy7
Junior Poster in Training
51 posts since Apr 2008
Reputation Points: 15
Solved Threads: 3