@@ -515,7 +515,7 void QChart::setPlotAreaBackgroundPen(const QPen &pen) | |||||
515 | } |
|
515 | } | |
516 |
|
516 | |||
517 | /*! |
|
517 | /*! | |
518 |
Returns the |
|
518 | Returns the pen for the background of the plot area of the chart. | |
519 |
|
519 | |||
520 | \sa plotArea(), plotAreaBackgroundVisible, plotAreaBackgroundBrush(), setPlotAreaBackgroundPen() |
|
520 | \sa plotArea(), plotAreaBackgroundVisible, plotAreaBackgroundBrush(), setPlotAreaBackgroundPen() | |
521 | */ |
|
521 | */ |
@@ -295,11 +295,19 void QXYSeries::replace(const QPointF &oldPoint, const QPointF &newPoint) | |||||
295 | replace(index, newPoint); |
|
295 | replace(index, newPoint); | |
296 | } |
|
296 | } | |
297 |
|
297 | |||
|
298 | /*! | |||
|
299 | Replaces the point at \a index with data point (\a newX, \a newY). | |||
|
300 | \sa QXYSeries::pointReplaced() | |||
|
301 | */ | |||
298 | void QXYSeries::replace(int index, qreal newX, qreal newY) |
|
302 | void QXYSeries::replace(int index, qreal newX, qreal newY) | |
299 | { |
|
303 | { | |
300 | replace(index, QPointF(newX, newY)); |
|
304 | replace(index, QPointF(newX, newY)); | |
301 | } |
|
305 | } | |
302 |
|
306 | |||
|
307 | /*! | |||
|
308 | Replaces the point at \a index with \a newPoint. | |||
|
309 | \sa QXYSeries::pointReplaced() | |||
|
310 | */ | |||
303 | void QXYSeries::replace(int index, const QPointF &newPoint) |
|
311 | void QXYSeries::replace(int index, const QPointF &newPoint) | |
304 | { |
|
312 | { | |
305 | Q_D(QXYSeries); |
|
313 | Q_D(QXYSeries); | |
@@ -343,6 +351,9 void QXYSeries::remove(const QPointF &point) | |||||
343 | remove(index); |
|
351 | remove(index); | |
344 | } |
|
352 | } | |
345 |
|
353 | |||
|
354 | /*! | |||
|
355 | Removes the point at \a index from the series. | |||
|
356 | */ | |||
346 | void QXYSeries::remove(int index) |
|
357 | void QXYSeries::remove(int index) | |
347 | { |
|
358 | { | |
348 | Q_D(QXYSeries); |
|
359 | Q_D(QXYSeries); |
General Comments 0
You need to be logged in to leave comments.
Login now