首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

Qt QChart绘制跟随鼠标的十字线

后端 9.66KB 10 需要积分: 1
立即下载

资源介绍:

Qt QChart绘制跟随鼠标的十字线
#include "zchartview.h" ZChartView::ZChartView(ZChart *chart, QWidget *parent): QChartView (chart,parent) { connect(chart,&ZChart::showPointRectSign,this,&ZChartView::showPointRectSlots); setRubberBand(QChartView::RectangleRubberBand); //设置橡皮筋 setRenderHint(QPainter::Antialiasing); //设置平滑曲线 setStyleSheet("background:transparent"); QPen pen; // 定义一个画笔,设置画笔颜色和宽度 pen.setColor("red"); pen.setWidth(1); x_line = new QGraphicsLineItem(); // 定义一个直线图元 x_line->setLine(QLineF(10, 0, 10, this->height())); x_line->setPen(pen); x_line->setEnabled(false); x_line->setVisible(false); scene()->addItem(x_line); y_line = new QGraphicsLineItem(); // 定义一个直线图元 y_line->setLine(QLineF(10, 0, 10, this->height())); y_line->setPen(pen); y_line->setEnabled(false); y_line->setVisible(false); scene()->addItem(y_line); //添加文字背景框矩形 currentPointTextRect = new QGraphicsRectItem(0 , 0 ,100, 60); currentPointTextRect->setBrush(Qt::yellow); currentPointTextRect->setEnabled(false); currentPointTextRect->setVisible(false); scene()->addItem(currentPointTextRect); currentPointText=new QGraphicsTextItem(currentPointTextRect); currentPointText->setHtml(""); currentPointText->setEnabled(false); scene()->addItem(currentPointText); } ZChartView::~ZChartView() { qDebug()<<" 调用了ZChartView的析构函数 "; } void ZChartView::mouseMoveEvent(QMouseEvent *e) { //打印鼠标位置处的点的坐标值 // qDebug()<<"鼠标移入点位"<chart()->mapToValue(e->pos());//把鼠标坐标值转化为画出的图中的坐标 //以防父类的实例接收不到mouseMoveEvent事件。 QChartView::mouseMoveEvent(e);//调用父类的重写方法。本行程序不同于e->ignore(),ignor是把事件继续向父控件(一般其父控件就是ui界面)传递,而不是向父类传递 x_line->setLine(e->x(),0,e->x(),this->height()); y_line->setLine(0,e->y(),this->width(),e->y()); currentPointTextRect->setPos(e->pos()); currentPointText->setHtml("

 "+QString::number(this->chart()->mapToValue(e->pos()).x())+"

 "+QString::number(this->chart()->mapToValue(e->pos()).y())+"

"); currentPointTextRect->setPos(e->pos()); } void ZChartView::enterEvent(QEvent *event) { x_line->setVisible(true); y_line->setVisible(true); currentPointTextRect->setVisible(true); } void ZChartView::leaveEvent(QEvent *event) { x_line->setVisible(false); y_line->setVisible(false); currentPointTextRect->setVisible(false); } void ZChartView::showPointRectSlots(QPointF point, bool state) { // if(state) // { // currentPointTextRect->setVisible(true); // currentPointText->setHtml("

 "+QString::number(point.x())+"

 "+QString::number(point.y())+"

"); // currentPointTextRect->setPos(this->chart()->mapToPosition(point)); // } // else // { // currentPointTextRect->setVisible(false); // } }

资源文件列表:

QChart_1_Demo.zip 大约有11个文件
  1. QChart_1_Demo/
  2. QChart_1_Demo/main.cpp 183B
  3. QChart_1_Demo/mainwindow.cpp 1008B
  4. QChart_1_Demo/mainwindow.h 437B
  5. QChart_1_Demo/mainwindow.ui 890B
  6. QChart_1_Demo/QChart_1_Demo.pro 1.11KB
  7. QChart_1_Demo/QChart_1_Demo.pro.user 24.37KB
  8. QChart_1_Demo/zchart.cpp 3KB
  9. QChart_1_Demo/zchart.h 1.14KB
  10. QChart_1_Demo/zchartview.cpp 3.2KB
  11. QChart_1_Demo/zchartview.h 870B
0评论
提交 加载更多评论
其他资源 11月16日-责任担当与100%执行训练资料.zip
11月16日-责任担当与100%执行训练资料.zip
11月16日-责任担当与100%执行训练资料.zip
SmartSoftHelp20 ,C# Net9 API代码生成,应用程序优化,数据库高并发优化,服务器性能优化,微软最新架构!
SmartSoftHelp 20 极简,极速,极致 提高程序员内涵,改变编程习惯,智慧与效率的化身! 1.软件性能优化 2.web应用优化(json,sql ,web前端html,css,js压缩格式化代码,web客户端性能提升) 3.数据库性能优化,数据库参数设置,查询,数据库连接字符串优化,SQL耗时优化,SQL格式化,SQL美化 4.服务器高并发性能优化( linux ,windows 服务器性能优化提升) 5.C#前端后端代码自动生成(netframework ,netcore) 6.服务器安全(端口号扫描,文件权限,防火墙,服务) 7.web应用程序5级缓存优化 8.程序版权著作保护(图片,程序,软件应用,公司版权保护,著作权,开发作者信息设置) 9.代码生成开源,自定义灵活生成 10.高复用功能代码DLL公共类库(常见功能经典收藏) 11.Net 8 API 特别版,SwaggerUI API,前端,后端,数据库操作、全部异步实现,最好的架构,最优的代码,最快的实现,UI增删改查,控制器,数据库经典三层架构,全部一键生成。 12.微软最新架构Net9
1234523767123
1234523767123
02617-main.zip
02617-main.zip
Qt QChart+Eigen库 绘制线性回归图表,源代码和库都在压缩包里
Qt QChart+Eigen库 绘制线性回归图表,源代码和库都在压缩包里
Python实现给文件批量添加前缀.zip
内含源代码,适用零基础职场办公人员,支持二次开发
根据表格内容来重命名表格文件名V1.0.0.zip
内含直接exe软件和py源代码,用户可以简单使用,也可以二次开发
嵌入式单片机开发 STM32HAL库 NRF24L01模块收发数据
嵌入式单片机开发 STM32HAL库 NRF24L01模块收发数据