##// END OF EJS Templates
Bar series to use theme base colors. Pie brush minor fix....
Bar series to use theme base colors. Pie brush minor fix. Also fixed pen of bar series and stacked bar series.

File last commit:

r571:0bb609016fcc
r661:4756f59398b8
Show More
qscatterseries.h
41 lines | 783 B | text/x-c | CLexer
#ifndef QSCATTERSERIES_H
#define QSCATTERSERIES_H
#include "qchartglobal.h"
#include "qxyseries.h"
#include <QRectF>
#include <QColor>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QScatterSeriesPrivate;
class QTCOMMERCIALCHART_EXPORT QScatterSeries : public QXYSeries
{
public:
enum MarkerShape {
MarkerShapeCircle,
MarkerShapeRectangle
};
public:
QScatterSeries(QObject *parent = 0);
~QScatterSeries();
public: // from QChartSeries
QSeriesType type() const { return QSeries::SeriesTypeScatter; }
public:
MarkerShape shape() const;
void setShape(MarkerShape shape);
qreal size() const;
void setSize(qreal size);
private:
MarkerShape m_shape;
qreal m_size;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIES_H