(int id)
| 58 | public String label; |
| 59 | |
| 60 | public Graph(int id) { |
| 61 | buffer = new CircularBuffer(BUFFER_CAPACITY); |
| 62 | color = Theme.getColorCycleColor("plotting.graphcolor", id); |
| 63 | } |
| 64 | |
| 65 | public void paint(Graphics2D g, float xstep, double minY, |
| 66 | double maxY, double rangeY, double height) { |
nothing calls this directly
no test coverage detected