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.
#Show-names not respected on history-graph cards in grid card
1 messages · Page 1 of 1 (latest)
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
- entity: sensor.soy_cold_room_c_temperature
- type: history-graph
entities:- entity: sensor.soy_cold_room_c_relative_humidity
title: Humidity - 6 Hour
hours_to_show: 6
show_names: false
- entity: sensor.soy_cold_room_c_relative_humidity
- type: history-graph
- 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
- entity: sensor.soy_cold_room_c_temperature
- type: history-graph
entities:- entity: sensor.soy_cold_room_c_relative_humidity
title: Humidity - 12 Hour
hours_to_show: 12
show_names: false
- entity: sensor.soy_cold_room_c_relative_humidity
- type: history-graph
- 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
- entity: sensor.soy_cold_room_c_temperature
- 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
`
- entity: sensor.soy_cold_room_c_relative_humidity
- type: history-graph
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
- entity: sensor.soy_cold_room_c_temperature
- type: history-graph
entities:- entity: sensor.soy_cold_room_c_temperature
title: Temperature - 12 hour
hours_to_show: 12
show-names: false
- entity: sensor.soy_cold_room_c_temperature
- type: history-graph
entities:- entity: sensor.soy_cold_room_c_temperature
title: Temperature - 24 hour
hours_to_show: 24
show-names: false
- entity: sensor.soy_cold_room_c_temperature
- type: history-graph
entities:- entity: sensor.soy_cold_room_c_relative_humidity
title: Humidity - 6 hour
hours_to_show: 6
show-names: false
- entity: sensor.soy_cold_room_c_relative_humidity
- type: history-graph
entities:- entity: sensor.soy_cold_room_c_relative_humidity
title: Humidity - 12 hour
hours_to_show: 12
show-names: false
- entity: sensor.soy_cold_room_c_relative_humidity
- 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
`
- entity: sensor.soy_cold_room_c_relative_humidity
This version does not.
- show-names: false
+ show_names: false