##// END OF EJS Templates
Remove PlotDomain , use Domain insted...
Remove PlotDomain , use Domain insted * clean old setSize SetPlotDomain iterface * remove all PlotDomain references

File last commit:

r103:399cbfcd557c
r149:23a271e217e1
Show More
qscatterseries.h
39 lines | 1.1 KiB | text/x-c | CLexer
/ src / qscatterseries.h
Tero Ahola
Integrated scatter type series...
r42 #ifndef QSCATTERSERIES_H
#define QSCATTERSERIES_H
#include "qchartseries.h"
Tero Ahola
Resizing of QGraphicItems now possible by resize signal from QChart
r48 #include <QRectF>
Tero Ahola
Draft implementation for setting color themes for a chart
r64 #include <QColor>
Tero Ahola
Integrated scatter type series...
r42
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QScatterSeriesPrivate;
class QTCOMMERCIALCHART_EXPORT QScatterSeries : public QChartSeries
{
Q_OBJECT
public:
//QScatterSeries(QSeriesData *data, QObject *chart);
Tero Ahola
Refactored series creation with QChart
r61 QScatterSeries(QObject *parent = 0);
Tero Ahola
Integrated scatter type series...
r42 ~QScatterSeries();
public: // from QChartSeries
Tero Ahola
Integrated draft version of pie series
r51 QChartSeriesType type() const { return QChartSeries::SeriesTypeScatter; }
Tero Ahola
Refactored series creation with QChart
r61 bool setData(QList<qreal> x, QList<qreal> y);
Tero Ahola
Integrated scatter type series...
r42
Tero Ahola
Resizing of QGraphicItems now possible by resize signal from QChart
r48 public Q_SLOTS:
Tero Ahola
Enabled color themes again
r91 // TODO: also affects opacity of the marker...? To be documented
Tero Ahola
Draft implementation for setting color themes for a chart
r64 void setMarkerColor(QColor color);
Tero Ahola
Color themes now enabled for scatter, pie and line series.
r75 QColor markerColor();
Tero Ahola
Enabled color themes again
r91 // TODO: marker shapes: "x", star, rectangle, tilted rect, triangle, circle, dot
//void setMarkerShape(QChartSeries::MarkerShape/QScatterSeries::MarkerShape shape);
Tero Ahola
Resizing of QGraphicItems now possible by resize signal from QChart
r48
Tero Ahola
Integrated scatter type series...
r42 private:
Q_DECLARE_PRIVATE(QScatterSeries)
Q_DISABLE_COPY(QScatterSeries)
friend class QChart;
QScatterSeriesPrivate *const d;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIES_H