#Show-names not respected on history-graph cards in grid card

1 messages · Page 1 of 1 (latest)

tired jewel
#

So, I've got a weird one here. I'm using HA to monitor a cold room at work, via ESPHome. I originally resorted to a series of horizontal-stack and vertical-stack cards to get a 2x3 set of history-graphs for temperature and humidity over various time frames. I decided to try out a different arrangement using a grid instead of the much-more-annoying-to-debug series of horizontal/vertical stacks, but...show-names: false when used in the history-graph cards is not respected in the grid card version, but works properly in the series-of-stacks version. Has anyone seen this? Have any suggestions for a fix? I really don't need the legend for any of the graphs.

rare storm
#

It looks correct to me.

#

Share your card yaml if you think its not working.

tired jewel
#

Will do...One sec. I should probably set up a simpler test case...

#

`type: horizontal-stack
cards:

  • type: vertical-stack
    cards:
    • type: history-graph
      entities:
      • entity: sensor.soy_cold_room_c_temperature
        title: Temperature - 6 Hour
        hours_to_show: 6
        show_names: false
    • type: history-graph
      entities:
      • entity: sensor.soy_cold_room_c_relative_humidity
        title: Humidity - 6 Hour
        hours_to_show: 6
        show_names: false
  • type: vertical-stack
    cards:
    • type: history-graph
      entities:
      • entity: sensor.soy_cold_room_c_temperature
        title: Temperature - 12 Hour
        hours_to_show: 12
        show_names: false
    • type: history-graph
      entities:
      • entity: sensor.soy_cold_room_c_relative_humidity
        title: Humidity - 12 Hour
        hours_to_show: 12
        show_names: false
  • type: vertical-stack
    cards:
    • type: history-graph
      entities:
      • entity: sensor.soy_cold_room_c_temperature
        title: Temperature - 24 Hour
        hours_to_show: 24
        show_names: false
    • type: history-graph
      entities:
      • entity: sensor.soy_cold_room_c_relative_humidity
        title: Humidity - 24 Hour
        hours_to_show: 24
        show_names: false
        grid_options:
        columns: full
        `

This version works fine.

#

`square: false
type: grid
cards:

  • type: history-graph
    show-names: false
    entities:
    • entity: sensor.soy_cold_room_c_temperature
      title: Temperature - 6 hour
      hours_to_show: 6
  • type: history-graph
    entities:
    • entity: sensor.soy_cold_room_c_temperature
      title: Temperature - 12 hour
      hours_to_show: 12
      show-names: false
  • type: history-graph
    entities:
    • entity: sensor.soy_cold_room_c_temperature
      title: Temperature - 24 hour
      hours_to_show: 24
      show-names: false
  • type: history-graph
    entities:
    • entity: sensor.soy_cold_room_c_relative_humidity
      title: Humidity - 6 hour
      hours_to_show: 6
      show-names: false
  • type: history-graph
    entities:
    • entity: sensor.soy_cold_room_c_relative_humidity
      title: Humidity - 12 hour
      hours_to_show: 12
      show-names: false
  • type: history-graph
    entities:
    • entity: sensor.soy_cold_room_c_relative_humidity
      title: Humidity - 24 hour
      hours_to_show: 24
      show-name: false
      columns: 3
      grid_options:
      columns: full
      rows: 8
      `

This version does not.

rare storm
#
-    show-names: false
+    show_names: false
tired jewel
#

Ugh. :/

#

I am sorry. Thank you for the second set of eyes.