Browse Source

rm console.log

merge-requests/7/head
Alexey Velikiy 3 years ago
parent
commit
d446edea45
  1. 2
      src/index.ts

2
src/index.ts

@ -264,7 +264,6 @@ export class LinePod extends ChartwerkPod<LineTimeSerie, LineOptions> {
const datapoints = this.findAndHighlightDatapoints(values.x, values.y);
if(this.options.eventsCallbacks === undefined || this.options.eventsCallbacks.sharedCrosshairMove === undefined) {
console.log('Shared crosshair move, but there is no callback');
return;
}
@ -396,7 +395,6 @@ export class LinePod extends ChartwerkPod<LineTimeSerie, LineOptions> {
const datapoints = this.findAndHighlightDatapoints(xValue, yValue);
if(this.options.eventsCallbacks === undefined || this.options.eventsCallbacks.mouseMove === undefined) {
console.log('Mouse move, but there is no callback');
return;
}
// TDOO: is shift key pressed

Loading…
Cancel
Save