map-display/chart.h

23 lines
332 B
C

#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