Hi @reyesfed,
To my understanding, when the ‘chart.scrollablePlotArea.minWidth’ value exceeds the visual’s actual width, the highchart will automatically insert an inner scroll container which is causing this flickering behavior.
To fix, we can turn off automatic resizing and let highcharts manage the scrolling on it’s own. I tested this out and was able to receive proper outcome:
"chart": {
"type": "spline",
"reflow": false,
"spacingBottom": 18,
"scrollablePlotArea": { "minWidth": 2400, // important** adjust this value until it matches your visual's outer width
"scrollPositionX": 0 }
}
