(e)
| 222 | } |
| 223 | |
| 224 | handleTimeRangeSelect(e) { |
| 225 | e.stopImmediatePropagation(); |
| 226 | this.selectTimeRange(e.start, e.end, e.focus, e.zoom); |
| 227 | } |
| 228 | |
| 229 | selectTimeRange(start, end, focus = false, zoom = false) { |
| 230 | this._state.selectTimeRange(start, end); |
nothing calls this directly
no test coverage detected