Hey ,
I have data in elasticsearch with indexing at date.
For example - I have data like this ->
12 oct 2017 -> value =30
13 oct 2017-> value =20
14 oct 2017 -> value =60
I can create dashboard with date as x-axis and corresponding value on y-axis.
But now i want aggregation of value till the date .
So i want
12 oct 2017 - >value=30
13 oct ->value .= 30+20=50
14 oct ->value = 30+20+60=110
How can i do that? I donot want to change the data in elasticsearch. Just need a way to visualize data in this way.
Thanks