We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6240dd6 commit 3c66a99Copy full SHA for 3c66a99
src/d3.timeslider.coffee
@@ -582,6 +582,10 @@ class TimeSlider extends EventEmitter
582
start = @options.start if start < @options.start
583
end = @options.end if end > @options.end
584
585
+ if @highlightInterval?.constrain
586
+ start = @highlightInterval.start if start < @highlightInterval.start
587
+ end = @highlightInterval.end if end > @highlightInterval.end
588
+
589
d3.select(@element).select('g.brush')
590
.call(@brush.extent([start, end]))
591
0 commit comments