| 81 | } |
| 82 | |
| 83 | Point getPlotPoint(unsigned streamIndex, unsigned plotIndex, unsigned pointIndex) const override |
| 84 | { |
| 85 | if (streamIndex == 0 && plotIndex == 0) |
| 86 | return {double(pointIndex), double(barData[pointIndex])}; |
| 87 | if (streamIndex == 1 && plotIndex == 0) |
| 88 | return graphData[pointIndex]; |
| 89 | return {}; |
| 90 | } |
| 91 | |
| 92 | QString getPointInfo(unsigned streamIndex, unsigned, unsigned pointIndex) const override |
| 93 | { |
no outgoing calls
no test coverage detected