Con amcharts4, hago algo como esto para la información sobre herramientas de cambio y el texto de la etiqueta para el eje x con CategoryAxis...
// change tooltip this.xAxis.adapter.add("getTooltipText", (text, target) => { const value = text ? parseInt(text) : -1; return this.getAxisToolTipText(value); }); // change label this.xAxis.renderer.labels.template.adapter.add("text", (text, target) => { const value = target.dataItem && target.dataItem.category ? parseInt(target.dataItem.category) : -1; return this.getAxisText(value, text); });Pero ahora, ¿cómo hacer lo mismo para Amcharts5 con DateAxis?
Agradeceré cualquier sugerencia.