##// END OF EJS Templates
Few docs updated
Marek Rosa -
r1743:d1cb593b6c09
parent child
Show More
@@ -601,6 +601,9 void QAbstractAxis::setRange(const QVariant &min, const QVariant &max)
601 601 }
602 602
603 603
604 /*!
605 Returns the orientation in which the axis is being used (Vertical or Horizontal)
606 */
604 607 Qt::Orientation QAbstractAxis::orientation()
605 608 {
606 609 return d_ptr->m_orientation;
@@ -53,7 +53,7 public:
53 53
54 54 void emitUpdated();
55 55 void setDirty(bool dirty);
56 bool isDirty(){ return m_dirty; };
56 bool isDirty(){ return m_dirty; }
57 57 void setOrientation(Qt::Orientation orientation);
58 58 Qt::Orientation orientation() const { return m_orientation; }
59 59
@@ -715,6 +715,14 void QPieSeries::setLabelsVisible(bool visible)
715 715 s->setLabelVisible(visible);
716 716 }
717 717
718 /*!
719 Sets the all the slice labels \a position
720
721 Note that this affects only the current slices in the series.
722 If user adds a new slice the default label position is LabelOutside
723
724 \sa QPieSlice::labelPosition(), QPieSlice::setLabelPosition()
725 */
718 726 void QPieSeries::setLabelsPosition(QPieSlice::LabelPosition position)
719 727 {
720 728 Q_D(QPieSeries);
General Comments 0
You need to be logged in to leave comments. Login now