On v1.7 of Belchertown, I added more graphs, one of which is "Rain Totals"
https://www.woodlands-weather.co.za/weewx/belchertown/graphs/?graph=raintotalsI cannot get the "Rain Totals" graphs or rather
charts, to display in new-belchertown v2.0
I started a process of elimination.
I only added [raintotals] to the original charts.conf AND THEN adding individual charts below raintotals one by one.
The below works:[raintotals]
  title = Rain Totals by Period
  show_button = true
  button_text = Rain Totals
  type = column
  time_length = all
  aggregate_type = sum
  aggregate_interval = 86400
Â
  [[raintoday]]
    title = "Rain Today"
    subtitle = "5-minute intervals + cumulative total"
    type = column
    time_length = today
    gapsize = 300
    aggregate_type = sum
    aggregate_interval = 300
    tooltip_date_format = "HH:mm"
    [[[rain]]]
      name = "Rain per 5 min (mm)"
      color = "#438bd6"
      yAxis_min = 0
    [[[rainTotal]]]
      name = "Cumulative Rain Today (mm)"
      type = line
      color = "#ff0000"
      zIndex = 3
      yAxis = 1
The below does not work:Â Â [[rainthisweek]]
    title = "Rain This Week"
    subtitle = "Hourly bars + cumulative total (Mon–Sun)"
    type = column
    time_length = week
  #  time_length = 604800
(I tried this too)Â Â Â Â gapsize = 3600
    aggregate_type = sum
    aggregate_interval = 3600
    tooltip_date_format = "dddd HH:mm"
    [[[rain]]]
      name = "Rain per hour (mm)"
      color = "#438bd6"
      yAxis_min = 0
    [[[rainTotal]]]
      name = "Cumulative Rain This Week (mm)"
      type = line
      color = "#ff0000"
      zIndex = 3
      lineWidth = 3
Could this be a bug?