Live data from Hacker News

Echarts 2.0

ecomfe.github.io

11–20 of 46 posts

Re: Echarts 2.0

#11
It looks great, however it feels a bit sluggish when hovering over points and doing drag operations in the major browsers, few hundred ms of delay.

Re: Echarts 2.0

#12
It looks great, however it feels a bit sluggish when hovering over points and doing drag operations in the major browsers, few hundred ms of delay.

Re: Echarts 2.0

#15
post #11

It looks great, however it feels a bit sluggish when hovering over points and doing drag operations in the major browsers, few hundred ms of delay.

I believe the hover is throttled to avoid constant animations, so maybe 100ms before it'll draw the tooltip.

Re: Echarts 2.0

#16
post #5

Looks good. I did some evaluation of javascript graphing packages at my last position (migrating away from flash). We ended up paying for one. 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),…

What are the implications of using a patented feature of an open source project?

Re: Echarts 2.0

#17
post #5

Looks good. I did some evaluation of javascript graphing packages at my last position (migrating away from flash). We ended up paying for one. 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),…

The Drag-Recalculate feature is neat, but limited and often results in nonsensical operations.

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?

Post reply on HN