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 4ead65f commit b577dfbCopy full SHA for b577dfb
src/assets/js/chart/primary.js
@@ -210,8 +210,7 @@ export default function() {
210
var tickValuesWithAnnotations = produceAnnotatedTickValues(yScale, [latestPrice]);
211
primaryChart.yTickValues(tickValuesWithAnnotations)
212
.yDecorate(function(s) {
213
- var closePriceTick = s.selectAll('.tick')
214
- .filter(function(d) { return d === latestPrice; })
+ var closePriceTick = s.filter(function(d) { return d === latestPrice; })
215
.classed('close-line', true);
216
217
var calloutHeight = 18;
0 commit comments