##// END OF EJS Templates
model prototyping for bar chart
model prototyping for bar chart

File last commit:

r158:dd283485728c
r159:e1dfbbf1ecba
Show More
qscatterseries_p.h
25 lines | 447 B | text/x-c | CLexer
/ src / qscatterseries_p.h
#ifndef QSCATTERSERIESPRIVATE_H
#define QSCATTERSERIESPRIVATE_H
#include "qchartglobal.h"
#include "qchartseries.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
* The PIMPL class of QScatterSeries.
*/
class QScatterSeriesPrivate
{
public:
QScatterSeriesPrivate();
public:
// TODO: use the chart data class instead of list of x and y values?
QList<QPointF> m_data;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIESPRIVATE_H