Massive data processing using JavaScript chart library

I'm interested in the experience of using JS diagrams that process huge amounts of data (for example, tens of thousands of data points).

Any performance issues? Browser memory usage? Any other questions? Anyone recommend a specific JavaScript chart library for this?

thanks

+3
source share
3 answers

Javascript is processed linearly, so the more data is loaded, the longer it takes. I would suggest the type of load on demand, showing only part of the data at any given time.

Otherwise, I would suggest switching to Flash / Silverlight (if you are developing .NET)

Edit

Visifire Silverlight. http://visifire.com/.

, MS MS (http://code.msdn.microsoft.com/mschart), .NET FrameWork 3.5 SP1, WinForms/ASP.NET( , ASP.NET AJAX ).

FusionCharts Flash: http://www.fusioncharts.com/free/

+1

Google ; , .

+1

Source: https://habr.com/ru/post/1714030/


All Articles