@oliasoft-open-source/charts-library 4.7.7-beta-5 → 4.7.7-beta-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26627,14 +26627,12 @@ const handleAnnotationMouseUp = (isDragging2, activeAnnotation, chart2, canvas2,
|
|
|
26627
26627
|
activeAnnotation
|
|
26628
26628
|
);
|
|
26629
26629
|
}
|
|
26630
|
-
console.log("Chart", chart2);
|
|
26631
|
-
console.log("canvas", canvas2);
|
|
26632
|
-
console.log("canvas.ownerDocument", canvas2.ownerDocument);
|
|
26633
26630
|
if (!isNil(canvas2) && !isNil(canvas2.style)) {
|
|
26634
26631
|
canvas2.style.cursor = CursorStyle.Pointer;
|
|
26635
26632
|
}
|
|
26636
26633
|
setDraggingState(false, null);
|
|
26637
|
-
chart2.update
|
|
26634
|
+
console.log(" chart?.update", chart2 == null ? void 0 : chart2.update);
|
|
26635
|
+
chart2 == null ? void 0 : chart2.update();
|
|
26638
26636
|
}
|
|
26639
26637
|
}
|
|
26640
26638
|
};
|