##// END OF EJS Templates
Spline some more
Marek Rosa -
r305:df17cc7126cf
parent child
Show More
@@ -4,3 +4,10 QSplineSeries::QSplineSeries(QObject *parent) :
4 QObject(parent)
4 QObject(parent)
5 {
5 {
6 }
6 }
7
8 QSplineSeries& QSplineSeries::operator << (const QPointF &value)
9 {
10 d->m_data.append(value);
11 emit changed();
12 return *this;
13 }
@@ -9,14 +9,19 class QSplineSeries : public QChartSeries
9 {
9 {
10 Q_OBJECT
10 Q_OBJECT
11 public:
11 public:
12 explicit QSplineSeries(QObject *parent = 0);
13
12
14 public: // from QChartSeries
13 QSplineSeries(QObject *parent = 0);
15 QChartSeriesType type() const { return QChartSeries::SeriesTypeSpline; }
14 QChartSeriesType type() const { return QChartSeries::SeriesTypeSpline; }
15 void addData(QPointF value);
16 QSplineSeries& operator << (const QPointF &value);
17
16 signals:
18 signals:
17
19
18 public slots:
20 public slots:
19
21
22 private:
23 QList<QPointF> m_data;
24
20 };
25 };
21
26
22 QTCOMMERCIALCHART_END_NAMESPACE
27 QTCOMMERCIALCHART_END_NAMESPACE
General Comments 0
You need to be logged in to leave comments. Login now