Hi,
I'm new to php, currently i'm trying to create a pie chart but i face this error.
This is the error msg : Fatal error: Class 'PieChart' not found in C:\wamp\www\Cou nter.php on line 10
This is the code -
I'm new to php, currently i'm trying to create a pie chart but i face this error.
This is the error msg : Fatal error: Class 'PieChart' not found in C:\wamp\www\Cou nter.php on line 10
This is the code -
Code:
<?php
$chart = new PieChart(500, 250);
$dataSet = new XYDataSet();
$dataSet->addPoint(new Point("A(80)", 80));
$dataSet->addPoint(new Point("B(75)", 75));
$dataSet->addPoint(new Point("C(50)", 50));
$chart->setDataSet($dataSet);
$chart->setTitle("Hi");
$chart->render("D.png");
?>
Comment