Answers for "apexcharts timestamp line chart"

1

apexcharts timestamp line chart

const options = {
	...,
  	xaxis: {
      type: 'datetime'
    }
}

const series = {
	name: 'some data',
  	data: [
    	[timestamp, valueForYAxis],
    	[timestamp, valueForYAxis],
      	...
    ]
}
Posted by: Guest on May-26-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language