##// END OF EJS Templates
review fixes. countCategories() -> categoryCount(). countSets -> barsetCount()
review fixes. countCategories() -> categoryCount(). countSets -> barsetCount()

File last commit:

r360:6630f89603b4
r366:8a2edd028805
Show More
scatterseries_p.h
27 lines | 455 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;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIESPRIVATE_H