I have lightning chart and we can find min max using following
const series = chart.addLineSeries()
series.add([
{x: 0, y: 1},
{x: 2, y: 3}
])
series.getXMin() // 0
series.getYMin() // 1
series.getXMax() // 2
series.getYMax() // 3
But is there a way to find mix max from the visible area of chart , for example i have 1000's of values in series , but i show last 100 datapoints using setinterval.. is there a way to get min max of series in that particular interval , or visible area of chart only.