View All Option in History

added my vote.
meanwhile you can do things like:

- title: History auto
  path: history-auto
  icon: mdi:history
  panel: true
  cards:

    - type: entities
      title: History include all domains
      entities:

        - entity: input_number.history_span

        - type: custom:config-template-card
          entities:
            - input_number.history_span
          variables:
            span: states['input_number.history_span'].state
          card:
            type: custom:auto-entities
            card:
              type: history-graph
              hours_to_show: ${span}
              card_mod:
                style: |
                  ha-card {
                    box-shadow: none;
                    margin: 8px -16px 0px -16px;
                  }

            filter:
              include:
                - domain: "*"

which does only show the recorded items (unlike the entity_selector…)

still trying to make it scroll, see 🔹 Card-mod - Add css styles to any lovelace card - #3438 by Mariusthvdb

3 Likes