I am using react-apexcharts .I have daily financial data for one year but I want show alternate month name on x axis.
xaxis: {
labels: {
show: true,
formatter: function (val: any) {
return dayjs(val).format("MMM");
}
}
}
This code shows all month on x axis.
How can I display alternate month name on x axis on the chart?
The image has given below: