-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support needed to create a dashboard. #28
Comments
Can you try
? This gives a valid number for every data point (months without matching transactions), and if the series are stacked, I think it shouldn't disrupt the chart. |
Ah! Sorry, I didn't realize the values are a cumulative sum. In that case, your original code was correct. |
Hi all, just stumbled on this issue, which inspired me to make my own stacked area graph. I actually found that echarts is not the "culprit" in this case. The issue seems to come from the fact that months without transactions do not generate an entry in the BQL query result, hence data is empty for echarts (and spiky thingys appear). Unfortunately, this directly comes from Beancount way of reporting balances, and, according to various posts from the author, is the expected result, thus this means the missing month entries would need to be filled (with last available balance ?) by the dashboard generator. Many thanks @andreasgerstmayr for sharing your dashboards on github, this helped me a lot ! |
Hi all. Just came across this, and I've had similar issue (if I understood correctly what's reported here) as well. Obviously it's just a workaround, would be nice to fix this the right way eventually. Also even more important task for me would be to make a dashboard that reports on a daily or weekly basis and I figured that I would likely face this issue again while doing so. |
Hi !
I have discovered fava-dashboard a couple of weeks ago, and I love it. Thank you for this great addition to fava and beancount.
I am currently creating my own dashboards panels, and i have been able to reach pretty much all my expectations except for my last graph:
I want to create a stacked area graph showing the variation of my various assets over time.
My issue is that for some of the assets, i have some months without any returned balance as there is no transaction that month.
Trying to stack curve with missing points tends to brake the graph.
Is there a good way to fill the gaps in the dataset in order to get a proper result ?
Here is my (broken) graph and the corresponding code.
image
If this is not the right place to get support for your tool, let me know, and i will repost my message accordingly.
The text was updated successfully, but these errors were encountered: