! \internal Draws lines between the points in \a lines, given in pixel coordinates. \see drawScatterPlot, drawImpulsePlot, QCPAbstractPlottable1D::drawPolyline */
| 20861 | \see drawScatterPlot, drawImpulsePlot, QCPAbstractPlottable1D::drawPolyline |
| 20862 | */ |
| 20863 | void QCPGraph::drawLinePlot(QCPPainter *painter, const QVector<QPointF> &lines) const |
| 20864 | { |
| 20865 | if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) |
| 20866 | { |
| 20867 | applyDefaultAntialiasingHint(painter); |
| 20868 | drawPolyline(painter, lines); |
| 20869 | } |
| 20870 | } |
| 20871 | |
| 20872 | /*! \internal |
| 20873 |