-
Notifications
You must be signed in to change notification settings - Fork 60
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
[Bug] Exact same data produces no graph #18
Comments
If you set a fixed _max and _min, this gets fixed. |
I'm waiting for the correction of this bug ... can you correct this ? |
Same issues please find a solution... I just want a flat line if all my data are [0.0]. Thank you |
Hey, this is kinda a major issue :( Any timeline on a fix? Issues is line 300 Can be fixed with a change to |
IIRC one of my repositories (pc-monitor) has a fixed version of this module. If you give me a day or two I can fork this repo and post the new source. |
Thanks I actually saw that after posting. I have made some other changes to so that single value lines also plot to the center of the chart instead of the bottom.
How does your fix handle that case? |
For my project it actually made sense for the line to be at the bottom (null value from API => 0/bottom on graph). Not an issue if you want to start a pull request for the middle line, just maybe include it as a parameter for the graph? Side note: my code was very hacky and poorly written; would you rather look over my repo and then write your own additional code? |
Ah shit. I had a hard drive go bad about 8 months ago, and I seem to have lost the updated repository that contained my fixes; unfortunately, it looks like I also forgot to push my commits to the online repo. I don't remember how I fixed the problem, but here's some pseudo-code to describe what I may have done, based on my comment above:
or, more relevant to your solution:
and then update the graph with these new boundaries. Doesn't seem too complicated, it's pretty much the same solution you said earlier. |
No worries. Looks like we implemented similar solutions and I expect I will be expanding the functionality for my application. Thanks again! |
Hi, I tried this but it didn't work for me. Graph still doesn't plot. Edit: Apologies it does work. Just forgot to import dart:math. Thanks for the help! |
If that data List is all the same value (ie [0.0, 0.0, 0.0], the graph doesn't show up instead of, say, having just a horizontal line.
The text was updated successfully, but these errors were encountered: