0👍
Take a look at the DataTables API
To get the data from behind the DataTable:
var dtapi = $('#node_containing_datatable').DataTable();
var dtdata = dtapi.data(); // this is a ref to the DT API
var dtdata_array = dtdata.toArray(); // this is a real javascript Array
- Chartjs-How to remove color label on tool tip?
- Chartjs-Async showing data in pieChart from chart.js with typescript
Source:stackexchange.com