@@ -628,7 +628,7 qreal QPieSeries::total() const | |||
|
628 | 628 | |
|
629 | 629 | This signal is emitted when pie position has changed. |
|
630 | 630 | |
|
631 |
\sa |
|
|
631 | \sa verticalPosition(), setVerticalPosition(), horizontalPosition(), setHorizontalPosition() | |
|
632 | 632 | */ |
|
633 | 633 | |
|
634 | 634 | /*! |
@@ -221,7 +221,7 QBrush QChart::titleBrush() const | |||
|
221 | 221 | |
|
222 | 222 | /*! |
|
223 | 223 | Sets the \a theme used by the chart for rendering the graphical representation of the data |
|
224 | \sa ChartTheme, chartTheme() | |
|
224 | \sa theme() | |
|
225 | 225 | */ |
|
226 | 226 | void QChart::setTheme(QChart::ChartTheme theme) |
|
227 | 227 | { |
@@ -230,7 +230,7 void QChart::setTheme(QChart::ChartTheme theme) | |||
|
230 | 230 | |
|
231 | 231 | /*! |
|
232 | 232 | Returns the theme enum used by the chart. |
|
233 |
\sa ChartTheme, set |
|
|
233 | \sa ChartTheme, setTheme() | |
|
234 | 234 | */ |
|
235 | 235 | QChart::ChartTheme QChart::theme() const |
|
236 | 236 | { |
@@ -77,13 +77,16 QChartView::~QChartView() | |||
|
77 | 77 | { |
|
78 | 78 | } |
|
79 | 79 | |
|
80 | /*! | |
|
81 | Returns the pointer to the associated chart | |
|
82 | */ | |
|
80 | 83 | QChart* QChartView::chart() const |
|
81 | 84 | { |
|
82 | 85 | return d_ptr->m_chart; |
|
83 | 86 | } |
|
84 | 87 | |
|
85 | 88 | /*! |
|
86 |
Sets the RubberBandPlicy to \a |
|
|
89 | Sets the RubberBandPlicy to \a rubberBand. Selected policy determines the way zooming is performed. | |
|
87 | 90 | */ |
|
88 | 91 | void QChartView::setRubberBand(const RubberBands& rubberBand) |
|
89 | 92 | { |
@@ -280,7 +280,7 QList<QPointF> QXYSeries::data() | |||
|
280 | 280 | /*! |
|
281 | 281 | Sets \a pen used for drawing points on the chart. If the pen is not defined, the |
|
282 | 282 | pen from chart theme is used. |
|
283 |
\sa QChart::set |
|
|
283 | \sa QChart::setTheme() | |
|
284 | 284 | */ |
|
285 | 285 | void QXYSeries::setPen(const QPen &pen) |
|
286 | 286 | { |
@@ -293,9 +293,8 void QXYSeries::setPen(const QPen &pen) | |||
|
293 | 293 | /*! |
|
294 | 294 | Sets \a brush used for drawing points on the chart. If the brush is not defined, brush |
|
295 | 295 | from chart theme setting is used. |
|
296 |
\sa QChart::set |
|
|
296 | \sa QChart::setTheme() | |
|
297 | 297 | */ |
|
298 | ||
|
299 | 298 | void QXYSeries::setBrush(const QBrush &brush) |
|
300 | 299 | { |
|
301 | 300 | if (brush != m_brush) { |
@@ -309,7 +308,6 void QXYSeries::setBrush(const QBrush &brush) | |||
|
309 | 308 | Stream operator for adding a data \a point to the series. |
|
310 | 309 | \sa append() |
|
311 | 310 | */ |
|
312 | ||
|
313 | 311 | QXYSeries& QXYSeries::operator<< (const QPointF &point) |
|
314 | 312 | { |
|
315 | 313 | append(point); |
General Comments 0
You need to be logged in to leave comments.
Login now