##// END OF EJS Templates
minor. qchartaxis docs
minor. qchartaxis docs

File last commit:

r397:e3d058df67ba
r441:2cbc2d40e013
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