Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I need to read a csv file of around 80000 records and plot specific cell values on a chart and google map
I use CSV Helper, GMAP and Windows Charts to get this task done. But both of the below attempts take very long:
1. reading data into lists and plotting them on map and charts
2. directly trying to plot data renders forms unresponsive after a few seconds
Is there a way I can use async-await to accomplish this task. Or could i use any other collection for faster access of data values by index?
I read that dictionary and hashset don't preserve order so used lists.
Thank you

What I have tried:

using lists as data holders and data sources,
opening the file and plotting as i read
Posted
Updated 18-Nov-18 1:25am

 
Share this answer
 
Use:
Application.Doevents();
to keep your forms responsive.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900