What does the graph look like? Is it composed only from points? If so, I would advise to make each point a separate item or cluster points and use a smaller (but still larger than 1) items to display the points. The speed of graphics view comes also from the fact that it doesn't draw items that are not visible but as you have only one item, it has to draw 100k points all the time and there is no benefit in using graphics view at all. You might have used plan QWidget+QPainter combination with better results in such case.
Bookmarks