I'm facing an issue with my x-axis values as I'm using real-time amcharts. The x-axis values change every 3 seconds, but instead of smoothly moving, they abruptly change to the next value. I would like it to slide smoothly like this example: https://codepen.io/team/amcharts/pen/be2767157df98e1f26caf7f50c524a9a
Here is how my chart currently looks like: https://codepen.io/team/amcharts/pen/e22f40f4db023433b142f0a01d165adb
The problem is that when the x-axis value is (Aug 3), instead of smoothly transitioning to the next value to the left, it abruptly changes. This reflects the issue I'm encountering.
Below is a snippet of my code for reference:
methods:{
initChart(dataProvieded){
// Insert your chart initialization code here
// Data and configuration options are included in this section
},
Any help or guidance in resolving this issue would be highly appreciated. Thank you.