Good catch, will be fixed next version
Can you explain this problem deeper, maybe with an example. note: you can also just type negative values in the data. Because I get correct colors using only negative data (note: Line color is fixed in this version) Edit2: Ah, you edited your comment while I had this comment in the draft. So I guess I only have to change the line color (which is already fixed in the new version)?
There are quite a few ways to position things inside the graph. The tricky part is handling the outside text. As it gets longer or shorter, everything needs to stay centered, but I really do not want the text to shift the graph itself.
The graph should always stay exactly where we put it. Otherwise, it would jump around whenever a longer timestamp or value comes in. Plus, if someone stacks multiple graph widgets, they would suddenly lose their alignment. So we have to find a sweet spot that works for any possible value. Actually, while testing this just now, I spotted a bug where the Y value squeezes the graph. It definitely should not do that, so I will get that fixed.
Anyway, maybe I should add an overall X and Y offset, but that feels a bit like a quick patch. If you want absolute pixel perfect control, here is a better trick: just make the container invisible and place it on an empty container.
Looking at your dashboard, I would actually recommend doing that for every item. The label alignment is a little mixed right now. The spacing around the borders changes quite a bit between containers. Most labels are centered, but one is on the left. The font sizes vary, and one is capitalized while the others are not.
I also noticed it looks like you are tweaking every widget individually. The best way to handle this is actually through the main settings. Every widget listens to a set of master settings in the editor. Just set the “Selected Widget” on “Dashboard Settings” (or click anywhere on the empty canvas). That way, you can set up one consistent style for everything, and then just adjust individual widgets only when you really need to.
It does not work in current version. Next version this will be implemented. Good suggestion.