Page 1 of 1

graphs -> year by Month

Posted: Thursday 13 August 2020 10:00
by NilsNijenhuis
Hello,

Ik like to display a graph of the solarpanels and groupBy month?
but instead of that it only displays the first day of the month instead of the kwh of the whole month.
does someone know what i am doing wrong?

I use the code:

"afgelopen jaar": {
range: 'year',
groupBy: 'month',
data: {
Solar: 'd.v_25',
}
}

Re: graphs -> year by Month

Posted: Thursday 13 August 2020 10:38
by Lokonli
add the following block parameter:

Code: Select all

   aggregate: 'sum'

Re: graphs -> year by Month

Posted: Thursday 13 August 2020 11:46
by NilsNijenhuis
superb, it work thanks!!!