! If scatters are displayed (scatter style not \ref QCPScatterStyle::ssNone), \a skip number of scatter points are skipped/not drawn after every drawn scatter point. This can be used to make the data appear sparser while for example still having a smooth line, and to improve performance for very high density plots. If \a skip is set to 0 (default), all scatter points are drawn. \see
| 20195 | \see setScatterStyle |
| 20196 | */ |
| 20197 | void QCPGraph::setScatterSkip(int skip) |
| 20198 | { |
| 20199 | mScatterSkip = qMax(0, skip); |
| 20200 | } |
| 20201 | |
| 20202 | /*! |
| 20203 | Sets the target graph for filling the area between this graph and \a targetGraph with the current |
nothing calls this directly
no outgoing calls
no test coverage detected