Energy dash board stuck in 1 day

Hello guys,i got a problem with my energy dashboard,here is the info.
Im using a shelly 3em several years now to monitor my consumption and i tryed to implement my sensor in energy dashboard,Im using native shelly mqtt to grab my values,i got a 3 phase system so im gathering info from 3 sensors,i manage to make a template thats adds these sensors so i can just see one sensor with the sum of three, here is the yaml

  - sensor:
      - name: "New_energy_consumption_combined"
        unique_id: New_energy_consumption_combined
        unit_of_measurement: kWh
        state: >-
          {{ (states('sensor.3EM_L1_Total_Kwh_MQTT') | float(0) + 
              states('sensor.3EM_L2_Total_Kwh_MQTT') | float(0) + 
              states('sensor.3EM_L3_Total_Kwh_MQTT') | float(0)) | round }}
        device_class: energy
        state_class: total_increasing

with this sensor im getting readings,the number is huge for the first measurement cause i guess it takes the whole vallue from all this years and the next day from that it should just give me a correct daily value but,i can see anything past 11/5/2023 in the weekly tab,in the daily tab i can see the “today” values,what is happening?



Btw yes i can see every single day measurements correct if i change with the arrows,the problem is on the week tab.

I think it’s because you have a such a large first value, it’s just skewing the scaling (the subsequent weeks’ usage is too low to register on the graph at the scaling it has to use to display the one large value).

you are right maybe,but i have to fix this value to be sure,do you have any idea how to do it? im using maria dbv fopr my database is there any way to manipulate the data ?