@easyv/charts 1.4.29 → 1.4.31

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.
Files changed (90) hide show
  1. package/.babelrc +8 -8
  2. package/.husky/commit-msg +3 -3
  3. package/CHANGELOG.md +18 -18
  4. package/commitlint.config.js +1 -1
  5. package/lib/components/AnimateData.js +16 -8
  6. package/lib/components/Axis.js +134 -87
  7. package/lib/components/Background.js +26 -18
  8. package/lib/components/Band.js +98 -72
  9. package/lib/components/BaseLine.js +46 -33
  10. package/lib/components/Brush.js +46 -29
  11. package/lib/components/Carousel.js +40 -13
  12. package/lib/components/CartesianChart.js +146 -97
  13. package/lib/components/Chart.js +39 -26
  14. package/lib/components/ChartContainer.js +27 -18
  15. package/lib/components/ConicalGradient.js +89 -56
  16. package/lib/components/Control.js +28 -12
  17. package/lib/components/ExtentData.js +17 -9
  18. package/lib/components/FilterData.js +27 -16
  19. package/lib/components/Indicator.js +30 -23
  20. package/lib/components/Label.js +126 -96
  21. package/lib/components/Legend.js +66 -41
  22. package/lib/components/Lighter.js +50 -21
  23. package/lib/components/Line.js +59 -39
  24. package/lib/components/LinearGradient.js +22 -16
  25. package/lib/components/Mapping.js +34 -9
  26. package/lib/components/Marquee.js +30 -14
  27. package/lib/components/PieChart.js +420 -318
  28. package/lib/components/StackData.js +18 -8
  29. package/lib/components/StereoBar.js +105 -65
  30. package/lib/components/TextOverflow.js +21 -8
  31. package/lib/components/Tooltip.js +55 -41
  32. package/lib/components/index.js +29 -0
  33. package/lib/components/pieTooltip.js +67 -40
  34. package/lib/context/index.js +2 -0
  35. package/lib/css/index.module.css +42 -42
  36. package/lib/css/piechart.module.css +26 -26
  37. package/lib/element/ConicGradient.js +35 -29
  38. package/lib/element/Line.js +13 -9
  39. package/lib/element/index.js +2 -0
  40. package/lib/formatter/index.js +2 -0
  41. package/lib/formatter/legend.js +41 -30
  42. package/lib/hooks/index.js +9 -0
  43. package/lib/hooks/useAiData.js +20 -12
  44. package/lib/hooks/useAnimateData.js +21 -8
  45. package/lib/hooks/useAxes.js +117 -67
  46. package/lib/hooks/useCarouselAxisX.js +59 -26
  47. package/lib/hooks/useExtentData.js +47 -15
  48. package/lib/hooks/useFilterData.js +34 -13
  49. package/lib/hooks/useStackData.js +35 -12
  50. package/lib/hooks/useTooltip.js +53 -36
  51. package/lib/index.js +15 -0
  52. package/lib/utils/index.js +247 -95
  53. package/package.json +55 -55
  54. package/src/components/Axis.tsx +1 -1
  55. package/src/components/Background.tsx +61 -61
  56. package/src/components/Band.tsx +274 -274
  57. package/src/components/Brush.js +159 -159
  58. package/src/components/CartesianChart.js +1 -0
  59. package/src/components/Chart.js +100 -101
  60. package/src/components/ChartContainer.tsx +71 -71
  61. package/src/components/ConicalGradient.js +258 -258
  62. package/src/components/Control.jsx +51 -51
  63. package/src/components/ExtentData.js +17 -17
  64. package/src/components/Indicator.js +61 -61
  65. package/src/components/Label.js +275 -275
  66. package/src/components/Legend.js +165 -165
  67. package/src/components/Lighter.jsx +173 -173
  68. package/src/components/Line.js +150 -150
  69. package/src/components/LinearGradient.js +29 -29
  70. package/src/components/PieTooltip.jsx +160 -160
  71. package/src/components/StereoBar.tsx +307 -307
  72. package/src/components/index.js +59 -59
  73. package/src/context/index.js +2 -2
  74. package/src/css/index.module.css +42 -42
  75. package/src/css/piechart.module.css +26 -26
  76. package/src/element/ConicGradient.jsx +55 -55
  77. package/src/element/Line.tsx +33 -33
  78. package/src/element/index.ts +3 -3
  79. package/src/formatter/index.js +1 -1
  80. package/src/formatter/legend.js +92 -92
  81. package/src/hooks/index.js +20 -20
  82. package/src/hooks/useAnimateData.ts +67 -67
  83. package/src/hooks/useExtentData.js +1 -1
  84. package/src/hooks/useFilterData.js +72 -72
  85. package/src/hooks/useStackData.js +101 -101
  86. package/src/hooks/useTooltip.ts +100 -100
  87. package/src/index.js +6 -6
  88. package/src/types/index.d.ts +67 -67
  89. package/src/utils/index.js +757 -757
  90. package/tsconfig.json +23 -23
package/.babelrc CHANGED
@@ -1,8 +1,8 @@
1
- {
2
- "presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"],
3
- "plugins": [
4
- "@babel/plugin-proposal-export-default-from",
5
- "@babel/plugin-transform-runtime",
6
- "@babel/plugin-proposal-class-properties"
7
- ]
8
- }
1
+ {
2
+ "presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"],
3
+ "plugins": [
4
+ "@babel/plugin-proposal-export-default-from",
5
+ "@babel/plugin-transform-runtime",
6
+ "@babel/plugin-proposal-class-properties"
7
+ ]
8
+ }
package/.husky/commit-msg CHANGED
@@ -1,4 +1,4 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
1
+ #!/bin/sh
2
+ . "$(dirname "$0")/_/husky.sh"
3
+
4
4
  yarn commitlint --edit $1
package/CHANGELOG.md CHANGED
@@ -1,18 +1,18 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### [1.1.1](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/compare/v1.1.0...v1.1.1) (2022-04-13)
6
-
7
- ## 1.1.0 (2022-04-02)
8
-
9
-
10
- ### Features
11
-
12
- * 轴标签,label支持样式传入 ([749a595](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/commit/749a595a96b95917dafdc1766f63efec73398d64))
13
- * axis轴标签支持点击触发回调 ([1f636e1](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/commit/1f636e1840f4f3b48c2b9765ce6087759d82fb17))
14
-
15
-
16
- ### Bug Fixes
17
-
18
- * **band组件:** 修复foreignObject在Safari浏览器下的位置诡异偏离问题 ([1a65d54](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/commit/1a65d54abbcf6c9e84cc85cc8b6a9d28b24fa4c4))
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [1.1.1](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/compare/v1.1.0...v1.1.1) (2022-04-13)
6
+
7
+ ## 1.1.0 (2022-04-02)
8
+
9
+
10
+ ### Features
11
+
12
+ * 轴标签,label支持样式传入 ([749a595](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/commit/749a595a96b95917dafdc1766f63efec73398d64))
13
+ * axis轴标签支持点击触发回调 ([1f636e1](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/commit/1f636e1840f4f3b48c2b9765ce6087759d82fb17))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **band组件:** 修复foreignObject在Safari浏览器下的位置诡异偏离问题 ([1a65d54](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-charts/commit/1a65d54abbcf6c9e84cc85cc8b6a9d28b24fa4c4))
@@ -1 +1 @@
1
- module.exports = {extends: ['@commitlint/config-conventional']}
1
+ module.exports = {extends: ['@commitlint/config-conventional']}
@@ -1,29 +1,36 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
4
5
  var _typeof = require("@babel/runtime/helpers/typeof");
6
+
5
7
  Object.defineProperty(exports, "__esModule", {
6
8
  value: true
7
9
  });
8
10
  exports["default"] = void 0;
11
+
9
12
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
+
10
14
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
15
+
11
16
  var _react = _interopRequireWildcard(require("react"));
17
+
12
18
  var _hooks = require("../hooks");
19
+
13
20
  var _excluded = ["dataAnimation"],
14
- _excluded2 = ["data", "config"];
15
- /**
16
- * 用来做图表数据改变(增长)动画(HOC)
17
- */
21
+ _excluded2 = ["data", "config"];
22
+
18
23
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
24
+
19
25
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
26
+
20
27
  var _default = function _default(Component) {
21
28
  return /*#__PURE__*/(0, _react.memo)(function (_ref) {
22
29
  var data = _ref.data,
23
- _ref$config = _ref.config,
24
- dataAnimation = _ref$config.dataAnimation,
25
- config = (0, _objectWithoutProperties2["default"])(_ref$config, _excluded),
26
- rest = (0, _objectWithoutProperties2["default"])(_ref, _excluded2);
30
+ _ref$config = _ref.config,
31
+ dataAnimation = _ref$config.dataAnimation,
32
+ config = (0, _objectWithoutProperties2["default"])(_ref$config, _excluded),
33
+ rest = (0, _objectWithoutProperties2["default"])(_ref, _excluded2);
27
34
  return /*#__PURE__*/_react["default"].createElement(Component, (0, _extends2["default"])({}, rest, {
28
35
  config: config,
29
36
  originData: data,
@@ -31,4 +38,5 @@ var _default = function _default(Component) {
31
38
  }));
32
39
  });
33
40
  };
41
+
34
42
  exports["default"] = _default;
@@ -1,26 +1,40 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
4
5
  var _typeof3 = require("@babel/runtime/helpers/typeof");
6
+
5
7
  Object.defineProperty(exports, "__esModule", {
6
8
  value: true
7
9
  });
8
10
  exports["default"] = void 0;
11
+
9
12
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
+
10
14
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
15
+
11
16
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
17
+
12
18
  var _react = _interopRequireWildcard(require("react"));
19
+
13
20
  var _utils = require("../utils");
21
+
14
22
  var _context = require("../context");
23
+
15
24
  var _element = require("../element");
25
+
16
26
  var _TextOverflow = _interopRequireDefault(require("./TextOverflow"));
27
+
17
28
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
29
+
18
30
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof3(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
31
+
19
32
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
20
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } /**
21
- * x, y, z轴
22
- */
33
+
34
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
35
+
23
36
  var defaultEvent = function defaultEvent() {};
37
+
24
38
  var defaultAppearance = {
25
39
  angle: 0,
26
40
  count: 6,
@@ -34,17 +48,21 @@ var defaultAlign = {
34
48
  };
35
49
  var defaultOrientation = "bottom";
36
50
  var defaultTickSize = 6;
51
+
37
52
  var defaultFormatter = function defaultFormatter(d, _ref) {
38
53
  var suffix = _ref.suffix;
39
54
  return d + suffix;
40
55
  };
56
+
41
57
  var getAxesPath = function getAxesPath(orientation, _ref2) {
42
58
  var width = _ref2.width,
43
- height = _ref2.height;
59
+ height = _ref2.height;
60
+
44
61
  switch (orientation) {
45
62
  case "top":
46
63
  case "bottom":
47
64
  return "M-0.5, 0H" + width;
65
+
48
66
  case "left":
49
67
  case "right":
50
68
  return "M0, -0.5V" + (height + 0.5);
@@ -60,6 +78,8 @@ var getAxesPath = function getAxesPath(orientation, _ref2) {
60
78
  * directionY
61
79
  * }
62
80
  */
81
+
82
+
63
83
  var getLayout = function getLayout(orientation, rotate) {
64
84
  switch (orientation) {
65
85
  case "top":
@@ -68,18 +88,21 @@ var getLayout = function getLayout(orientation, rotate) {
68
88
  directionX: 1,
69
89
  directionY: -1
70
90
  };
91
+
71
92
  case "bottom":
72
93
  return {
73
94
  transform: "translate(-50%,0) rotate(".concat(rotate, "deg)"),
74
95
  directionX: 1,
75
96
  directionY: 1
76
97
  };
98
+
77
99
  case "left":
78
100
  return {
79
101
  transform: "translate(-100%,-50%) rotate(".concat(rotate, "deg)"),
80
102
  directionX: -1,
81
103
  directionY: 1
82
104
  };
105
+
83
106
  case "right":
84
107
  return {
85
108
  transform: "translate(0,-50%) rotate(".concat(rotate, "deg)"),
@@ -88,21 +111,23 @@ var getLayout = function getLayout(orientation, rotate) {
88
111
  };
89
112
  }
90
113
  };
114
+
91
115
  var AxisLine = function AxisLine(_ref3) {
92
116
  var _ref3$orientation = _ref3.orientation,
93
- orientation = _ref3$orientation === void 0 ? defaultOrientation : _ref3$orientation,
94
- _ref3$config = _ref3.config,
95
- show = _ref3$config.show,
96
- color = _ref3$config.color,
97
- lineWidth = _ref3$config.lineWidth,
98
- _ref3$isClipAxis = _ref3.isClipAxis,
99
- isClipAxis = _ref3$isClipAxis === void 0 ? false : _ref3$isClipAxis,
100
- _ref3$clipAxisRange = _ref3.clipAxisRange,
101
- clipAxisRange = _ref3$clipAxisRange === void 0 ? [] : _ref3$clipAxisRange;
117
+ orientation = _ref3$orientation === void 0 ? defaultOrientation : _ref3$orientation,
118
+ _ref3$config = _ref3.config,
119
+ show = _ref3$config.show,
120
+ color = _ref3$config.color,
121
+ lineWidth = _ref3$config.lineWidth,
122
+ _ref3$isClipAxis = _ref3.isClipAxis,
123
+ isClipAxis = _ref3$isClipAxis === void 0 ? false : _ref3$isClipAxis,
124
+ _ref3$clipAxisRange = _ref3.clipAxisRange,
125
+ clipAxisRange = _ref3$clipAxisRange === void 0 ? [] : _ref3$clipAxisRange;
102
126
  if (!show) return null;
103
127
  var context = (0, _react.useContext)(_context.chartContext);
104
128
  var width = context.width,
105
- height = context.height;
129
+ height = context.height;
130
+
106
131
  if (isClipAxis) {
107
132
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, clipAxisRange.map(function (range, index) {
108
133
  return /*#__PURE__*/_react["default"].createElement("path", {
@@ -120,23 +145,24 @@ var AxisLine = function AxisLine(_ref3) {
120
145
  });
121
146
  }
122
147
  };
148
+
123
149
  var Unit = function Unit(_ref4) {
124
150
  var _ref4$config = _ref4.config,
125
- show = _ref4$config.show,
126
- text = _ref4$config.text,
127
- _ref4$config$font = _ref4$config.font,
128
- bold = _ref4$config$font.bold,
129
- color = _ref4$config$font.color,
130
- fontFamily = _ref4$config$font.fontFamily,
131
- fontSize = _ref4$config$font.fontSize,
132
- italic = _ref4$config$font.italic,
133
- letterSpacing = _ref4$config$font.letterSpacing,
134
- _ref4$config$translat = _ref4$config.translate,
135
- translateX = _ref4$config$translat.x,
136
- translateY = _ref4$config$translat.y,
137
- _ref4$config$align = _ref4$config.align,
138
- _ref4$config$align2 = _ref4$config$align === void 0 ? defaultAlign : _ref4$config$align,
139
- textAnchor = _ref4$config$align2.textAnchor;
151
+ show = _ref4$config.show,
152
+ text = _ref4$config.text,
153
+ _ref4$config$font = _ref4$config.font,
154
+ bold = _ref4$config$font.bold,
155
+ color = _ref4$config$font.color,
156
+ fontFamily = _ref4$config$font.fontFamily,
157
+ fontSize = _ref4$config$font.fontSize,
158
+ italic = _ref4$config$font.italic,
159
+ letterSpacing = _ref4$config$font.letterSpacing,
160
+ _ref4$config$translat = _ref4$config.translate,
161
+ translateX = _ref4$config$translat.x,
162
+ translateY = _ref4$config$translat.y,
163
+ _ref4$config$align = _ref4$config.align;
164
+ _ref4$config$align = _ref4$config$align === void 0 ? defaultAlign : _ref4$config$align;
165
+ var textAnchor = _ref4$config$align.textAnchor;
140
166
  if (!show) return null;
141
167
  return /*#__PURE__*/_react["default"].createElement("text", {
142
168
  className: "__easyv-unit",
@@ -150,42 +176,48 @@ var Unit = function Unit(_ref4) {
150
176
  textAnchor: textAnchor
151
177
  }, text);
152
178
  };
179
+
153
180
  var Label = function Label(_ref5) {
154
181
  var className = _ref5.className,
155
- _ref5$orientation = _ref5.orientation,
156
- orientation = _ref5$orientation === void 0 ? defaultOrientation : _ref5$orientation,
157
- label = _ref5.label,
158
- coordinate = _ref5.coordinate,
159
- _ref5$formatter = _ref5.formatter,
160
- formatter = _ref5$formatter === void 0 ? defaultFormatter : _ref5$formatter,
161
- tickSize = _ref5.tickSize,
162
- _ref5$rotate = _ref5.rotate,
163
- rotate = _ref5$rotate === void 0 ? 0 : _ref5$rotate,
164
- config = _ref5.config,
165
- _ref5$onClick = _ref5.onClick,
166
- onClick = _ref5$onClick === void 0 ? defaultEvent : _ref5$onClick,
167
- _ref5$config = _ref5.config,
168
- show = _ref5$config.show,
169
- style = _ref5$config.style,
170
- _ref5$config$translat = _ref5$config.translate,
171
- translateX = _ref5$config$translat.x,
172
- translateY = _ref5$config$translat.y,
173
- font = _ref5$config.font,
174
- _ref5$config$appearan = _ref5$config.appearance,
175
- _ref5$config$appearan2 = _ref5$config$appearan === void 0 ? defaultAppearance : _ref5$config$appearan,
176
- width = _ref5$config$appearan2.width,
177
- speed = _ref5$config$appearan2.speed,
178
- textOverflow = _ref5$config$appearan2.textOverflow;
182
+ _ref5$orientation = _ref5.orientation,
183
+ orientation = _ref5$orientation === void 0 ? defaultOrientation : _ref5$orientation,
184
+ label = _ref5.label,
185
+ coordinate = _ref5.coordinate,
186
+ _ref5$formatter = _ref5.formatter,
187
+ formatter = _ref5$formatter === void 0 ? defaultFormatter : _ref5$formatter,
188
+ tickSize = _ref5.tickSize,
189
+ _ref5$rotate = _ref5.rotate,
190
+ rotate = _ref5$rotate === void 0 ? 0 : _ref5$rotate,
191
+ config = _ref5.config,
192
+ _ref5$onClick = _ref5.onClick,
193
+ onClick = _ref5$onClick === void 0 ? defaultEvent : _ref5$onClick,
194
+ _ref5$config = _ref5.config,
195
+ show = _ref5$config.show,
196
+ style = _ref5$config.style,
197
+ _ref5$config$translat = _ref5$config.translate,
198
+ translateX = _ref5$config$translat.x,
199
+ translateY = _ref5$config$translat.y,
200
+ font = _ref5$config.font,
201
+ _ref5$config$appearan = _ref5$config.appearance;
202
+ _ref5$config$appearan = _ref5$config$appearan === void 0 ? defaultAppearance : _ref5$config$appearan;
203
+ var width = _ref5$config$appearan.width,
204
+ speed = _ref5$config$appearan.speed,
205
+ textOverflow = _ref5$config$appearan.textOverflow;
179
206
  if (!show) return null;
207
+
180
208
  var _label = formatter(label, config);
209
+
181
210
  var _getLayout = getLayout(orientation, rotate),
182
- transform = _getLayout.transform,
183
- directionX = _getLayout.directionX,
184
- directionY = _getLayout.directionY;
211
+ transform = _getLayout.transform,
212
+ directionX = _getLayout.directionX,
213
+ directionY = _getLayout.directionY;
214
+
185
215
  var isVertical = orientation == "left" || orientation == "right";
186
216
  var x = (isVertical ? tickSize * directionX : coordinate) + translateX * directionX;
187
217
  var y = (isVertical ? coordinate : tickSize * directionY) + translateY * directionY;
218
+
188
219
  var _style = style && ((0, _typeof2["default"])(style) == "object" ? style : style(_label));
220
+
189
221
  return /*#__PURE__*/_react["default"].createElement("foreignObject", {
190
222
  width: "1",
191
223
  height: "1",
@@ -213,47 +245,53 @@ var Label = function Label(_ref5) {
213
245
  }
214
246
  })));
215
247
  };
248
+
216
249
  var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef)(function (_ref6, ref) {
217
250
  var orientation = _ref6.orientation,
218
- scaler = _ref6.scaler,
219
- _ref6$tickSize = _ref6.tickSize,
220
- tickSize = _ref6$tickSize === void 0 ? defaultTickSize : _ref6$tickSize,
221
- ticks = _ref6.ticks,
222
- formatter = _ref6.formatter,
223
- rotate = _ref6.rotate,
224
- triggerClick = _ref6.triggerClick,
225
- _ref6$config = _ref6.config,
226
- on = _ref6$config.on,
227
- label = _ref6$config.label,
228
- axisLine = _ref6$config.axisLine,
229
- tickLine = _ref6$config.tickLine,
230
- gridLine = _ref6$config.gridLine,
231
- unit = _ref6$config.unit,
232
- config = _ref6.config,
233
- positions = _ref6.positions,
234
- xLineRange = _ref6.xLineRange,
235
- range = _ref6.range,
236
- axisType = _ref6.axisType,
237
- _ref6$isClipAxis = _ref6.isClipAxis,
238
- isClipAxis = _ref6$isClipAxis === void 0 ? false : _ref6$isClipAxis,
239
- yLineRange = _ref6.yLineRange,
240
- clipAxisRange = _ref6.clipAxisRange,
241
- isControlChart = _ref6.isControlChart,
242
- controlConfig = _ref6.controlConfig,
243
- controlEnd = _ref6.controlEnd,
244
- rawTicks = _ref6.rawTicks;
251
+ scaler = _ref6.scaler,
252
+ _ref6$tickSize = _ref6.tickSize,
253
+ tickSize = _ref6$tickSize === void 0 ? defaultTickSize : _ref6$tickSize,
254
+ ticks = _ref6.ticks,
255
+ formatter = _ref6.formatter,
256
+ rotate = _ref6.rotate,
257
+ triggerClick = _ref6.triggerClick,
258
+ _ref6$config = _ref6.config,
259
+ on = _ref6$config.on,
260
+ label = _ref6$config.label,
261
+ axisLine = _ref6$config.axisLine,
262
+ tickLine = _ref6$config.tickLine,
263
+ gridLine = _ref6$config.gridLine,
264
+ unit = _ref6$config.unit,
265
+ config = _ref6.config,
266
+ positions = _ref6.positions,
267
+ xLineRange = _ref6.xLineRange,
268
+ range = _ref6.range,
269
+ axisType = _ref6.axisType,
270
+ _ref6$isClipAxis = _ref6.isClipAxis,
271
+ isClipAxis = _ref6$isClipAxis === void 0 ? false : _ref6$isClipAxis,
272
+ yLineRange = _ref6.yLineRange,
273
+ clipAxisRange = _ref6.clipAxisRange,
274
+ isControlChart = _ref6.isControlChart,
275
+ controlConfig = _ref6.controlConfig,
276
+ controlEnd = _ref6.controlEnd,
277
+ rawTicks = _ref6.rawTicks;
245
278
  if (!(on && ticks.length > 0)) return null;
279
+
246
280
  var _useContext = (0, _react.useContext)(_context.chartContext),
247
- width = _useContext.width,
248
- height = _useContext.height;
281
+ width = _useContext.width,
282
+ height = _useContext.height;
283
+
249
284
  var x = orientation == "right" ? width : 0;
250
285
  var y = orientation == "bottom" ? height : 0;
286
+
251
287
  function drawAxisTickLine() {
252
288
  var draw = function draw(ticks, scaler) {
253
289
  return ticks.map(function (tick, index) {
254
290
  var coordinate = scaler(tick);
255
291
  if (isNaN(coordinate)) return null;
292
+
256
293
  var _tickSize = tickLine.tickSize || tickSize;
294
+
257
295
  var gridCoord = (0, _utils.getGridCoord)({
258
296
  orientation: orientation,
259
297
  coordinate: coordinate,
@@ -272,6 +310,7 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
272
310
  })));
273
311
  });
274
312
  };
313
+
275
314
  if (isClipAxis) {
276
315
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, ticks.map(function (ticks, index) {
277
316
  return draw(ticks, scaler[index]);
@@ -280,12 +319,15 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
280
319
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, draw(ticks, scaler));
281
320
  }
282
321
  }
322
+
283
323
  function drawLabel() {
284
324
  var draw = function draw(ticks, scaler) {
285
325
  return ticks.map(function (tick, index) {
286
326
  var coordinate = scaler(tick);
287
327
  if (isNaN(coordinate)) return null;
328
+
288
329
  var _tickSize = tickLine.tickSize || tickSize;
330
+
289
331
  var gridCoord = (0, _utils.getGridCoord)({
290
332
  orientation: orientation,
291
333
  coordinate: coordinate,
@@ -311,6 +353,7 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
311
353
  }, gridCoord)));
312
354
  });
313
355
  };
356
+
314
357
  if (isClipAxis) {
315
358
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, ticks.map(function (ticks, index) {
316
359
  return draw(ticks, scaler[index]);
@@ -321,9 +364,10 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
321
364
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, draw(ticks, scaler));
322
365
  }
323
366
  }
367
+
324
368
  return /*#__PURE__*/_react["default"].createElement("g", null, axisLine && tickLine && /*#__PURE__*/_react["default"].createElement("g", null, axisLine && (positions && positions.length ? positions.map(function (_ref7, index) {
325
369
  var x = _ref7.x,
326
- y = _ref7.y;
370
+ y = _ref7.y;
327
371
  return /*#__PURE__*/_react["default"].createElement("g", {
328
372
  key: index,
329
373
  transform: "translate(" + x + ", " + y + ")"
@@ -334,7 +378,9 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
334
378
  }), tickLine && ticks.map(function (tick, index) {
335
379
  var coordinate = scaler(tick);
336
380
  if (isNaN(coordinate)) return null;
381
+
337
382
  var _tickSize = tickLine.tickSize || tickSize;
383
+
338
384
  var gridCoord = (0, _utils.getGridCoord)({
339
385
  orientation: orientation,
340
386
  coordinate: coordinate,
@@ -362,7 +408,7 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
362
408
  }), tickLine && drawAxisTickLine()))), /*#__PURE__*/_react["default"].createElement("svg", {
363
409
  width: width,
364
410
  style: {
365
- overflow: axisType !== "x" && isControlChart ? "visible" : "hidden"
411
+ overflow: axisType === "x" && isControlChart ? "hidden" : "visible"
366
412
  }
367
413
  }, /*#__PURE__*/_react["default"].createElement("g", {
368
414
  transform: "translate(" + x + ", " + y + ")"
@@ -372,4 +418,5 @@ var _default = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
372
418
  config: unit
373
419
  })))));
374
420
  }));
421
+
375
422
  exports["default"] = _default;
@@ -1,36 +1,43 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
4
5
  Object.defineProperty(exports, "__esModule", {
5
6
  value: true
6
7
  });
7
8
  exports["default"] = void 0;
9
+
8
10
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
9
12
  var _react = _interopRequireDefault(require("react"));
13
+
10
14
  var _utils = require("../utils");
11
- /**
12
- * 轴类图背景
15
+
16
+ /**
17
+ * 轴类图背景
13
18
  */
14
19
  var _default = function _default(_ref) {
15
20
  var _ref$axis = _ref.axis,
16
- ticks = _ref$axis.ticks,
17
- scaler = _ref$axis.scaler,
18
- step = _ref$axis.step,
19
- direction = _ref$axis.direction,
20
- bandLength = _ref.bandLength,
21
- _ref$config = _ref.config,
22
- background = _ref$config.background,
23
- paddingInner = _ref$config.seriesIntervalWidth,
24
- paddingOuter = _ref$config.paddingInner,
25
- length = _ref.length;
21
+ ticks = _ref$axis.ticks,
22
+ scaler = _ref$axis.scaler,
23
+ step = _ref$axis.step,
24
+ direction = _ref$axis.direction,
25
+ bandLength = _ref.bandLength,
26
+ _ref$config = _ref.config,
27
+ background = _ref$config.background,
28
+ paddingInner = _ref$config.seriesIntervalWidth,
29
+ paddingOuter = _ref$config.paddingInner,
30
+ length = _ref.length;
26
31
  var isVertical = direction === 'vertical';
32
+
27
33
  var _getSeriesInfo = (0, _utils.getSeriesInfo)({
28
- step: step,
29
- bandLength: bandLength,
30
- paddingInner: paddingInner,
31
- paddingOuter: paddingOuter
32
- }),
33
- bandwidth = _getSeriesInfo.width;
34
+ step: step,
35
+ bandLength: bandLength,
36
+ paddingInner: paddingInner,
37
+ paddingOuter: paddingOuter
38
+ }),
39
+ bandwidth = _getSeriesInfo.width;
40
+
34
41
  var size = isVertical ? {
35
42
  width: length,
36
43
  height: bandwidth
@@ -49,4 +56,5 @@ var _default = function _default(_ref) {
49
56
  }));
50
57
  });
51
58
  };
59
+
52
60
  exports["default"] = _default;