##// END OF EJS Templates
Clarified AreaSeries documentation...
Clarified AreaSeries documentation Added note about using a line series only for area series. If the same line series is added to chart and area series it will cause problems. Change-Id: Ie9fbc1f0741e139d82bd3d705b17b0369afc3dc9 Task-number: QTRD-3516 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2776:bc1f6aa59d42
r2790:f40f14281427
Show More
qvalueaxis_p.h
67 lines | 1.8 KiB | text/x-c | CLexer
Michal Klocek
Adds new API classes...
r1540 /****************************************************************************
**
Titta Heikkala
Copyright header changes...
r2776 ** Copyright (C) 2015 The Qt Company Ltd
Michal Klocek
Adds new API classes...
r1540 ** All rights reserved.
Titta Heikkala
Copyright header changes...
r2776 ** For any questions to The Qt Company, please use contact form at http://qt.io
Michal Klocek
Adds new API classes...
r1540 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Michal Klocek
Adds new API classes...
r1540 **
Titta Heikkala
Updated license headers...
r2740 ** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
Titta Heikkala
Copyright header changes...
r2776 ** agreement between you and The Qt Company.
Michal Klocek
Adds new API classes...
r1540 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
Michal Klocek
Adds new API classes...
r1540 **
****************************************************************************/
// W A R N I N G
// -------------
//
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 // This file is not part of the Qt Enterprise Chart API. It exists purely as an
Michal Klocek
Adds new API classes...
r1540 // implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
Jani Honkonen
Fix Krazy issues
r1935 #ifndef QVALUEAXIS_P_H
#define QVALUEAXIS_P_H
Michal Klocek
Adds new API classes...
r1540
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QValueAxis>
#include <private/qabstractaxis_p.h>
Michal Klocek
Adds new API classes...
r1540
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Michal Klocek
Adds new API classes...
r1540
Marek Rosa
class QValuesAxis renamed to QValueAxis
r1804 class QValueAxisPrivate : public QAbstractAxisPrivate
Michal Klocek
Adds new API classes...
r1540 {
Q_OBJECT
public:
Marek Rosa
class QValuesAxis renamed to QValueAxis
r1804 QValueAxisPrivate(QValueAxis *q);
~QValueAxisPrivate();
Michal Klocek
Adds new API classes...
r1540
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556 public:
Michal Klocek
Refactors internals...
r2273 void initializeGraphics(QGraphicsItem* parent);
Marek Rosa
Domains added
r2275 void initializeDomain(AbstractDomain *domain);
Michal Klocek
Refactors internals...
r2273
Miikka Heikkinen
Remove deprecated elements from APIs....
r2742 qreal min() { return m_min; }
qreal max() { return m_max; }
Michal Klocek
Refactors internals...
r2273 void setRange(qreal min,qreal max);
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544 protected:
sauimone
QAbstractAxis: variants strike back.
r1578 void setMin(const QVariant &min);
void setMax(const QVariant &max);
Michal Klocek
Refactor categories implementation...
r1611 void setRange(const QVariant &min, const QVariant &max);
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544
Michal Klocek
Implements qbarcategoriesaxis logic...
r1725 private:
Michal Klocek
Refactors Domain and Axis...
r1698 qreal m_min;
qreal m_max;
int m_tickCount;
Marek Rosa
QValueAxis: added posibility to specify label format
r1854 QString m_format;
Michal Klocek
Fix niceNumbers legacy support
r2314 bool m_applying;
Marek Rosa
class QValuesAxis renamed to QValueAxis
r1804 Q_DECLARE_PUBLIC(QValueAxis)
Michal Klocek
Adds new API classes...
r1540 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Michal Klocek
Adds new API classes...
r1540
Jani Honkonen
Fix Krazy issues
r1935 #endif // QVALUEAXIS_P_H