1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-21 12:59:53 +01:00

Merge pull request #3556 from tgtje/patch-1

Update e_dashboard.php
This commit is contained in:
Cameron 2018-12-06 10:20:12 -08:00 committed by GitHub
commit 0d512dc0b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -331,7 +331,7 @@ class user_dashboard // plugin-folder + '_url'
// $this->title = 'Registered '.date('M Y',$month_start).' ('.$sum.')';
$this->title = 'New Users ('.$sum.')';
$this->title = ''.UC_LAN_9.' ('.$sum.')';
$totalDays = date('t', $month_start);
@ -348,7 +348,7 @@ class user_dashboard // plugin-folder + '_url'
$options = array(
'chartArea' =>array('left'=>'60', 'width'=>'90%', 'top'=>'25'),
'legend' => array('position'=> 'none', 'alignment'=>'center', 'textStyle' => array('fontSize' => 14, 'color' => '#ccc')),
'vAxis' => array('title'=>'New Users', 'minValue'=>0, 'maxValue'=>10, 'titleFontSize'=>16, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines'=>array('color'=>'#696969', 'count'=>5), 'format'=>'', 'textStyle'=>array('color' => '#ccc') ),
'vAxis' => array('title'=> UC_LAN_9, 'minValue'=>0, 'maxValue'=>10, 'titleFontSize'=>16, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines'=>array('color'=>'#696969', 'count'=>5), 'format'=>'', 'textStyle'=>array('color' => '#ccc') ),
'hAxis' => array('title'=>date('M Y', $month_start), 'slantedText'=>true, 'slantedTextAngle'=>60, 'ticks'=>$ticks, 'titleFontSize'=>14, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines' => array('color'=>'transparent'), 'textStyle'=>array('color' => '#ccc') ),
'colors' => array('#77acd9','#EDA0B6', '#EE8D21', '#5CB85C'),
'animation' => array('duration'=>1000, 'easing' => 'out'),
@ -503,4 +503,4 @@ class user_dashboard // plugin-folder + '_url'
}
}