I want to add a chart to my website like that :
https://apexcharts.com/javascript-chart-demos/area-charts/spline/
I added the npm pack of these charts but I didn’t understand how can I use this chart on my website. Do you guys anyone know how to use this chart with their npm pack?
import ApexCharts from 'apexcharts'
var options = {
series: [{
name: 'series1',
data: [31, 40, 28, 51, 42, 109, 100]
}, {
name: 'series2',
data: [11, 32, 45, 32, 34, 52, 41]
}],
chart: {
height: 350,
type: 'area'
},
dataLabels: {
enabled: false
},
stroke: {
curve: 'smooth'
},
xaxis: {
type: 'datetime',
categories: ["2018-09-19T00:00:00.000Z", "2018-09-19T01:30:00.000Z", "2018-09-19T02:30:00.000Z", "2018-09-19T03:30:00.000Z", "2018-09-19T04:30:00.000Z", "2018-09-19T05:30:00.000Z", "2018-09-19T06:30:00.000Z"]
},
tooltip: {
x: {
format: 'dd/MM/yy HH:mm'
},
},
};
var chart = new ApexCharts(document.querySelector("#chart"), options);
chart.render();
When I place this code as a .js file at the backend of my website it says .document is not defined
?
How can I solve this problem and use this chart on my website?