我如何通过q​​t绘制实时情节?

时间:2015-10-07 14:29:44

标签: qt plot real-time qwt qcustomplot

我是初学者并尝试使用QCustopPlot。 我想画一张实时图表。 我使用这个示例代码。 但我有很多问题:

1)如何将yAxis修复为特定的int号(0到50)

2)我该如何修复xAxis?我的意思是我希望有一张图表,在过去的时间里,情节会移动。 (不是xAxis或yAxis)

我的坏语言。

1 个答案:

答案 0 :(得分:1)

看起来这三个链接应该有所帮助。

void QCPAxis::setRange ( double  lower, double  upper  ) 

http://www.qcustomplot.com/documentation/classQCPAxis.html#a57d6ee9e9009fe88cb19db476ec70bca

void QCPAxis::moveRange ( double  diff) 

http://www.qcustomplot.com/documentation/classQCPAxis.html#a18f3a68f2b691af1fd34b6593c886630

  

QCPAxis课程参考。
  管理一个内部的单轴   QCustomPlot。

http://www.qcustomplot.com/documentation/classQCPAxis.html#details

QWT中也存在非常类似的功能。

QWT中的cpuplot示例显示了滚动实时示例。我没有为示例找到的在线链接,因此您应该在构建之后下载并打开示例。

希望有所帮助。