I have a Firestore collection: 'transactions' that contains:
amount (double)
status (string)
date (datetime)
Given: There are multiple transactions per months, some of them have status pending, some completed.
When: I open my app homepage
Then: I see a line chart, where I see last 6 months on the X axis and total amount (sum) of completed transactions
And: I am able to hover on the pointers for each month to see the value
I want to use a standard chart widget and achieve the following:
Dear community, can someone help with comprehensive tip on how to achieve this?