@easyv/charts 1.5.25 → 1.5.26
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/Axis.js
CHANGED
|
@@ -243,6 +243,7 @@ var Label = function Label(_ref5) {
|
|
|
243
243
|
style: _objectSpread(_objectSpread(_objectSpread({}, _style), (0, _utils.getFontStyle)(font)), {}, {
|
|
244
244
|
/** Safari Bug **/
|
|
245
245
|
position: "absolute",
|
|
246
|
+
cursor: "pointer",
|
|
246
247
|
left: x + (isIOS ? iosX : 0),
|
|
247
248
|
top: y + (isIOS ? iosY : 0)
|
|
248
249
|
})
|
package/lib/components/Legend.js
CHANGED
|
@@ -124,6 +124,7 @@ var _default = /*#__PURE__*/(0, _react.memo)(function (_ref) {
|
|
|
124
124
|
display: 'flex',
|
|
125
125
|
opacity: selected === false ? opacity / 100 : 1,
|
|
126
126
|
alignItems: 'center',
|
|
127
|
+
cursor: "pointer",
|
|
127
128
|
gap: _icon.gap
|
|
128
129
|
}
|
|
129
130
|
}, formatter ? formatter(series, config) : /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("span", {
|
|
@@ -199,7 +199,8 @@ var Column3DSkin = function Column3DSkin(props) {
|
|
|
199
199
|
style: {
|
|
200
200
|
transform: "skew(0deg, 23deg)",
|
|
201
201
|
transformOrigin: "".concat(x + width / 2, "px ").concat(y + height / 2, "px"),
|
|
202
|
-
opacity: opacity
|
|
202
|
+
opacity: opacity,
|
|
203
|
+
cursor: "pointer"
|
|
203
204
|
}
|
|
204
205
|
}, color.defs, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
205
206
|
width: width / 2,
|
package/package.json
CHANGED
package/src/components/Axis.tsx
CHANGED
package/src/components/Legend.js
CHANGED