##// 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.cpp
43 lines | 661 B | text/x-c | CppLexer
Michal Klocek
Adds qchartaxis stub
r72
#include "qchartaxis.h"
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 QTCOMMERCIALCHART_BEGIN_NAMESPACE
QChartAxis::QChartAxis():
m_axisVisible(true),
m_girdVisible(true),
m_labelsVisible(true),
m_rowShadesVisible(true)
Michal Klocek
Adds qchartaxis stub
r72 {
// TODO Auto-generated constructor stub
}
QChartAxis::~QChartAxis()
{
// TODO Auto-generated destructor stub
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 void QChartAxis::setAxisVisible(bool visible)
{
m_axisVisible=visible;
}
void QChartAxis::setGridVisible(bool visible)
{
m_girdVisible=visible;
}
void QChartAxis::setLabelsVisible(bool visible)
{
m_labelsVisible=visible;
}
void QChartAxis::setRowShadesVisible(bool visible)
{
m_rowShadesVisible=visible;
}
QTCOMMERCIALCHART_END_NAMESPACE