diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-10-17 09:41:12 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-10-17 09:48:29 -0400 |
commit | f654e068b6e7be55bdbd749293c1bda7737cf870 (patch) | |
tree | 843df1771e186692b7b6db0b60d55bbcbcb60526 /httemplate/graph/elements/monthly.html | |
parent | 5dabafc5e63ae7559ca6d2867e653660b981e639 (diff) |
RT# 78019 - Added total revenue line to Package churn report
Diffstat (limited to 'httemplate/graph/elements/monthly.html')
-rw-r--r-- | httemplate/graph/elements/monthly.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/graph/elements/monthly.html b/httemplate/graph/elements/monthly.html index 1a9428115..cfe5a3c6d 100644 --- a/httemplate/graph/elements/monthly.html +++ b/httemplate/graph/elements/monthly.html @@ -59,6 +59,7 @@ Example: 'no_graph' => \@no_graph, 'bottom_link' => \@bottom_link, 'transpose' => $opt{'daily'}, + 'sprintf_fields' => $sprintf_fields, map { $_, $opt{$_} } (qw(title nototal graph_type @@ -79,6 +80,7 @@ my $fromparam = $opt{'link_fromparam'} || 'begin'; my $toparam = $opt{'link_toparam'} || 'end'; my @items = @{ $opt{'items'} }; +my $sprintf_fields = $opt{'sprintf_fields'}; foreach my $other (qw( labels graph_labels colors links )) { if ( ref($opt{$other}) eq 'HASH' ) { |