This looks great, contains a lot of useful graph types. I like the fact that the charts can be rendered and saved as png images. This is a feature often lacking in a lot of javascript graphing packages. Couldn't see if you can pass in the data via ajax (update after rendered), but I'll look some more.
They claim to have patented one of the features: Our "Drag-Recalculate" feature (patented) https://ecomfe.github.io/echarts/doc/feature-en.html
For example, imagine a simple bar chart of fruits that people have:
Alice: 5 apples, 6 oranges
Bob: 10 apples, 2 oranges
From a quick perusal of the examples, you can drag Alice's apples onto Bob's apple stack. Now Bob has 15 apples? wat? It seems you can even drag Alice's apples onto Bob's oranges. Try it yourself: https://ecomfe.github.io/echarts/doc/example/bar4.html#-en (not sure what those funny characters on the left say, but imagine they say Alice, Bob, Charlie, etc., and the colors are apples, oranges, radishes, etc.)
The behavior also only really works if you're working with sum aggregations. If you're talking about averages or mins, you again get non-sensical combinations.
It's a neat behavior, no doubt, but it's very limited in the cases when it's appropriate. Some of their examples show cases where you can use it non-sensically. Unless the visualization is being produced by an expert who knows when NOT to use shiney features, I fear people will get too excited by the shineyness and create completely inappropriate visualizations. Remember when 3D bars were the shit?
They're a major technological powerhouse, to the point where they offer their own AWS equivalent: http://www.aliyun.com/
Does anyone have any experience to share experimenting with it yet?
When it comes to code, I generally want lots of good examples more than documentation, and there seem to be a reasonable amount of examples (I haven't spent much time trying to make sense of them, yet).
I'm implementing a new charting system for our products, and haven't yet settled on the graphing library (leaning toward Rickshaw, but also considering Metrics Graphics), so I'll give this a shot. It looks really promising, particularly with regard to large data sets, since that's something most graphing libraries fall down on...we current reduce our data set to 1024 or fewer data points before sending to the graph. It might be awesome to have all the data in the client and let them zoom in and out at will.
Doing it back then was somewhat more difficult because Javascript was much slower and the 2D canvas wasn't very accelerated. The approach I took was to use a multiresolution "mipmap" like representation of the data. When animating, lower details were chosen, and the system would bound the max number of points to draw that would achieve a given FPS, and choose the detail level dynamically.
I also offered a commercially supported version at the time, Timescope, other types of charts. https://www.youtube.com/watch?v=RLYNHQVIeNg as well as a version that had a social sharing system with 2-way synchronization "micropresentations" (https://www.youtube.com/watch?v=RLYNHQVIeNg)
Micropresentations allowed you to "script" the chart via a markdown-like/Wiki like text annotation in comments. This means when you were debating or responding to some chart, you could move the chart around, add empheral markers, or other call outs, even video, in order to make your point.
https://www.youtube.com/watch?v=RLYNHQVIeNg
The old code is https://code.google.com/p/gwt-chronoscope/ if anyone is interested.
Along the way, I've seen a plenty of new libraries popping up, but none so far, has matched the quality of Highcharts.
But this seems... just... too good. Gotta give it a try. I wish I was fluent in Chinese. :)
This library is very good and comprehensive, if this library is really in English, I believe it will become a big thing.
If you want to use the standalone single JavaScript file, their complete "all" build is 910k. That seems a little large, but their full package includes map data and lots of chart types you probably won't use.
They do have a tool for making a custom build, but I just got errors when using it. Google translate helped with their documentation, but even when I followed their exact steps it didn't work. This isn't a big deal though, as a Makefile can be thrown together quickly.
I have been working on a site that is heavy on charts, and I decided to switch my pie chart generators to Echarts as a test. I can't pinpoint all the reasons, but I felt like it was a little awkward to use, though it didn't take long to get through that. The documentation was helpful, but not great, and certain parts of it were not available in English.
There were some oddities that confused me at first, though in some ways they make sense. For example, the DOM element that contains the chart must have a CSS height defined, or you get an error. And, the legend seems to require you to provide a redundant array of all the labels that appear in the series. Nothing too bad.
I don't know if it is just my chart, but the default colors came out awful. I'm sure that can be changed, so it isn't too concerning. I noticed a few other rough edges, for example the save image control saves the exact view into the image file, with the controls included as well.
Mobile worked decently in my test, though charts with the legend enabled often resulted in bad overlaps between the legend and the chart.
I tried messing with maps a little, and that was my favorite part. It was very smooth and easy to get going with. I have been looking for a good JavaScript map package, and this seems to have some potential. (Anyone have recommendations on choropleth maps in JS?)
Overall, I'm a little scared to move forward with Echarts. Searching online makes it seem difficult to find answers to many problems in English. Also, difficulty in modifying code quickly when the comments are not in a language I understand is also worrisome. Still, I'd definitely keep my eye on this. Without too much trouble I was able to convert charts to generate with this instead of HighCharts. It is unquestionably the best JavaScript charting library I have seen with this type of license, and I'm sure it will get even better.
I feel like if I moved forward I'd be spending too much time figuring things out, and so despite really liking the idea of open source charts with no licensing fees, I'm going to play it safe an stick with HighCharts. I'd rather pay the fee for a quality product than spend time trying to get all the features I need working. At the same time, I imagine many others out there with different needs may find that Echarts is a very decent option.