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 ); -} -?>