Not being accustomed to the european date format used in the graphs, I created this little patch to include weekday names and abbreviated month names in graphs. Instead of "16.02" this would use "Tue 16 Feb".
This probably should be configurable, but it was easiest to just change the hardcoded format in include/classes/class.cchart.php:

diff class.cchart.php.orig class.cchart.php
This probably should be configurable, but it was easiest to just change the hardcoded format in include/classes/class.cchart.php:
diff class.cchart.php.orig class.cchart.php
Code:
1146c1146
< else if($interval > 86400) $date_format = 'd.m';
---
> else if($interval > 86400) $date_format = 'D d M';
1164c1164
< $str = date('d.m H:i',$this->stime);
---
> $str = date('D d M H:i',$this->stime);
1178c1178
< $str = date('d.m H:i',$endtime);
---
> $str = date('D d M H:i',$endtime);
1193,1194c1193,1194
< if(date('Hi', $new_time) == 0) $date_format = 'd.m';
< else $date_format = 'd.m H:i';
---
> if(date('Hi', $new_time) == 0) $date_format = 'D d M';
> else $date_format = 'D d M H:i';
Comment