hello world,

recently i make a graphic with line style and after this i have changed the style with this command :
Qt Code:
  1. mycurve->attach( myPlot1 );
  2. mycurve->setStyle( QwtPlotCurve::Dots );
  3. mycurve->setPen( QPen( Qt::blue, 0.1 ) );
To copy to clipboard, switch view to plain text mode 
and to plot:
Qt Code:
  1. QVector<double> x3(0);
  2. QVector<double> y3(0);
  3. x3.reserve(timeNb3);
  4. y3.reserve(timeNb3);
  5. x3 << Points3_OneXtwoY[i][z][0] ;
  6. y3 << Points3_OneXtwoY[i][z][1] ;
  7. }
  8. mycurve->setSamples(x3.data(),y3.data(),x3.size());
  9. myPlot3->replot();
  10. repaint();
To copy to clipboard, switch view to plain text mode 

all worked nice, but now i re-test this code but it don't plot with dots

i have forget something but i don't understand what

can you help me please ?