|
|
@ -290,14 +290,18 @@ export class LinePod extends ChartwerkPod<LineTimeSerie, LineOptions> { |
|
|
|
let points = []; // datapoints in each metric that is closest to xValue/yValue position
|
|
|
|
let points = []; // datapoints in each metric that is closest to xValue/yValue position
|
|
|
|
this.series.visibleSeries.forEach((serie: LineTimeSerie) => { |
|
|
|
this.series.visibleSeries.forEach((serie: LineTimeSerie) => { |
|
|
|
const closestDatapoint = this.getClosestDatapoint(serie, xValue, yValue); |
|
|
|
const closestDatapoint = this.getClosestDatapoint(serie, xValue, yValue); |
|
|
|
if(closestDatapoint === undefined) { |
|
|
|
if(_.isNil(closestDatapoint)) { |
|
|
|
this.hideCrosshairCircle(serie.idx); |
|
|
|
this.hideCrosshairCircle(serie.idx); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const xPosition = this.state.xScale(closestDatapoint[0]); |
|
|
|
const xPosition = this.state.xScale(closestDatapoint[0]); |
|
|
|
const yPosition = this.state.yScale(closestDatapoint[1]); |
|
|
|
const yPosition = this.state.yScale(closestDatapoint[1]); |
|
|
|
this.moveCrosshairCircle(xPosition, yPosition, serie.idx); |
|
|
|
if(!_.isNil(closestDatapoint[0])) { |
|
|
|
|
|
|
|
this.moveCrosshairCircle(xPosition, yPosition, serie.idx); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.hideCrosshairCircle(serie.idx); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
points.push({ |
|
|
|
points.push({ |
|
|
|
value: closestDatapoint, |
|
|
|
value: closestDatapoint, |
|
|
|