¿Cómo minimizar las etiquetas de xaxis en el gráfico de vértice usando angular?
intializationChartoption(series: number[]):void { this.lineChartOptions = true this.title ={ text: 'linechart' }; this.xaxis= { type: 'datetime', labels: { format: 'MM yyyy' }, }; this.yaxis ={ show: false, showAlways: false } console.log(this.yaxis) this.series = [{ name: 'java', data: series }] console.log(this.series) this.dataLabels ={ enabled: false } this.markers ={ size: 0 } this.chart = { type: "area", stacked: false, height: 250, animations: { enabled: false}, zoom: { type: "x", enabled: false, autoScaleYaxis: true }, toolbar: { show: false }, }; }He dado el tipo de fecha y hora para el eje x pero no funciona y en ese gráfico de líneas, los valores tienen 8000 datos, es decir, provienen de api.
amablemente ayúdame a formatear los datos en el gráfico de líneas