You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef CHART_H
|
|
#define CHART_H
|
|
|
|
/*
|
|
* 图表类,用来绘制各种图表
|
|
*/
|
|
|
|
#include "QCustomPlot/qcustomplot.h"
|
|
|
|
class Chart
|
|
{
|
|
public:
|
|
Chart(QCustomPlot* customPlot);
|
|
|
|
//绘制折线图
|
|
void plotPolyline(QVector<double> xData,QVector<double> yData);
|
|
|
|
private:
|
|
QCustomPlot* customPlot;
|
|
};
|
|
|
|
#endif // CHART_H
|