I am displaying a large amount of data on a graph, comprising thousands of points.
I display discrete sections of the graph by modifying the X-axis scale as follows :-

setAxisScale(QwtPlot::xBottom, selectedRegion, selectedRegion+singleIncrement);

By default, the X-axis displays the X-value of the selected range, e.g. 10500 to 10600.

Is it possible to modify the X-axis display to ALWAYS show the range 0 to 100, regardless of the selected area?

Thanks.