Graphs do not show up in group

I am trying to add a few graphs to a custom group. The graphs in question are working just fine on the home tab as separate entities, but any group I try to add them into shows up empty.

This is with 0.58.0

The temperature stats are coming from a Nest device.

These are the graphs in question:

history_graph:
  temp_stats:
    name: Temperature Stats
    entities:
      - sensor.hallway_thermostat_temperature
      - sensor.hallway_thermostat_target
    hours_to_show: 168
    refresh: 300
  hvac_state:
    name: Heat/Cool Operational State
    entities:
      - sensor.hallway_thermostat_hvac_state
    hours_to_show: 168
    refresh: 300

Here is how my group is configured:

group:
  graphs_all:
    view: yes
    icon: mdi:chart-line
    name: Statistics
    entities:
       - group.hvac_stats
  hvac_stats:
    name: HVAC Stats
    entities:
      - history_graph.temp_stats
      - history_graph.hvac_state

Do graphs show at the bottom of the history page from the menu? Do they show up in the state page as history.hvac_state. I added the graphs today and they appear on the history page and in the group I put in the front end after restart.

Interesting… Looking at the States list I see the temp_stats history_graph show up with its old name, even though I’ve renamed it a while ago…


I was able to make it work when I changed the references to the names, as they showed up in the entities list.

Another issue I fixed is the name of the hvac_stats group… I made name: xxx be a different value than that entity name, which made it work…
(name used to be HVAC Stats, which I guess it automatically mapped to hvac_stats)

I think there is some kind of a confusion between using the entity name and the “readable” name… (or is it in my head?)

group:
  hvac_stats:
    name: HVAC Stats Group
    entities:
      - history_graph.temperature_stats
      - history_graph.heat_cool_operational_state

I tried to do the same however both curves do not combine to one graph. Both are temperature.

Temp%20graphs

The idea is that I show the temperature in the solarboiler and the atmosperic temperature (which I get from the internet) in the same picture.

I have the following in my configuration.yaml

history_graph:
  temp_stats:
    name: Solar Temperatures
    entities:
      - sensor.temperature_zonnecollector
      - sensor.yr_temperature
    hours_to_show: 12
    refresh: 60

My group.yaml shows :slight_smile:

  graphs_all:
    view: yes
    icon: mdi:chart-line
    name: Statistics
    entities:
       - group.test_stats
  test_stats:
    name: Test Stats
    entities:
       - history_graph.temp_stats
       - history_graph.solar_temperatures 

Question is…what did I do wrong ??

Eddy