The type of chart I've found most useful is heat map charts, and none of the charting library I've looked at provide that: Here's an example from a Datadog dashboard: https://cloud.githubusercontent.com/assets/1189716/4064956/6... I wish such a chart style was more common, it's so much more useful than a typical line chart of the median/p9x. Unfortunately, I'm not familiar enough with D3 and such to write my own; it…
C3.js: D3-based reusable chart library
21–30 of 81 posts
Re: C3.js: D3-based reusable chart library
#22Out of raw d3.js, nvd3.js, cubism, and rickshaw.js, I've by far had the best experience with nvd3. I was particularly pleased with the way nvd3 supports sliding data off line charts without any extra work. D3.js is an excellent, low level visualization library. But you will find yourself spending days to a couple weeks with custom styling, tooltips, legends, etc. Many high level charting libraries are nice because th…
Re: C3.js: D3-based reusable chart library
#23Re: C3.js: D3-based reusable chart library
#24Re: C3.js: D3-based reusable chart library
#25Re: C3.js: D3-based reusable chart library
#26Re: C3.js: D3-based reusable chart library
#27http://bost.ocks.org/mike/chart/
"To sum up: implement charts as closures with getter-setter methods. Conveniently, this is the same pattern used by D3’s other reusable objects, including scales, layouts, shapes, axes, etc."
You get none of that with C3.js...
Re: C3.js: D3-based reusable chart library
#28I'm looking for a chart library that can plot real-time data, can anyone give any suggestions?
Re: C3.js: D3-based reusable chart library
#29Re: C3.js: D3-based reusable chart library
#30This totally goes against the whole point Mike Bostock (creator of D3) laid out when he talks about creating reusable charts... http://bost.ocks.org/mike/chart/ "To sum up: implement charts as closures with getter-setter methods. Conveniently, this is the same pattern used by D3’s other reusable objects, including scales, layouts, shapes, axes, etc." You get none of that with C3.js...