After 1.3 update, no graph lines on homepage or day graphs #877
-
Does anyone have any suggestions? (Thanks in Advance.) After updating to v1.3 Homepage and Day charts are missing their lines. Week, Month and Year are fine. I can not figure out why. I have played with a lot of settings like "lineWidth = 3", etc. The data is there when you mouse over...and in my sqlite DB. I can't figure it out. My site is here: https://tippyturtle.com/weather/graphs/?graph=all The start of my graphs.conf looks like:
My weewx.conf looks like this for the skin:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I've solved my problem... archive_interval in weewx.conf must match gapsize in graphs.conf My /etc/weewx/weewx.conf file has: ...because I am using the very excellent weewx-sdr and switching between 433mhz and 915mhz for my sensors and need to stay on each frequency long enough to ensure readings. Either during the 1.3 upgrade or from my own doing (most likely) my /etc/weewx/skins/Belchertown/graphs.conf had the default: I've updated it to: ...and life is good again. :-) |
Beta Was this translation helpful? Give feedback.
I've solved my problem... archive_interval in weewx.conf must match gapsize in graphs.conf
My /etc/weewx/weewx.conf file has:
archive_interval = 600
...because I am using the very excellent weewx-sdr and switching between 433mhz and 915mhz for my sensors and need to stay on each frequency long enough to ensure readings.
Either during the 1.3 upgrade or from my own doing (most likely) my /etc/weewx/skins/Belchertown/graphs.conf had the default:
gapsize = 300 # This should be your archive_interval from weewx.conf
I've updated it to:
gapsize = 600 # This should be your archive_interval from weewx.conf
...and life is good again. :-)