@@ -540,15 +540,31 void QAbstractAxis::hide() | |||||
540 | setVisible(false); |
|
540 | setVisible(false); | |
541 | } |
|
541 | } | |
542 |
|
542 | |||
543 |
|
543 | /*! | ||
|
544 | Sets the minimum value shown on the axis. | |||
|
545 | Depending on the actual axis type the \a min paramter is converted to appropriate type. | |||
|
546 | If the conversion is impossible then the function call does nothing | |||
|
547 | */ | |||
544 | void QAbstractAxis::setMin(const QVariant &min) |
|
548 | void QAbstractAxis::setMin(const QVariant &min) | |
545 | { |
|
549 | { | |
546 | d_ptr->setMin(min); |
|
550 | d_ptr->setMin(min); | |
547 | } |
|
551 | } | |
|
552 | ||||
|
553 | /*! | |||
|
554 | Sets the maximum value shown on the axis. | |||
|
555 | Depending on the actual axis type the \a max paramter is converted to appropriate type. | |||
|
556 | If the conversion is impossible then the function call does nothing | |||
|
557 | */ | |||
548 | void QAbstractAxis::setMax(const QVariant &max) |
|
558 | void QAbstractAxis::setMax(const QVariant &max) | |
549 | { |
|
559 | { | |
550 | d_ptr->setMax(max); |
|
560 | d_ptr->setMax(max); | |
551 | } |
|
561 | } | |
|
562 | ||||
|
563 | /*! | |||
|
564 | Sets the range shown on the axis. | |||
|
565 | Depending on the actual axis type the \a min and \a max paramters are converted to appropriate types. | |||
|
566 | If the conversion is impossible then the function call does nothing. | |||
|
567 | */ | |||
552 | void QAbstractAxis::setRange(const QVariant &min, const QVariant &max) |
|
568 | void QAbstractAxis::setRange(const QVariant &min, const QVariant &max) | |
553 | { |
|
569 | { | |
554 | d_ptr->setRange(min,max); |
|
570 | d_ptr->setRange(min,max); |
General Comments 0
You need to be logged in to leave comments.
Login now