pricecharts

track prices of consumer electronics
Log | Files | Refs | README

commit b1b5cf1381471c427482864960f1d71656334f2a
parent 008a576aab8f9c618c70d0479d6ad920bc6e9a44
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Mon, 10 Nov 2014 20:22:20 -0700

gen_svg: make axis label font bigger

Diffstat:
Mgen_svg.pl | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gen_svg.pl b/gen_svg.pl @@ -117,7 +117,7 @@ while (my ($part_num, $description) = $parts_sth->fetchrow_array()) { id => $_, x => $margin_left + $width + 20, y => $y, - style => "font-size: 12px; fill: #666", + style => "font-size: 14px; fill: #666", "text-anchor" => "start" )->cdata("\$$price"); @@ -139,7 +139,7 @@ while (my ($part_num, $description) = $parts_sth->fetchrow_array()) { $svg->text( id => "time_$time", x => $x, y => $total_height, - style => "font-size: 12px; fill: #666", + style => "font-size: 14px; fill: #666", "text-anchor" => "middle" )->cdata($date);