An Plot represents an interactive HTML time series plot of Result latencies over time.
| 18 | // An Plot represents an interactive HTML time series |
| 19 | // plot of Result latencies over time. |
| 20 | type Plot struct { |
| 21 | title string |
| 22 | threshold int |
| 23 | series map[string]*labeledSeries |
| 24 | label Labeler |
| 25 | } |
| 26 | |
| 27 | // An Labeler is a function that returns a label |
| 28 | // to partition and represent Results in separate (but overlaid) line charts |
nothing calls this directly
no outgoing calls
no test coverage detected