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?