基本信息
源码名称:生成csv文件,读取数据绘制波形曲线
源码大小:0.25M
文件格式:.rar
开发语言:C/C++
更新时间:2024-03-26
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
qt程序
qt程序
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
QString str = QStringLiteral("1你好世界 abc"); //推荐
qDebug()<<str;
this->fileName = "D:\\qt_workspace\\wave_csv\\m.csv";
this->fileName22 = "E:\\QT\\qcptest2\\sincos.csv";
//曲线控件1
//设置曲线名称1
QCPTextElement *plotTitle = new QCPTextElement(ui->customplot);
plotTitle->setText(QStringLiteral("单条曲线"));
plotTitle->setFont(QFont("宋体", 16, QFont::Bold));
ui->customplot->plotLayout()->insertRow(0);
ui->customplot->plotLayout()->addElement(0, 0, plotTitle);
ui->customplot->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables);
ui->customplot->addGraph();
ui->customplot->graph(0)->setName("value");
ui->customplot->xAxis->setLabel(QStringLiteral("X轴"));
ui->customplot->yAxis->setLabel(QStringLiteral("Y轴"));
//曲线控件2
//设置曲线名称1
QCPTextElement *plotTitle2 = new QCPTextElement(ui->customplot2);
plotTitle2->setText(QStringLiteral("两条曲线"));
plotTitle2->setFont(QFont("宋体", 16, QFont::Bold));
ui->customplot2->plotLayout()->insertRow(0);
ui->customplot2->plotLayout()->addElement(0, 0, plotTitle2);
ui->customplot2->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables);
ui->customplot2->legend->setVisible(true);
ui->customplot2->legend->setFont(QFont("Helvetica",9));
// add two new graphs and set their look:
ui->customplot2->addGraph();
ui->customplot2->graph(0)->setPen(QPen(Qt::blue)); // line color blue for first graph
ui->customplot2->graph(0)->setName("ps1");
ui->customplot2->addGraph();
ui->customplot2->graph(1)->setPen(QPen(Qt::red)); // line color red for second graph
ui->customplot2->graph(1)->setName("ps2");
ui->customplot2->xAxis->setLabel(QStringLiteral("X轴"));
ui->customplot2->yAxis->setLabel(QStringLiteral("Y轴"));
}