Hi all,
Iām following this thread since several weeks and I learned a lot (or sometimes Iām a bit lost), nevertheless a big thanks to everyone especially to rhysb
So I started to redesign and optimize my dashboard. Iād like to modify/add a dropdown to my current card but I do not understand how it is done in the right way so that all three mini-graph-card are not shown by default:
type: vertical-stack
cards:
- type: vertical-stack
cards:
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: sensor.netatmo_meteoro_indoor_office_pascal_co2
icon_color: teal
card_mod:
style: |
ha-card {
padding: 5px;
--chip-font-size: 0.6em;
--chip-height: 32px
}
- type: entity
entity: sensor.netatmo_meteoro_indoor_office_pascal_temperature
icon_color: orange
card_mod:
style: |
ha-card {
padding: 5px;
--chip-font-size: 0.6em;
--chip-height: 32px
}
- type: entity
entity: sensor.netatmo_meteoro_indoor_office_pascal_humidity
icon_color: blue
card_mod:
style: |
ha-card {
padding: 5px;
--chip-font-size: 0.6em;
--chip-height: 32px
}
alignment: justify
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: sensor.netatmo_meteoro_indoor_office_pascal_battery_percent
icon_color: blue-grey
card_mod:
style: |
ha-card {
padding: 5px;
--chip-font-size: 0.6em;
--chip-height: 33px
}
- type: entity
entity: sensor.pwrplg01_office
icon_color: '#ff452a'
card_mod:
style: |
ha-card {
padding: 5px;
--chip-font-size: 0.6em;
--chip-height: 32px
}
alignment: justify
- type: custom:mini-graph-card
entities:
- sensor.netatmo_meteoro_indoor_office_pascal_co2
name: CO2
icon: mdi:molecule-co2
line_color: teal
line_width: 5
hours_to_show: 24
- type: custom:mini-graph-card
entities:
- sensor.netatmo_meteoro_indoor_office_pascal_temperature
name: Temperature
line_color: orange
line_width: 5
hours_to_show: 24
- type: custom:mini-graph-card
entities:
- sensor.pwrplg01_office
name: Power consumption
line_color: '#ff452a'
line_width: 5
hours_to_show: 48
Thanks for your help
Cheers
P4SQL