(apexchart) I see different valuen in header and different in bars

Please help. I have graph where I am calculating values of bars


 data_generator: |
       return Object.entries(entity.attributes).map(([date, value], index) => {
         return [new Date(date).getTime(), value + 530.09/1000 + 545/1000 + 34.24/1000 + 257.51/1000 + 5.01/1000 + 598.95/1000];
       });

That work OK. But still I see in header (now value) that is not calculated by this data_generator… and this value is still original value. See

How can I change it current header values?

Zdravím Petře. Mám za to, že je to kvůli hodnotě této entity:
series:

  • entity: sensor.current_spot_electricity_price
    Ty sloupce se generují z generátoru, který jste přiložil ale hodnota v header je podle mne převzatá z aktuální hodnoty sensoru. Hodnoty sloupců se berou z atributů tohoto sensoru a na nich teprve děláte výpočet. Tedy nutno doplnit výpočet i k této entitě.