Hello every one,
First sorry for my bad english but i'll try to be explicit... 
I developed an application that creates a graph composed of curves.
I have a series of points that I associate with curves and I read them through
curve->setStyle(QwtPlotCurve::Lines);
To copy to clipboard, switch view to plain text mode
I'm using this code
sym.setPen(couleurCourbe(i));
sym.setSize(5);
curve->setTitle(liste.at(i));
curve->setSymbol(sym);
curve->setPen(couleurCourbe(i));
QwtPlotCurve *curve;
QwtSymbol sym;
sym.setStyle(QwtSymbol::Cross);
sym.setPen(couleurCourbe(i));
sym.setSize(5);
curve = new QwtPlotCurve();
curve->setTitle(liste.at(i));
curve->setSymbol(sym);
curve->setPen(couleurCourbe(i));
curve->setStyle(QwtPlotCurve::Lines);
curve->setRenderHint(QwtPlotItem::RenderAntialiased);
To copy to clipboard, switch view to plain text mode
All pooints are connecting and the last point is connect with the first too.... (as a polygon).
Someone has a trick to disconnect firts and last point ??? 
Thanks a lot.
Bookmarks