##// END OF EJS Templates
Bugfix in barchartmodel max -> return 0if no count
Bugfix in barchartmodel max -> return 0if no count

File last commit:

r863:e54c97fc02b8
r915:5580e2c7f492
Show More
qareaseries.h
69 lines | 1.9 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
Michal Klocek
Adds area chart...
r421 #ifndef QAREASERIES_H_
#define QAREASERIES_H_
Jani Honkonen
Change includes in public headers from #include "xxx" -> #include <xxx>
r697 #include <qchartglobal.h>
#include <qseries.h>
Michal Klocek
Adds area chart...
r421 #include <QPen>
#include <QBrush>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QLineSeries;
class QTCOMMERCIALCHART_EXPORT QAreaSeries : public QSeries
{
Q_OBJECT
public:
Tero Ahola
Internal review: Removed extra semicolons
r760 QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = 0);
Michal Klocek
Adds area chart...
r421 virtual ~QAreaSeries();
public: // from QChartSeries
Tero Ahola
Internal review: Removed extra semicolons
r760 virtual QSeriesType type() const { return QSeries::SeriesTypeArea; }
Michal Klocek
Adds area chart...
r421
Tero Ahola
Internal review: Removed extra semicolons
r760 QLineSeries* upperSeries() const { return m_upperSeries; }
QLineSeries* lowerSeries() const { return m_lowerSeries; }
Michal Klocek
Adds area chart...
r421
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 void setPen(const QPen &pen);
Michal Klocek
Adds area chart...
r421 QPen pen() const { return m_pen;}
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 void setBrush(const QBrush &brush);
Michal Klocek
Adds area chart...
r421 QBrush brush() const { return m_brush;}
void setPointsVisible(bool visible);
Tero Ahola
Internal review: Removed extra semicolons
r760 bool pointsVisible() const { return m_pointsVisible; }
Michal Klocek
Adds area chart...
r421
sauimone
Q_SIGNALS and Q_SLOTS
r775 Q_SIGNALS:
Michal Klocek
Adds area chart...
r421 void updated();
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 void clicked(const QPointF &point);
Michal Klocek
Refactor qledgend handling...
r855 void selected();
Michal Klocek
Adds area chart...
r421
private:
QBrush m_brush;
QPen m_pen;
QLineSeries* m_upperSeries;
QLineSeries* m_lowerSeries;
bool m_pointsVisible;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif