HOLA OJAJA ALGUIEN M PUEDA AYUDAR TRATO DE HACER UNA GRAFICA CON PCHART PERO NO PUEDO VER LA IMAGEN Q SE GENERA EL ERROR ES EL SIG:
Warning: imagepng() [function.imagepng]: Unable to open 'example10.png' for writing: Permission denied in /home/a5448150/public_html/Graficos/pChart/pChart.class on line 3183
ESTE ES EL EJEMPLO:
<?php
/*
Example10 : A 3D exploded pie graph
*/
// Standard inclusions
include("pChart/pData.class");
include("pChart/pChart.class");
// Dataset definition
$DataSet = new pData;
$DataSet->AddPoint(array(10,2,3,5,3),"Serie1");
$DataSet->AddPoint(array("January","February","March","Apri l","May"),"Serie2");
$DataSet->AddAllSeries();
$DataSet->SetAbsciseLabelSerie("Serie2");
// Initialise the graph
$Test = new pChart(420,250);
$Test->drawFilledRoundedRectangle(7,7,413,243,5,240,240, 240);
$Test->drawRoundedRectangle(5,5,415,245,5,230,230,230) ;
$Test->createColorGradientPalette(195,204,56,223,110,41, 5);
// Draw the pie chart
$Test->setFontProperties("Fonts/tahoma.ttf",8);
$Test->AntialiasQuality = 0;
$Test->drawPieGraph($DataSet->GetData(),$DataSet->GetDataDescription(),180,130,110,PIE_PERCENTAGE_L ABEL,FALSE,50,20,5);
$Test->drawPieLegend(330,15,$DataSet->GetData(),$DataSet->GetDataDescription(),250,250,250);
// Write the title
$Test->setFontProperties("Fonts/MankSans.ttf",10);
$Test->drawTitle(10,20,"Sales per month",100,100,100);
$Test->Render("example10.png");
?>
TENGO EL EJEMPLO Y LAS CARPETAS PCHART EN EL MISMO LUGAR
OJALA ALGUIEN M PUEDA AYUDAR GRACIAS...