##// END OF EJS Templates
Added docs for labelFormat in QValueAxis
Marek Rosa -
r1855:852f7795e50c
parent child
Show More
@@ -80,6 +80,17 QTCOMMERCIALCHART_BEGIN_NAMESPACE
80 80 */
81 81
82 82 /*!
83 \property QValueAxis::labelFormat
84 Defines the label format for the axis.
85 See QString::sprintf() for the details.
86 */
87 /*!
88 \qmlproperty real ValueAxis::labelFormat
89 Defines the label format for the axis.
90 See QString::sprintf() for the details.
91 */
92
93 /*!
83 94 \fn void QValueAxis::minChanged(qreal min)
84 95 Axis emits signal when \a min of axis has changed.
85 96 */
@@ -34,6 +34,7 class QTCOMMERCIALCHART_EXPORT QValueAxis : public QAbstractAxis
34 34 Q_PROPERTY(bool niceNumbersEnabled READ niceNumbersEnabled WRITE setNiceNumbersEnabled)
35 35 Q_PROPERTY(qreal min READ min WRITE setMin NOTIFY minChanged)
36 36 Q_PROPERTY(qreal max READ max WRITE setMax NOTIFY maxChanged)
37 Q_PROPERTY(QString labelFormat READ labelFormat WRITE setLabelFormat)
37 38
38 39 public:
39 40 explicit QValueAxis(QObject *parent = 0);
General Comments 0
You need to be logged in to leave comments. Login now