▲ | lucasfcosta 11 days ago | |||||||||||||||||||||||||||||||
We've tested almost every visualization library under the sun when building Briefer (https://briefer.cloud) and I can confidently say that Apache ECharts is the best. The main issues with other libraries is that they're either: (a) ugly (b) difficult to use (i.e. having to do things imperatively) (c) not flexible enough Apache ECharts solve these 3 problems. It's pretty by default, it allows us to mount/calculate the declarative spec for the graphs in the back-end and then only send the desired spec to the front-end so it can render, and it's also extremely flexible to the point we can support everything that traditional BI tools can do. We've never had to extend the lib to do anything new, everything we need is already there. Glad to see this great piece of work on top of HN. | ||||||||||||||||||||||||||||||||
▲ | noduerme 10 days ago | parent | next [-] | |||||||||||||||||||||||||||||||
I must've looked at this years ago, but for whatever reason, hitched my wagon to Chart.js and haven't really needed anything it couldn't do. And that's for weird one-off custom stuff. For business analytics I just self-host a Metabase server. I wish there were more visualization options with Metabase, but it's such a cinch to set up models and queries. But I don't often get a visualization request that justifies the time to create a custom chart. | ||||||||||||||||||||||||||||||||
▲ | jitbit 8 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
That, plus: * Echarts is about the only dependency in our project that I can upgrade - and be sure it never breaks anything. It is so well-thought in that regard. Upgrading for 3.x to 5.x? Sure! "npm update" and everything just keeps working smoothly. That is so refreshing to see these days. Unbelievable. * It's both SSR-friendly and SPA-friendly. Being mostly vanilla-js, works seamlessly with both react/vue/apline AND with old-school rails/asp.net/php/whatever. Our app is pretty classic SSR (https://www.jitbit.com/) and I can construct my chart's JSON object on a server using some linq-queries and provide that to echarts. * ...OR I can give it a reactive object from vue-based SPA. Dun matter, it just works. * whenever we have to add some workarounds (like, showing hovering labels on a pie chart with a bold percentages or something) - I never have to dig into their sources. Almost anything has already been figured out. Easily googlable and "LLM-able". | ||||||||||||||||||||||||||||||||
▲ | naught0 10 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I recently had the need to create a gradient line chart with each step on the y-axis representing a color which should blend with its neighbors, and echarts was the only option that made sense to me after trying a few. The lack of obvious react integration initially put me off, but like any js lib it was pretty easy to use anyway. Echarts surprised me - it's great. | ||||||||||||||||||||||||||||||||
▲ | zurfer 10 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I can't agree with that. eCharts is good, but https://plotly.com/javascript/ is also super nice and I am actively following https://observablehq.com/plot/ which seems on a path to true greatness. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | zwnow 10 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
How is it better than Chart.js? Im curious as the implementations look extremely similar. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | stuartaxelowen 10 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
Did you compare to vega/vega lite? Curious to hear how they compared! | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | adeptima 10 days ago | parent | prev [-] | |||||||||||||||||||||||||||||||
same experience |