I have a fast acquisition to show on an a SciChart and application that should run for long time without consuming all the RAM of the PC.
It is not necessary that I display all points on the graph but just a certain recent time interval therefore I thought to remove points from series when I don't want to display those anymore.
I tried the XyDataSeries.RemoveRange method but when I invoke that I got the following exception:
System.NotSupportedException: 'Remove is not a supported operation on a Fifo Buffer'
What to you suggest to overcome this issue?