diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-09-02 21:05:28 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-09-02 21:05:28 -0500 |
commit | 5cbb1285d26ffe2f7fbf8aed14b5b3d7c037fe83 (patch) | |
tree | a5f7d627fa7389775c422e4945167785b9163990 /httemplate/graph | |
parent | e0e76b55a2f83c19e4114eefe4dabcab092808b4 (diff) |
RT#32892: Monthly Sales Tax Report [fixed names and colors]
Diffstat (limited to 'httemplate/graph')
-rw-r--r-- | httemplate/graph/elements/report.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/graph/elements/report.html b/httemplate/graph/elements/report.html index f1b0d166d..b5d214816 100644 --- a/httemplate/graph/elements/report.html +++ b/httemplate/graph/elements/report.html @@ -11,6 +11,7 @@ Example: #these run parallel to items, and can be given as hashes 'row_labels' => \@row_labels, #required 'colors' => \@colors, #required + 'bgcolors' => \@bgcolors, #optional 'graph_labels' => \@graph_labels, #defaults to row_labels 'links' => \@links, #optional @@ -22,7 +23,7 @@ Example: #optional 'nototal' => 1, - 'graph_type' => 'LinesPoints', + 'graph_type' => 'LinesPoints', #can be 'none' for no graph 'bottom_total' => 1, 'sprintf' => '%u', #sprintf format, overrides default %.2f 'disable_money' => 1, @@ -231,7 +232,8 @@ any delimiter and linked from the elements in @data. % foreach my $row ( @items ) { % #make a style % my $color = shift @{ $opt{'colors'} }; -% push @styles, ".i$i { text-align: right; color: #$color; }"; +% my $bgcolor = $opt{'bgcolors'} ? (shift @{ $opt{'bgcolors'} }) : 'ffffff'; +% push @styles, ".i$i { text-align: right; color: #$color; background: #$bgcolor; }"; % #create the data row % my $links = shift @{$opt{'links'}} || ['']; % my $link_prefix = shift @$links; |