QT QCustomPlot父(QT QCustomPlot parent)

2019-10-29 01:13发布

我有一个QCustomPlot在我的UI部件如下:

ui->plot_widget

同时我还有一个QCustomPlot在我的cpp文件对象如下:

QCustomPlot *plot=new QCustomPlot();

我想补充plot数据到ui->plot_widget数据。 如果我使用的ui->plot_widget=plot的控件父ui->plot_widget将被销毁,我的UI不会更新ui->plot_widget

如何添加plot数据到ui->plot_widget数据?

文章来源: QT QCustomPlot parent