Should multiple series work with geomLine? i.e. plot multiple lines #29
-
|
Using the code from https://docs.cristalyse.com/charts/line-charts under Multi-Series Line Chart in a new Flutter app, with In my more complex use in a complete application using multiple series I also do not see multiple lines for Should I be expecting this scenario to work, or is it a forthcoming feature? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hey👋 @colin-young. Thanks for reporting this. I just fixed the bug in the latest release v1.3.1. I really hope it resolves it for you. You can also preview the fixed version on example.cristalyse.com under Multi Label Line Chart Demo. If the fix I just pushed still doesn't help, please let me know also I would appreciate if you share a reproducible example of your code. This should fix both issues you mentioned, you should now see two properly colored lines that connect the right points, plus the geomPoint should work fine alongside geomLine. Sorry about the frustration with this one - multi-series line charts are pretty fundamental, so this was definitely a priority to get sorted out. Let me know if you run into any other issues! Happy to help 🙂 |
Beta Was this translation helpful? Give feedback.
-
|
Thanks! That fixed the issue. I think the problem I had with the reproduction and points was unrelated and caused by using size from the sample data as the size of the points, and running into a type conversion exception (int to double). No worries on the frustration. I wanted to make sure it was supposed to be working before spending too much time trying to solve it, and having discovered that the On another note, it took all of 10 minutes to replace an old integration of community_charts_flutter with a working Cristalyse implementation, and way, way less code. |
Beta Was this translation helpful? Give feedback.
Hey👋 @colin-young. Thanks for reporting this.
I just fixed the bug in the latest release v1.3.1. I really hope it resolves it for you.
You can also preview the fixed version on example.cristalyse.com under Multi Label Line Chart Demo.
If the fix I just pushed still doesn't help, please let me know also I would appreciate if you share a reproducible example of your code.
This should fix both issues you mentioned, you should now see two properly colored lines that connect the right points, plus the geomPoint should work fine alongside geomLine.
Sorry about the frustration with this one - multi-series line charts are pretty fundamental, so this was definitely a priority to get sorted out.
Le…