##// END OF EJS Templates
Color themes now enabled for scatter, pie and line series.
Color themes now enabled for scatter, pie and line series.

File last commit:

r67:8474a34cb818
r75:cdad8ac737ab
Show More
plotdomain_p.h
25 lines | 364 B | text/x-c | CLexer
#ifndef PLOTDOMAIN_H_
#define PLOTDOMAIN_H_
#include "qchartglobal.h"
#include <QRect>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PlotDomain {
public:
PlotDomain();
virtual ~PlotDomain();
qreal spanX() const;
qreal spanY() const;
public:
qreal m_minX;
qreal m_maxX;
qreal m_minY;
qreal m_maxY;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* PLOTTER_H_ */