##// END OF EJS Templates
Fixed bug in setting chart theme...
Fixed bug in setting chart theme The bug was that if you first add a series, then change theme and then restore the original theme, the color of the series was changed even though it should have been restored to match the original color.

File last commit:

r196:36c146599567
r312:0677c9dd6d92
Show More
scatterelement.h
30 lines | 604 B | text/x-c | CLexer
#ifndef SCATTERELEMENT_H
#define SCATTERELEMENT_H
#include "qchartglobal.h"
#include <QObject>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ScatterElement : public QObject
{
Q_OBJECT
Q_PROPERTY(qreal x READ x WRITE setX /*NOTIFY dataXChanged*/)
Q_PROPERTY(qreal y READ y WRITE setY /*NOTIFY dataYChanged*/)
public:
explicit ScatterElement(QObject *parent = 0);
void setX(qreal x) {m_x = x;}
qreal x() {return m_x;}
void setY(qreal y) {m_y = y;}
qreal y() {return m_y;}
public:
qreal m_x;
qreal m_y;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // SCATTERELEMENT_H