From 87a7c07bddad5183fe8b49b4f08305abf6b3eed5 Mon Sep 17 00:00:00 2001 From: raulmateos Date: Wed, 9 Dec 2009 10:23:55 +0000 Subject: [PATCH] 2009-12-09 Raul Mateos * include/fgraph2.php: Deleted test file, never used. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2182 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 ++ pandora_console/include/fgraph2.php | 111 ---------------------------- 2 files changed, 5 insertions(+), 111 deletions(-) delete mode 100644 pandora_console/include/fgraph2.php diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 894b6f04de..28dab8f038 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2009-12-09 Raul Mateos + + * include/fgraph2.php: Deleted test file, never used. Will ezComponents + graph be used someday...? + 2009-12-08 Miguel de Dios * include/functions_db.php: in function "create_user_profile" add the diff --git a/pandora_console/include/fgraph2.php b/pandora_console/include/fgraph2.php deleted file mode 100644 index 32c57f1bd1..0000000000 --- a/pandora_console/include/fgraph2.php +++ /dev/null @@ -1,111 +0,0 @@ - $max_items) { - //Pops an element off the array until the array is small enough - array_pop ($data); - } - $chart = new ezcGraphPieChart(); - $chart->renderer = new ezcGraphRenderer3d(); - $chart->driver = new ezcGraphGdDriver(); - $chart->palette = new customPalette(); - $chart->options->label = '%2$d (%3$.1f%%) '; - $chart->legend->landscapeSize = .05; - $chart->options->font = 'FreeSans.ttf'; - $chart->options->percentThreshold = 0.01; - $chart->legend = true; - $chart->legend->position = ezcGraph::RIGHT; - $chart->data['datos'] = new ezcGraphArrayDataSet($comb); - $chart->data['datos']->highlight = true; - $chart->data['datos']->highlight['SYSTEM'] = false; - $chart->renderToOutput( 300, 200 ); -} -?>