Browse Source

Merge branch 'rm-console-log' into 'main'

rm console.log

See merge request chartwerk/line-pod!7
merge-requests/8/merge
Alexander Velikiy 3 years ago
parent
commit
b8270a4381
  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