I encountered this issue on a recent project where dealing with time axes in AmCharts proved tricky. After spending some time debugging, I learned that using a plain string for minValue, such as ‘00:00’, can lead to unexpected behaviors because the chart expects comparable date objects instead of strings. Changing the configuration to convert the time string into a proper Date instance, or adjusting the input data to date objects, proved to be a more robust approach. In this case, ensuring that the date format for both your data and the axis aligns correctly is critical for resolving inconsistencies.