This website eats way too much cpu power when active in a browser tab. I guess the reason for this are the animations going on, this is not usable for production. Please consider using velocity.js, thanks!
Chart.js 2.0 Released
61–70 of 81 posts
Re: Chart.js 2.0 Released
#62I am using metrichgraphics[1], it's based on D3.js I was looking at charts.js but it didn't had enough options. [1] http://metricsgraphicsjs.org/examples.htm
I haven't used this but found this chart lib based on D3.js called C3.js. http://c3js.org/
Re: Chart.js 2.0 Released
#63Earlier quoted context omitted.
1. License: As other commenters have said, it's fully open source and free to use for commercial projects. 2. Canvas vs SVG: For my use case, using SVG for lots of data points really slowed down the DOM. Canvas doesn't have that limitation and is easier to export to images if necessary. SVG is nice because you can use CSS to style things.
FWIW, and I literally JUST learned this from another link in this thread: Highcharts now has boost.js [0], which lets you use Canvas, for when you need the performance boost. [0] http://www.highcharts.com/articles/2-news/175-highcharts-per...
Re: Chart.js 2.0 Released
#64Re: Chart.js 2.0 Released
#65Earlier quoted context omitted.
How quick is this? I'll give it a go with our company's dataset. Unfortunately none of the javascript charting libraries could handle it so far. I am not even sure it is possible to do what I want using JS and current technology.
It's very fast even with thousands of data points. We were combining it with github.com/crossfilter/crossfilter to do client side filtering and aggregating on hundreds of thousands of rows of data.
Re: Chart.js 2.0 Released
#66Where are the demos!
There are mini demos on the documentation page: http://www.chartjs.org/docs/ but it would be nice to see someone share something a bit more complex.
Re: Chart.js 2.0 Released
#67Earlier quoted context omitted.
It's very fast even with thousands of data points. We were combining it with github.com/crossfilter/crossfilter to do client side filtering and aggregating on hundreds of thousands of rows of data.
Hyperlink for the lazy https://github.com/crossfilter/crossfilter
Re: Chart.js 2.0 Released
#68I filed a Github issue here: https://github.com/chartjs/Chart.js/issues/2369
screenshot: http://i.imgur.com/so0iHU3.png
Re: Chart.js 2.0 Released
#69Earlier quoted context omitted.
How quick is this? I'll give it a go with our company's dataset. Unfortunately none of the javascript charting libraries could handle it so far. I am not even sure it is possible to do what I want using JS and current technology.
It's very fast even with thousands of data points. We were combining it with github.com/crossfilter/crossfilter to do client side filtering and aggregating on hundreds of thousands of rows of data.
Re: Chart.js 2.0 Released
#70Earlier quoted context omitted.
It's very fast even with thousands of data points. We were combining it with github.com/crossfilter/crossfilter to do client side filtering and aggregating on hundreds of thousands of rows of data.
Would love to see an example combining the two!