Skip to content

Commit dd4c9c2

Browse files
rueckstiesskangas
authored andcommitted
INT-1243 updated threshold for opacity change.
1 parent 73883b6 commit dd4c9c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/minicharts/d3fns/date.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ var minicharts_d3fns_date = function() {
263263
lines.enter().append('line')
264264
.attr('class', 'line selectable')
265265
.style('opacity', function() {
266-
return values.length > 100 ? 0.3 : 1.0;
266+
return values.length > 200 ? 0.3 : 1.0;
267267
})
268268
.on('mouseover', tip.show)
269269
.on('mouseout', tip.hide)

0 commit comments

Comments
 (0)