Graphs change from inline to summary card within Lovelace UI

Hello!

I have a few history graphs that I have in my home assistant instance. What I’ve noticed is, after a HA reboot, they display normally, but after a while they display in a summary “card” within the UI.

02%20PM

I would like the graphs to display normally, as graphs. Is there any way I can “force” this behavior (display the graph) within the default Lovelace UI?

Thanks, ~Jeff

you have to use a history-graph card not the history-graph component that you used in the old ui.

old ui:

history_graph:
  graph_indoor_temp:
    name: Indoor Temperature Graph
    entities:
      - sensor.livingroom_temperature
      - sensor.sunroom_temperature
      - sensor.master_bedroom_temperature
      - sensor.big_room_temperature
      - sensor.computer_room_motion_temperature
    hours_to_show: 24
    refresh: 600      

group:
  environment_graphs:
    name: Indoor Teperature
    entities:
      - history_graph.indoor_temperature_graph
      - history_graph.indoor_humidity_graph
      #- history_graph.darksky_temperature_graph
      - history_graph.outdoor_temperature_graph
      - history_graph.outdoor_humidity_graph

new ui:

  - type: history-graph
    title: Indoor Temperature
    entities:
      - sensor.livingroom_temperature
      - sensor.sunroom_temperature
      - sensor.master_bedroom_temperature
    hours_to_show: 24
    refresh: 600

You’re welcome, -Jeff :wink:

1 Like