Im learning RRDtool. I created a graph:
#!/bin/bash
rrdtool graph /home/pi/rrd/test.png \
--end now --start now-6000s --width 500 --height 400 \
DEF:ds0a=/home/pi/rrd/temperature.rrd:temperature:AVERAGE \
AREA:ds0a#0000FF:"Temperature ('C)\l" \
It looks like this:
How can I format scale to add fractional part?
I want 25.2, 25.4, 25.6 etc. instead of 25 few times.
I have tried option from RRDtool documentation online
--left-axis-format
but my RRDtool has no such option.
There is no problem with
--right-axis-format
it works as I want, but... I want correct format on left side, not right.
Im using 1.4.7 on Raspberry Pi. I was asking on unix.stackexchange.com about this, but there are more questions about RRDtool here, so I moved my question here.