Skip to content

Commit f98b6a2

Browse files
author
DanielSteger
committed
Remove logs.
1 parent 8085c12 commit f98b6a2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

frontend/src/app/modules/time-series/services/line-chart.service.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ export class LineChartService {
457457
}
458458

459459
private updateChart(selection: any, xScale: D3ScaleTime<number, number>, yScale: D3ScaleLinear<number, number>) {
460-
//selected boundaries
460+
// selected boundaries
461461
let extent = d3Event.selection;
462462
// If no selection, back to initial coordinate. Otherwise, update X axis domain
463463
if (!extent) {
@@ -664,13 +664,11 @@ export class LineChartService {
664664

665665
visibleDots
666666
.sort((a: TimeSeriesPoint, b: TimeSeriesPoint) => {
667-
// console.log(a,b);
668667
if (a.value > b.value) return -1;
669668
else if (a.value < b.value) return 1;
670669
else return 0;
671670
})
672671
.each((timeSeriesPoint: TimeSeriesPoint, index: number, nodes: D3BaseType[]) => {
673-
// console.log(timeSeriesPoint, index, nodes[index]);
674672
tableBody.append(this.generateTooltipDataPointRow(timeSeriesPoint, nodes[index], nearestDot));
675673
});
676674

0 commit comments

Comments
 (0)