@easyv/charts 1.10.38 → 1.10.39
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/lib/components/Band.js +10 -14
- package/package.json +1 -1
- package/src/components/Band.tsx +10 -10
package/lib/components/Band.js
CHANGED
|
@@ -284,20 +284,16 @@ var _default = exports["default"] = /*#__PURE__*/(0, _react.memo)(function (_ref
|
|
|
284
284
|
},
|
|
285
285
|
onMouseLeave: function onMouseLeave(e) {
|
|
286
286
|
triggerEvents ? triggerEvents(e, "mouseleave") : "";
|
|
287
|
-
if (isControlChart && !auto) {
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
})
|
|
298
|
-
};
|
|
299
|
-
});
|
|
300
|
-
}
|
|
287
|
+
// if (isControlChart && !auto) {
|
|
288
|
+
// setCtlTip((pre: any) => ({
|
|
289
|
+
// show: false,
|
|
290
|
+
// x: undefined,
|
|
291
|
+
// xName: undefined,
|
|
292
|
+
// indicatorList: pre.indicatorList.map((item: any) => {
|
|
293
|
+
// return { ...item, isShow: false };
|
|
294
|
+
// }),
|
|
295
|
+
// }));
|
|
296
|
+
// }
|
|
301
297
|
},
|
|
302
298
|
"data-mobile": JSON.stringify({
|
|
303
299
|
x: xScaler(x),
|
package/package.json
CHANGED
package/src/components/Band.tsx
CHANGED
|
@@ -280,16 +280,16 @@ export default memo(
|
|
|
280
280
|
}}
|
|
281
281
|
onMouseLeave={(e) => {
|
|
282
282
|
triggerEvents ? triggerEvents(e, "mouseleave") : "";
|
|
283
|
-
if (isControlChart && !auto) {
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}
|
|
283
|
+
// if (isControlChart && !auto) {
|
|
284
|
+
// setCtlTip((pre: any) => ({
|
|
285
|
+
// show: false,
|
|
286
|
+
// x: undefined,
|
|
287
|
+
// xName: undefined,
|
|
288
|
+
// indicatorList: pre.indicatorList.map((item: any) => {
|
|
289
|
+
// return { ...item, isShow: false };
|
|
290
|
+
// }),
|
|
291
|
+
// }));
|
|
292
|
+
// }
|
|
293
293
|
}}
|
|
294
294
|
data-mobile={JSON.stringify({ x: xScaler(x), xName: data.x })}
|
|
295
295
|
data-data={JSON.stringify(data)}
|