1) when i move the plot by mouse, it could be moved far away from any needed area. How can i tell Qwt the EXACT plotting zone?
QwtPlot::setAxisScale().
2) when the plot is being dragged and not dropped,only the part, the previously visible part is drawn. How can it be fixed?
For simple scenarios replotting might be fast enough for mouse movements, but for many others its way to expensive. That's why the panner grabs the content into a pixmap at the beginning of the pan operation and only replots once at the end.

If your replots are fast you can implement your own type of panning ( translating mouse movements into axis changes ), but you can't tell QwtPlotPanner to do it for you.

Uwe