I have an application developed with Qwt 6.1.3 both for Windows 10 and Win CE6.
Everything is ok with Windows 10, but under CE6 I see a strange behavior.

When I plot data with setSamples()
AND
values for xData buffer are greater than 20.000.000 (more or less)
AND
the platform is Win CE6
the plot is shown in a wrong way.

What I see is "as if" the same value from xData buffer is used for 4 points:
Qt Code:
  1. point #1 : x[0], y[0]
  2. point #2 : x[0], y[1]
  3. point #3 : x[0], y[2]
  4. point #4 : x[0], y[3]
  5. point #5 : x[4], y[4]
  6. point #6 : x[4], y[5]
  7. point #7 : x[4], y[6]
  8. point #8 : x[4], y[7]
  9. point #9 : x[8], y[8]
  10. point #10 : x[8], y[9]
  11. ...
To copy to clipboard, switch view to plain text mode 

Has someone seen something similar to this?
Can you guess the reason?
Is there a way to fix?

THanks in advance