Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/component/dataZoom/SliderZoomView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,13 @@ class SliderZoomView extends DataZoomView {
const size = this._size;
const barGroup = this._displayables.sliderGroup;
const brushSelect = dataZoomModel.get('brushSelect');
const borderRadius = dataZoomModel.get('borderRadius');

barGroup.add(new Rect({
silent: true,
shape: {
x: 0, y: 0, width: size[0], height: size[1]
x: 0, y: 0, width: size[0], height: size[1],
r: borderRadius
},
style: {
fill: dataZoomModel.get('backgroundColor')
Expand Down