##// END OF EJS Templates
Refactora axis and line chart to use graphics items insted of painter.
Refactora axis and line chart to use graphics items insted of painter.

File last commit:

r85:f77f13ee265a
r85:f77f13ee265a
Show More
qchartaxis.h
31 lines | 761 B | text/x-c | CLexer
Michal Klocek
Adds qchartaxis stub
r72 #ifndef QCHARTAXIS_H_
#define QCHARTAXIS_H_
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 #include <qchartglobal.h>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Adds qchartaxis stub
r72 class QChartAxis
{
public:
QChartAxis();
virtual ~QChartAxis();
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
bool isAxisVisible() const { return m_axisVisible;};
void setAxisVisible(bool visible);
bool isGridVisible() const { return m_girdVisible;};
void setGridVisible(bool visible);
bool isLabelsVisible() const { return m_labelsVisible;};
void setLabelsVisible(bool visible);
bool isRowShadesVisible() const { return m_rowShadesVisible;};
void setRowShadesVisible(bool visible);
private:
bool m_axisVisible;
bool m_girdVisible;
bool m_labelsVisible;
bool m_rowShadesVisible;
Michal Klocek
Adds qchartaxis stub
r72 };
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 QTCOMMERCIALCHART_END_NAMESPACE
Michal Klocek
Adds qchartaxis stub
r72 #endif /* QCHARTAXIS_H_ */