Problem with EnergieManagment and EnergieMonitoring in generell

Hi,

i wanted to try the new Energimanagment and also den new statistics graph, but for some reason i dont get it to work.

So first i started with reading out my smartmeter (Austrian AMIS) with esphome

uart:
  id: uart_bus
  tx_pin: GPIO1
  rx_pin: GPIO3
  baud_rate: 9600
  parity: EVEN

sensor:
  - platform: amis
    power_grid_key: *********
    energy_a_positive:
      name: Energy A+
    energy_a_negative:
      name: Energy A-
#    reactive_energy_a_positive:
#      name: Reactive Energy A+
#    reactive_energy_a_negative:
#      name: Reactive Energy A-
    instantaneous_power_a_positive:
      name: "Instantaneous Power A+"
    instantaneous_power_a_negative:
      name: Instantaneous Power A-
    reactive_instantaneous_power_a_positive:
      name: Reactive Instantaneous Power A+
    reactive_instantaneous_power_a_negative:
      name: Reactive Instantaneous Power A-

this is working fine so far
image

but i cant use this directly for energymanagment nor for the statistic graph … so i added a utility meter

utility_meter:
  hourly_energy:
    source: sensor.energy_a
    name: Hourly Energy
    cycle: hourly
  daily_energy:
    source: sensor.energy_a
    name: Daily Energy
    cycle: daily
  monthly_energy:
    source: sensor.energy_a
    name: Monthly Energy
    cycle: monthly

but the values look fine, but for some reason the graph looks strange
for example the graph for hourly


so i removed the “sum” but than i see nothing?

i dont get it to work :confused:
is there any guide or howto that in detail explanes how to set everything up in order to get nice graphs an all the values i need? i am not able to get it to work with the documentation i found so far.