1 Star 0 Fork 2

沉默至今/GoSlowDetection

forked from jiangtao/GoSlowDetection 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
detaillines.h 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiangtao 提交于 2022-03-03 17:36 . 优化坐标显示类
#ifndef DETAILLINES_H
#define DETAILLINES_H
#include <QWidget>
#include <QMap>
#include <QtCharts>
#include <QChartView>
#include <QSplineSeries>
class DetailLines : public QWidget
{
Q_OBJECT
public:
explicit DetailLines(QWidget *parent = nullptr);
~DetailLines();
void appendLine(const QString lineName, QList<QPointF> linePoints, bool isSpline = 1); //添加、追加曲线
signals:
private:
QChartView *mChartView; //显示坐标的
QChart *mChart; //坐标
QValueAxis *mAxisX,*mAxisY; //坐标轴
QHash<QString ,QLineSeries*> mLineHash;
void chartInit(QChart *chart, QValueAxis *axisX, QValueAxis *axisY);
};
#endif // DETAILLINES_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/cmzj/GoSlowDetection.git
git@gitee.com:cmzj/GoSlowDetection.git
cmzj
GoSlowDetection
GoSlowDetection
master

搜索帮助