hey, you have already plotted that curve, so now Symbol by the click of mouse, for that use---->
initialize this
int i=0;
QwtPlotMarker *mark[1000];
int i=0;
QPoint pt;
To copy to clipboard, switch view to plain text mode
mark[i]->setSymbol(your_symbol);
mark[i]->setValue(pt.x(),pt.y());
mark[i]->attach(your_plot);
i++;
}
void mousePressEvent(QMouseEvent *event){
mark[i]=new QwtPlotMarker;
mark[i]->setSymbol(your_symbol);
mark[i]->setValue(pt.x(),pt.y());
mark[i]->attach(your_plot);
i++;
}
To copy to clipboard, switch view to plain text mode
Now wherever you click on the curve it will plot it.
Bookmarks