PowerMaster/dataPanel/dpLineChart.h

35 lines
714 B
C
Raw Normal View History

2024-12-25 08:34:51 +08:00
#ifndef DPLINECHART_H
#define DPLINECHART_H
/*******************************************************************************
** DataPanel-LineChart
** author dsc
**
** 线TimeLine等组件进行时间属性的交互
** QCustomPlot实现
**
******************************************************************************/
#include "dpBaseWidget.h"
class QCustomPlot;
class dpLineChart : public dpBaseWidget
{
Q_OBJECT
public:
dpLineChart(QWidget *parent = nullptr);
~dpLineChart();
void setTimeRange(TimeUnit);
void viewHistoricalData(QDateTime);
private:
void initQCP();
QCustomPlot* m_pCustomPlot;
};
#endif