Lovelace / mini graph show 2 hours between points

Hi all,

I tried to figure this out on my own by looking into the card options configuration but I can’t seem to fix the following: Between all datapoints from selected sensors on every card on my dashboard is a 2 hour difference, which is weird because I did not configure it that way.

Anyone know how to fix this to 1 hour or any configuration I set it to?

Example:

type: 'custom:mini-graph-card'
entities:
  - entity: sensor.water_meter_every_hour
name: Water usage liters per hour
show:
  graph: bar
hours_to_show: 12
points_per_hour: 1

1 Like

Tried to simulate your case:

type: vertical-stack
cards:
  - type: custom:mini-graph-card
    entities: &ref_entities
      - entity: sensor.ac66u_snmp_24_temp
    show:
      graph: line
      points: true
    <<: &ref_settings
      hours_to_show: 12
      points_per_hour: 1
      line_width: 2
      smoothing: false

  - type: custom:mini-graph-card
    entities: *ref_entities
    show:
      graph: bar
    <<: *ref_settings

изображение

изображение

So, “points_per_hour: 1” causes 1 hour intervals.
Are you sure that your sensor is updated at least every hour?