Chartjs-Create Vue.js + Chart.js charts using datasets stored outside in a csv file

0👍

If you are using Webpack then you could require them using the file-loader and parse them with a JavaScript library like http://papaparse.com or use the dsv-loader and have it return a JSON object.

All that is left to do is pre-processing on the data to get it into a format Chart.js understands and you should get something close to what you are after.

Leave a comment