// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef QCOLORAXIS_H #define QCOLORAXIS_H #include QT_BEGIN_NAMESPACE class QColorAxisPrivate; class Q_CHARTS_EXPORT QColorAxis : public QAbstractAxis { Q_OBJECT Q_PROPERTY(int tickCount READ tickCount WRITE setTickCount NOTIFY tickCountChanged) Q_PROPERTY(qreal min READ min WRITE setMin NOTIFY minChanged) Q_PROPERTY(qreal max READ max WRITE setMax NOTIFY maxChanged) Q_PROPERTY(qreal size READ size WRITE setSize NOTIFY sizeChanged) Q_PROPERTY(bool autoRange READ autoRange WRITE setAutoRange NOTIFY autoRangeChanged) public: explicit QColorAxis(QObject *parent = nullptr); ~QColorAxis(); AxisType type() const override; void setMin(qreal min); qreal min() const; void setMax(qreal max); qreal max() const; void setRange(qreal min, qreal max); void setTickCount(int count); int tickCount() const; void setSize(const qreal size); qreal size() const; void setGradient(const QLinearGradient &gradient); QLinearGradient gradient() const; void setAutoRange(bool autoRange); bool autoRange() const; Q_SIGNALS: void minChanged(qreal min); void maxChanged(qreal max); void rangeChanged(qreal min, qreal max); void tickCountChanged(int tickCount); void gradientChanged(const QLinearGradient &gradient); void sizeChanged(const qreal size); void autoRangeChanged(bool autoRange); protected: explicit QColorAxis(QColorAxisPrivate &d, QObject *parent = nullptr); private: Q_DECLARE_PRIVATE(QColorAxis) Q_DISABLE_COPY(QColorAxis) }; QT_END_NAMESPACE #endif // QCOLORAXIS_H