First of all, you can hide the x-axis labels (provided that you want to do this) by doing the following method:
your_graph.getGridLabelRenderer().setHorizontalLabelsVisible( false );
As for the delay part, I also experienced this on charts with a large set of points. The idea of ββa circular buffer seems good if you don't need to visualize the entire history of your data. I would associate it with
your_series.resetData( dataPoint[] my_data_points );
to provide live schedule updates. The addData function will add data to the circular buffer, which you will pass to the method above to update the chart in a timely manner.
I am afraid that this can be quite resource-intensive if you want to update the chart at a high speed and with a lot of points, but at least you can control these two parameters.
source share