##// END OF EJS Templates
Marge spline
Marge spline

File last commit:

r397:e3d058df67ba
r418:4e82d53075c4 merge
Show More
scatterseries_p.h
28 lines | 479 B | text/x-c | CLexer
#ifndef QSCATTERSERIESPRIVATE_H
#define QSCATTERSERIESPRIVATE_H
#include "qchartglobal.h"
#include "qseries.h"
#include <QPen>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
* The PIMPL class of QScatterSeries.
*/
class QScatterSeriesPrivate
{
public:
QScatterSeriesPrivate();
public:
QList<QPointF> m_data;
QPen m_markerPen;
QBrush m_markerBrush;
int m_markerShape;
qreal m_markerSize;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIESPRIVATE_H