Energy-usage-graph card size

Hi Folks,

I’m trying to recreate the energy dashboard, but the energy-usage-graph comes out really small and I cant get it to stretch across 2 columns in a grid.

The dashboard raw Yaml looks like this:

views:
  - title: NRG
    sections:
      - type: grid
        cards:
          - type: energy-usage-graph
        column_span: 2
      - type: grid
        cards:
          - type: energy-distribution
          - type: energy-grid-neutrality-gauge
          - type: energy-self-sufficiency-gauge
          - type: energy-solar-consumed-gauge
          - type: thermostat
            entity: climate.upstairs
            name: Upstairs AC
    type: sections
    max_columns: 3

Try this:

  - type: grid
    cards:
      - type: energy-usage-graph
        grid_options:
          columns: full
    column_span: 2

If you’re trying to recreate the energy dashboard, just note that that uses a Sidebar layout.

1 Like