Integrating c3,js & ApexCharts into a Django (Tabler Dashboard Application)

Greetings,
I would like to learn more about how to integrate c3.js & apex charts in my Django Application. I am using a library including a Dashboard template an would like to add CSV data to display as well as integrate a regression model done in JS. I have found scripts online that helped to automatically load the CSV file data to the project and know that I need to test the database to determine whether the data is structured in the way I need it to be. I just do not have a good understanding of how to integrate using JS scripts in this case and find myself manually entering data into the JS script on index.html page template to have the data displayed. I do want to have regression results displaying in charts too and am not sure how to get the results (when calculated) into a script that reads them.

I’d appreciate some assistance. Thank you !

Try console.log(c3 )or (d3) and checking the inspector to see if the libraries are in there. If all else fails do this with a tutorial which is how used the above info, just put that in your js.
A word of advice with d3 might be to complete the Data Visualization module here on FCC.

Hi,
Thank you I will go and try this and revet back to you.

Andrew