xaxis: { type: this.domain_type, categories: this.domain, labels: { show: !this.isMobileOnly, style: { colors: this.range_color, }, formatter: (val) =>{ if(new Date(val).getMonth() === new Date().getMonth()) { // only those dates that includes May in their name // every label that I want is being shown except the May 2022 Label // May 2022 does get returned here but doesn't get shown as a label on x-axis return moment(val).format("MMM, YYYY"); } }, tickPlacement: 'on', axisBorder: { show: false, }, axisTicks: { show: this.range_ticks, }, tooltip: { enabled: this.range_tooltip, }, tickAmount: undefined, offsetX: 28, }, Quiero mostrar todas las etiquetas en el eje x en mi componente de gráfico de vértice. En mi método de formatter , verifico si los datos (que están en forma de fechas) incluyen el nombre del mes actual independientemente del año y, si es así, debe representarse como una etiqueta en el eje x. Todas las etiquetas se muestran en el eje x excepto la última que es May 2022 . ¿Por qué no se muestra la última etiqueta en el gráfico?