##// END OF EJS Templates
Remove index from QLineChartSeries API
Remove index from QLineChartSeries API

File last commit:

r195:3f425cc48265
r348:c5af9c80b764
Show More
scatterseries_p.h
27 lines | 460 B | text/x-c | CLexer
#ifndef QSCATTERSERIESPRIVATE_H
#define QSCATTERSERIESPRIVATE_H
#include "qchartglobal.h"
#include "qchartseries.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;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIESPRIVATE_H