:11.655MB : :1 :2022-09-28 13:51:17
QCustomPlot动态绘图如果开发者对于本文件有需要的可以参考。QCustomPlot动态绘图,解决CPU占用内存高问题
LXTracer::LXTracer(QCustomPlot *_plot, TracerType _type, QObject *parent)
: QObject(parent),
m_plot(_plot),
m_type(_type)
{
m_visible = true;
m_tracer = Q_NULLPTR;// 跟踪的点
m_label = Q_NULLPTR;// 显示的数值
m_arrow = Q_NULLPTR;// 箭头
if (m_plot)
{
QColor clrDefault(Qt::red);
QBrush brushDefault(Qt::NoBrush);
QPen penDefault(clrDefault);
// penDefault.setBrush(brushDefault);
10-07QCustomPlot性能测试
09-29qcustomplot 应用实例