summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d60188d)
raw | patch | inline | side by side (parent: d60188d)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 12 Aug 2010 15:34:06 +0000 (15:34 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 12 Aug 2010 15:34:06 +0000 (15:34 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19386 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/generic/statistics/class_statistics.inc | patch | blob | history |
diff --git a/gosa-core/plugins/generic/statistics/class_statistics.inc b/gosa-core/plugins/generic/statistics/class_statistics.inc
index 6fdacff0035b6fe1c1bfc487aa5454f3d575880f..8b5269da17e47b6b91ddda4dae2435d7be4f1791 100644 (file)
$tmp = array();
$DataSet2 = new pData;
$dates = array();
+ $max = 0;
foreach($res['action_per_date'] as $id => $data){
$category = $data['category'];
if(!isset($mostUsedCategories[$category])) continue;
+ if($data['count'] > $max) $max = $data['count'];
$tmp[$category][$date] = $data['count'];
$dates[] = $date;
}
$dates = array_unique($dates);
+
foreach($tmp as $category => $data){
foreach($dates as $date){
$DataSet2->RemoveSerie('date');
$Test2 = new pChart(700,230);
- $Test2->setFixedScale(0,20);
+ $Test2->setFixedScale(0,$max);
$Test2->setFontProperties("./themes/default/fonts/LiberationSans-Regular.ttf",8);
$Test2->setGraphArea(50,30,585,200);
$Test2->drawFilledRoundedRectangle(7,7,693,223,5,240,240,240);
$Test2->drawRoundedRectangle(5,5,695,225,5,230,230,230);
$Test2->drawGraphArea(255,255,255,TRUE);
- $Test2->drawScale($DataSet2->GetData(),$DataSet2->GetDataDescription(),SCALE_NORMAL,150,150,150,TRUE,0,2,TRUE);
+ $Test2->drawScale($DataSet2->GetData(),$DataSet2->GetDataDescription(),SCALE_NORMAL,150,150,150,TRUE,0,2);
$Test2->drawGrid(4,TRUE,230,230,230,50);
// Draw the 0 line