Hiya Narcis
I guess I got the answer I was looking for; that you have not experienced the vanishing-points-when-zooming problem before. So, as I am unable to make a simple program that reproduce the issue, I assume the error is in some way related to my program
For the performance-issue you can just run the TeeChartDemo and hold the zoom-button clicked while moving the square around, monitoring the CPU usage. It's no big deal but could be of some interest to you. Also, when looking at the Demo, you can observe the "Neatest Point"-app: If you drag the points out of the chart (either south or east in this case, but also west and north can happen), the marks are still visible though the points are outside the view

No biggie but might also be of interest...
Anyways; I have two hopefully small, practical questions:
I have for a long time now been trying to display a single Mark (with arbitrary text) after selecting a Point in one out of several plotted Series, and would really appreciate some hints. My challenges are:
I am not able to distinguish which Series I click, if there are several Series in a chart. Is there any method similar to the
Point = TChart.getChart().getSeries(someSeries).clicked(MouseEvent.getPoint());,
like
Series = TChart.getChart().clicked(MouseEvent.getPoint()); ? Or do I need to create different listeners on all Series I am creating in order to distinguish when clicking?
Second, after obtaining the wanted series and the point number, I want to display the Mark of that Point. I try to use
MarksItem mark = aSelectedSeries.getMarks().getItems().get(pickedPointNumber);
mark.setText("Something"+someting);
mark.setVisible(true);
but nothing pops up in my chart. Is this procedure correct?
Thanks alot in advance
Best regards!