diff options
-rw-r--r-- | httemplate/graph/money_time.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/graph/money_time.cgi b/httemplate/graph/money_time.cgi index d458405ea..67b82125b 100644 --- a/httemplate/graph/money_time.cgi +++ b/httemplate/graph/money_time.cgi @@ -95,7 +95,9 @@ my @mon = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec); </TD> <% $total += $column; %> <% } %> - <TD><%= sprintf("%.2f", $total) %></TD> + <TD ALIGN="right" BGCOLOR="#eeeeee"> + <%= $link ? $link. 'begin='. @{$data->{speriod}}[0]. ';end='. @{$data->{speriod}}[0]. '">' : '' %><FONT COLOR="#<%= $color{$row} %>">$<%= sprintf("%.2f", $total) %></FONT><%= $link ? '</A>' : '' %> + </TD> </TR> <% } %> </TABLE> |