-
Notifications
You must be signed in to change notification settings - Fork 602
Description
Hi.
First of all, we are using Dygraphs since 2016 in our product.
It is great library, has everything we need and is super fast.
At the beginning we used probably 10% of its capabilities but whenever we wanted to add some feature in our app, it was either built in in Dygraphs or was super easy to extends because Dygraphs has a lot of places when you can "jump in" with your own code.
However currently we are considering refactor of our charts code base and I was wondering if there is something on the open source market that we could replace Dygraphs with. The reason for this is that Dygraphs is not actively maintained, written in old style, without support for static typing etc. Don't understand me wrong. It is not bad. It just requires a lot of work around it to fit it into your product.
Do you maybe know library that:
- is actively maintained
- has good quality docs
- render/re-render a lot of data points (lets say 50-75K) fast, AFAIK only canvas based libs can do it, but maybe I am wrong
- has easy way to integrate with your own interaction model, tooltips, legends etc (it is super easy with Dygraphs!)
- is customizable when comes to rendering points, lines etc (colors, shapes, thickness etc)
- handles real numbers and Dates for X-axis or at least gives possibility to provide custom formatters for X and Ys axes.
- supports error bars
- has good quality TypeScript definitions
- has good quality wrapper for React (not must have)
I hope this question doesn't offend anyone in this community.
I always found you guys very helpful and open minded.