xNidhogg said...
looks sweet! But it's very small, any chance to set the height?
Look at the javascript and you'll find a thing that says
var css =followed by a bunch of stuff in single quotes concatenated together with plus signs.
'#graph-item-info .item {font-size:2em; line-height:1.2em;}'+
'#graph-item-info .item img {height:1em; width:1em; vertical-align:bottom;}'+
and so forth
There are many height references, you'll probably have to go through and CTRL+F "height:" <-- this has a colon, also includes line-height
and play with the numbers there. I don't have this script installed so I can't give you an exhaustive list of every attribute required to achieve the effect you want. It's in em which is a screen-relative size, changes to these numbers will result in significant scaling when you add even a small amount to the number.
Also, I'm not sure how it will affect scaling with
var max_hours = 168,
graph_height_top = 16,
graph_height_bottom = 16,
Since these values appear to be used for some mouse related functions.
I'm sure rfindley can give you a better answer, and maybe functionalize size scaling in the program
Edit: Also, before you mess with the javascript, try messing with the CSS in firebug or developer tools or etc. If you don't know what this is you're going to have a bad time.