qcustomplot添加图例_qchart显示点数据

qcustomplot添加图例_qchart显示点数据【实例简介】QCustomPlot动态绘图,解决CPU占用内存高问题【实例截图】Qt动态实时绘图【核心代码】LXTracer::LXTracer(QCustomPlot*_plot,TracerType_type,QObject*parent):QObject(parent),m_plot(_plot),m_type(_type){m_visible=true;m_tracer=…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

【实例简介】QCustomPlot动态绘图,解决CPU占用内存高问题

【实例截图】Qt动态实时绘图

91b8a2c89eca3d03cb2020ec029df597.png

【核心代码】

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);

penDefault.setWidthF(0.5);

m_tracer = new QCPItemTracer(m_plot);

m_tracer->setStyle(QCPItemTracer::tsCircle);

m_tracer->setPen(penDefault);

m_tracer->setBrush(brushDefault);

m_label = new QCPItemText(m_plot);

m_label->setLayer(“overlay”);

m_label->setClipToAxisRect(false);

m_label->setPadding(QMargins(5, 5, 5, 5));

m_label->setBrush(brushDefault);

m_label->setPen(penDefault);

m_label->position->setParentAnchor(m_tracer->position);

// m_label->setFont(QFont(“宋体”, 8));

m_label->setFont(QFont(“Arial”, 8));

m_label->setColor(clrDefault);

m_label->setText(“”);

m_arrow = new QCPItemLine(m_plot);

QPen arrowPen(clrDefault, 1);

m_arrow->setPen(penDefault);

m_arrow->setLayer(“overlay”);

m_arrow->setClipToAxisRect(false);

m_arrow->setHead(QCPLineEnding::esSpikeArrow);//设置头部为箭头形状

switch (m_type)

{

case XAxisTracer:

{

m_tracer->position->setTypeX(QCPItemPosition::ptPlotCoords);

m_tracer->position->setTypeY(QCPItemPosition::ptAxisRectRatio);

m_tracer->setSize(7);

m_label->setPositionAlignment(Qt::AlignTop | Qt::AlignHCenter);

m_arrow->end->setParentAnchor(m_tracer->position);

m_arrow->start->setParentAnchor(m_arrow->end);

m_arrow->start->setCoords(0, 20);//偏移量

break;

}

case YAxisTracer:

{

m_tracer->position->setTypeX(QCPItemPosition::ptAxisRectRatio);

m_tracer->position->setTypeY(QCPItemPosition::ptPlotCoords);

m_tracer->setSize(7);

m_label->setPositionAlignment(Qt::AlignRight | Qt::AlignHCenter);

m_arrow->end->setParentAnchor(m_tracer->position);

m_arrow->start->setParentAnchor(m_label->position);

m_arrow->start->setCoords(-20, 0);//偏移量

break;

}

case DataTracer:

{

m_tracer->position->setTypeX(QCPItemPosition::ptPlotCoords);

m_tracer->position->setTypeY(QCPItemPosition::ptPlotCoords);

m_tracer->setSize(5);

m_label->setPositionAlignment(Qt::AlignLeft | Qt::AlignVCenter);

m_arrow->end->setParentAnchor(m_tracer->position);

m_arrow->start->setParentAnchor(m_arrow->end);

m_arrow->start->setCoords(20, 0);

break;

}

default:

break;

}

setVisible(false);

}

}

LXTracer::~LXTracer()

{

if(m_plot)

{

if (m_tracer)

{

m_plot->removeItem(m_tracer);

}

if (m_label)

{

m_plot->removeItem(m_label);

}

if (m_arrow)

{

m_plot->removeItem(m_arrow);

}

}

}

void LXTracer::setPen(const QPen &pen)

{

if(m_tracer)

{

m_tracer->setPen(pen);

}

if(m_arrow)

{

m_arrow->setPen(pen);

}

}

void LXTracer::setBrush(const QBrush &brush)

{

if(m_tracer)

{

m_tracer->setBrush(brush);

}

}

void LXTracer::setLabelPen(const QPen &pen)

{

if(m_label)

{

m_label->setPen(pen);

m_label->setBrush(Qt::NoBrush);

m_label->setColor(pen.color());

}

}

void LXTracer::setText(const QString &text)

{

if(m_label)

{

m_label->setText(text);

}

}

void LXTracer::setVisible(bool vis)

{

m_visible = vis;

if(m_tracer)

{

m_tracer->setVisible(m_visible);

}

if(m_label)

{

m_label->setVisible(m_visible);

}

if(m_arrow)

{

m_arrow->setVisible(m_visible);

}

}

void LXTracer::updatePosition(double xValue, double yValue)

{

if (!m_visible)

{

setVisible(true);

m_visible = true;

}

if (yValue > m_plot->yAxis->range().upper)

{

yValue = m_plot->yAxis->range().upper;

}

switch (m_type)

{

case XAxisTracer:

{

m_tracer->position->setCoords(xValue, 1);

m_label->position->setCoords(0, 15);

m_arrow->start->setCoords(0, 15);

m_arrow->end->setCoords(0, 0);

setText(QString::number(xValue));

break;

}

case YAxisTracer:

{

m_tracer->position->setCoords(0, yValue);

m_label->position->setCoords(-20, 0);

// m_arrow->start->setCoords(20, 0);

// m_arrow->end->setCoords(0, 0);

setText(QString::number(yValue));

break;

}

case DataTracer:

{

m_tracer->position->setCoords(xValue, yValue);

m_label->position->setCoords(20, 0);

setText(QString(“x:%1,y:%2”).arg(xValue).arg(yValue));

break;

}

default:

break;

}

}

LXTraceLine::LXTraceLine(QCustomPlot *_plot, LineType _type, QObject *parent)

: QObject(parent),

m_type(_type),

m_plot(_plot)

{

m_lineV = Q_NULLPTR;

m_lineH = Q_NULLPTR;

initLine();

}

LXTraceLine::~LXTraceLine()

{

if(m_plot)

{

if (m_lineV)

{

m_plot->removeItem(m_lineV);

}

if (m_lineH)

{

m_plot->removeItem(m_lineH);

}

}

}

void LXTraceLine::initLine()

{

if(m_plot)

{

QPen linesPen(Qt::red, 1, Qt::SolidLine);

if(VerticalLine == m_type || Both == m_type)

{

m_lineV = new QCPItemStraightLine(m_plot);//垂直线

m_lineV->setLayer(“overlay”);

m_lineV->setPen(linesPen);

m_lineV->setClipToAxisRect(true);

m_lineV->point1->setCoords(0, 0);

m_lineV->point2->setCoords(0, 0);

}

if(HorizonLine == m_type || Both == m_type)

{

m_lineH = new QCPItemStraightLine(m_plot);//水平线

m_lineH->setLayer(“overlay”);

m_lineH->setPen(linesPen);

m_lineH->setClipToAxisRect(true);

m_lineH->point1->setCoords(0, 0);

m_lineH->point2->setCoords(0, 0);

}

}

}

void LXTraceLine::updatePosition(double xValue, double yValue)

{

if(VerticalLine == m_type || Both == m_type)

{

if(m_lineV)

{

m_lineV->point1->setCoords(xValue, m_plot->yAxis->range().lower);

m_lineV->point2->setCoords(xValue, m_plot->yAxis->range().upper);

}

}

if(HorizonLine == m_type || Both == m_type)

{

if(m_lineH)

{

m_lineH->point1->setCoords(m_plot->xAxis->range().lower, yValue);

m_lineH->point2->setCoords(m_plot->xAxis->range().upper, yValue);

}

}

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/184185.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • contemptible_bank conflict

    contemptible_bank conflict本作品采用知识共享署名-非商业性使用-相同方式共享4.0国际许可协议进行许可。本作品(李兆龙博文,由李兆龙创作),由李兆龙确认,转载请注明版权。

    2022年9月21日
    0
  • 无刷直流电动机驱动控制系统_直流无刷电机驱动电路

    无刷直流电动机驱动控制系统_直流无刷电机驱动电路无刷直流电动机利用电子开关线路和位置传感器来代替有刷直流电机电刷和换向器,使其同时具有直流电动机和交流电动机的优良特性。无刷直流电机(驱动系统)主要由电动机本体、位置传感器、电子开关线路三部分组成。

    2022年10月21日
    0
  • C语言再学习 — 段错误(核心已转储)

    参看:Linux下的段错误产生的原因及调试方法参看:Linux环境下段错误的产生原因及调试方法小结参看:维基百科–Segmentationfault参看:LINUX内核段错误调试详细指南精品培训PPT讲义一、什么是段错误?一旦一个程序发生了越界访问,cpu就会产生相应的保护,于是segmentationfault就出现了,通过上面的解释,段错误应该就是访问了不可访问的内存,这个内存区要

    2022年4月11日
    63
  • 孙鑫XML视频教程中关于DOM例子的一点错误

    孙鑫XML视频教程中关于DOM例子的一点错误源代码如下: import java.io.File;import java.io.IOException;import javax.xml.parsers.DocumentBuilder;import javax.xml.parsers.DocumentBuilderFactory;import javax.xml.parsers.ParserConfigurationExcepti

    2022年5月13日
    28
  • app store connect

    app store connect1、用开发者账号登录,新建App,其中套装ID和SKU使用的应用的BundleID。2、添加要求的尺寸的应用截图或预览,填写宣传文本、描述、关键词、技术支持网址、营销网址3、填写App的信息、App审核信息(包括登录的账号密码,App审核团队有疑问或需要额外信息时会与其联络的联系人信息)…

    2022年10月20日
    0
  • 2-visio使用与卸载「建议收藏」

    2-visio使用与卸载「建议收藏」下载一个工具WindowsInstallerCleanUpUtility_v4.71.1015.0,如果没有可以去这里下载:https://download.csdn.net/download/qq_39451578/10950019(没积分的小伙伴可以私信或者下方留言)然后找到相关信息:…

    2022年8月13日
    0

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号