apexcharts timestamp line chart code example
Example: apexcharts timestamp line chart
const options = {
...,
xaxis: {
type: 'datetime'
}
}
const series = {
name: 'some data',
data: [
[timestamp, valueForYAxis],
[timestamp, valueForYAxis],
...
]
}