@easyv/charts 1.6.20 → 1.6.21

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 (62) hide show
  1. package/.babelrc +8 -8
  2. package/CHANGELOG.md +18 -18
  3. package/commitlint.config.js +1 -1
  4. package/lib/components/Background.js +2 -2
  5. package/lib/components/Band.js +55 -31
  6. package/lib/components/Brush.js +2 -2
  7. package/lib/components/CartesianChart.js +3 -1
  8. package/lib/components/Chart.js +2 -3
  9. package/lib/components/ChartContainer.js +2 -2
  10. package/lib/components/ConicalGradient.js +21 -21
  11. package/lib/components/ExtentData.js +2 -2
  12. package/lib/components/Indicator.js +2 -2
  13. package/lib/components/Label.js +2 -2
  14. package/lib/components/Legend.js +2 -2
  15. package/lib/components/Lighter.js +2 -2
  16. package/lib/components/Line.js +2 -2
  17. package/lib/components/LinearGradient.js +2 -2
  18. package/lib/components/StereoBar.js +2 -2
  19. package/lib/css/index.module.css +42 -42
  20. package/lib/css/piechart.module.css +26 -26
  21. package/lib/hooks/useAnimateData.js +6 -6
  22. package/lib/hooks/useAxes.js +20 -16
  23. package/lib/hooks/useFilterData.js +5 -5
  24. package/lib/hooks/useStackData.js +5 -5
  25. package/lib/hooks/useTooltip.js +11 -11
  26. package/package.json +55 -55
  27. package/src/components/Background.tsx +61 -61
  28. package/src/components/Band.tsx +321 -302
  29. package/src/components/Brush.js +159 -159
  30. package/src/components/CartesianChart.js +1 -1
  31. package/src/components/Chart.js +153 -153
  32. package/src/components/ChartContainer.tsx +71 -71
  33. package/src/components/ConicalGradient.js +258 -258
  34. package/src/components/Control.jsx +241 -241
  35. package/src/components/ExtentData.js +18 -18
  36. package/src/components/Indicator.js +59 -59
  37. package/src/components/Label.js +262 -262
  38. package/src/components/Legend.js +189 -189
  39. package/src/components/Lighter.jsx +173 -173
  40. package/src/components/Line.js +153 -153
  41. package/src/components/LinearGradient.js +29 -29
  42. package/src/components/PieTooltip.jsx +160 -160
  43. package/src/components/StereoBar.tsx +307 -307
  44. package/src/components/index.js +59 -59
  45. package/src/context/index.js +2 -2
  46. package/src/css/index.module.css +42 -42
  47. package/src/css/piechart.module.css +26 -26
  48. package/src/element/ConicGradient.jsx +55 -55
  49. package/src/element/Line.tsx +33 -33
  50. package/src/element/index.ts +3 -3
  51. package/src/formatter/index.js +1 -1
  52. package/src/formatter/legend.js +114 -114
  53. package/src/hooks/index.js +20 -20
  54. package/src/hooks/useAnimateData.ts +68 -68
  55. package/src/hooks/useAxes.js +20 -16
  56. package/src/hooks/useFilterData.js +78 -78
  57. package/src/hooks/useStackData.js +102 -102
  58. package/src/hooks/useTooltip.ts +104 -104
  59. package/src/index.js +6 -6
  60. package/src/types/index.d.ts +68 -68
  61. package/src/utils/index.js +800 -800
  62. package/tsconfig.json +23 -23
@@ -72,6 +72,9 @@ var getNewDomain = function getNewDomain(domain, mode, step) {
72
72
  }
73
73
  break;
74
74
  }
75
+ if (newDomain[0] == newDomain[1]) {
76
+ newDomain[1] += 1;
77
+ }
75
78
  return newDomain;
76
79
  };
77
80
  var getTickCount = function getTickCount(domain, count, decimal) {
@@ -344,22 +347,23 @@ var _default = exports["default"] = function _default(_ref) {
344
347
  }
345
348
  }
346
349
  var _lengthWithoutPaddingOuter = _length - _paddingOuter2;
347
- if (type == "linear" && config.on) {
348
- var zeroPosition = scaler(0);
349
- if (!isNaN(zeroPosition)) {
350
- if (_direction === "horizontal") {
351
- xAxisPositions.add(JSON.stringify({
352
- x: zeroPosition,
353
- y: 0
354
- }));
355
- } else if (_direction === "vertical") {
356
- xAxisPositions.add(JSON.stringify({
357
- x: 0,
358
- y: zeroPosition
359
- }));
360
- }
361
- }
362
- }
350
+ // 额外的X轴坐标轴,对应于数值0的位置
351
+ // if (type == "linear" && config.on) {
352
+ // const zeroPosition = scaler(0);
353
+ // if (!isNaN(zeroPosition)) {
354
+ // if (direction === "horizontal") {
355
+ // xAxisPositions.add(JSON.stringify({
356
+ // x: zeroPosition,
357
+ // y: 0,
358
+ // }));
359
+ // } else if (direction === "vertical") {
360
+ // xAxisPositions.add(JSON.stringify({
361
+ // x: 0,
362
+ // y: zeroPosition,
363
+ // }));
364
+ // }
365
+ // }
366
+ // }
363
367
  var _step2 = _lengthWithoutPaddingOuter / allTicks.length;
364
368
  var controlCfg = {
365
369
  controlStep: 0,
@@ -42,11 +42,11 @@ var getSelected = function getSelected(selected, name) {
42
42
  return tmp;
43
43
  };
44
44
 
45
- /**
46
- * 图例点击状态管理
47
- * @param {Array} data 数据
48
- * @param {Map} series 系列
49
- * @returns {Array} 返回筛选后的数据和是否选中状态,及控制选中函数
45
+ /**
46
+ * 图例点击状态管理
47
+ * @param {Array} data 数据
48
+ * @param {Map} series 系列
49
+ * @returns {Array} 返回筛选后的数据和是否选中状态,及控制选中函数
50
50
  */
51
51
  var _default = exports["default"] = function _default(_ref) {
52
52
  var data = _ref.data,
@@ -75,11 +75,11 @@ var setStackData = function setStackData(data, series, stacks) {
75
75
  return series;
76
76
  };
77
77
 
78
- /**
79
- * 计算堆叠数据
80
- * @param {Array} data 数据
81
- * @param {Map} series 系列
82
- * @returns {Array} 返回堆叠后的数据,由一开始的{x, y, s}变成{data: {x, y, s}, bound: [start, end], index}
78
+ /**
79
+ * 计算堆叠数据
80
+ * @param {Array} data 数据
81
+ * @param {Map} series 系列
82
+ * @returns {Array} 返回堆叠后的数据,由一开始的{x, y, s}变成{data: {x, y, s}, bound: [start, end], index}
83
83
  */
84
84
  var _default = exports["default"] = function _default(_ref2) {
85
85
  var data = _ref2.data,
@@ -10,17 +10,17 @@ var _react = require("react");
10
10
  var _utils = require("../utils");
11
11
  var callback = function callback() {};
12
12
 
13
- /**
14
- * 主要用于轴类图表,返回当前选中的是哪一个x
15
- * @param {Array} svg svg的dom实例
16
- * @param {Number} marginLeft 左间距
17
- * @param {Number} marginTop 上间距
18
- * @param {Number} width 宽
19
- * @param {Number} height 高
20
- * @param {Number} axisX 类目轴
21
- * @param {Object} config 轮播动画参数
22
- * @param {Boolean} active 组件是否处于活跃状态
23
- * @returns {Object} 返回被选中的名称,坐标,选中方法
13
+ /**
14
+ * 主要用于轴类图表,返回当前选中的是哪一个x
15
+ * @param {Array} svg svg的dom实例
16
+ * @param {Number} marginLeft 左间距
17
+ * @param {Number} marginTop 上间距
18
+ * @param {Number} width 宽
19
+ * @param {Number} height 高
20
+ * @param {Number} axisX 类目轴
21
+ * @param {Object} config 轮播动画参数
22
+ * @param {Boolean} active 组件是否处于活跃状态
23
+ * @returns {Object} 返回被选中的名称,坐标,选中方法
24
24
  */
25
25
  var _default = exports["default"] = function _default(_ref) {
26
26
  var svg = _ref.svg,
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "@easyv/charts",
3
- "version": "1.6.20",
4
- "description": "",
5
- "main": "lib/index.js",
6
- "scripts": {
7
- "make": "babel src -d lib --extensions .ts,.tsx,.js,.jsx && cp -r src/css lib",
8
- "prepare": "husky install"
9
- },
10
- "keywords": [],
11
- "author": "",
12
- "license": "ISC",
13
- "devDependencies": {
14
- "@babel/cli": "^7.17.10",
15
- "@babel/core": "^7.26.0",
16
- "@babel/plugin-proposal-class-properties": "^7.16.7",
17
- "@babel/plugin-proposal-export-default-from": "^7.16.7",
18
- "@babel/plugin-transform-runtime": "^7.17.10",
19
- "@babel/preset-env": "^7.26.0",
20
- "@babel/preset-react": "^7.16.7",
21
- "@babel/preset-typescript": "^7.16.7",
22
- "@commitlint/cli": "^17.6.7",
23
- "@commitlint/config-conventional": "^16.2.4",
24
- "@types/d3": "^7.0.0",
25
- "@types/react": "^18.0.12",
26
- "@types/react-dom": "^18.0.5",
27
- "babel-plugin-transform-import-styles": "^0.0.11",
28
- "babel-preset-env": "^1.7.0",
29
- "cz-conventional-changelog": "^3.3.0",
30
- "husky": "^7.0.4",
31
- "load-styles": "^2.0.0",
32
- "standard-version": "^9.3.2"
33
- },
34
- "dependencies": {
35
- "@easyv/utils": "^0.0.45",
36
- "d3v7": "npm:d3@^7.0.0",
37
- "gitignore": "^0.7.0",
38
- "mrm": "^4.0.0",
39
- "popmotion": "^9.3.6",
40
- "react": "^17.0.2",
41
- "svg-path-properties": "^1.0.11",
42
- "svg-points": "^6.0.1",
43
- "yarn": "^1.22.19"
44
- },
45
- "config": {
46
- "commitizen": {
47
- "path": "./node_modules/cz-conventional-changelog"
48
- }
49
- },
50
- "standard-version": {
51
- "skip": {
52
- "commit": true
53
- }
54
- }
55
- }
1
+ {
2
+ "name": "@easyv/charts",
3
+ "version": "1.6.21",
4
+ "description": "",
5
+ "main": "lib/index.js",
6
+ "scripts": {
7
+ "make": "babel src -d lib --extensions .ts,.tsx,.js,.jsx && cp -r src/css lib",
8
+ "prepare": "husky install"
9
+ },
10
+ "keywords": [],
11
+ "author": "",
12
+ "license": "ISC",
13
+ "devDependencies": {
14
+ "@babel/cli": "^7.17.10",
15
+ "@babel/core": "^7.26.0",
16
+ "@babel/plugin-proposal-class-properties": "^7.16.7",
17
+ "@babel/plugin-proposal-export-default-from": "^7.16.7",
18
+ "@babel/plugin-transform-runtime": "^7.17.10",
19
+ "@babel/preset-env": "^7.26.0",
20
+ "@babel/preset-react": "^7.16.7",
21
+ "@babel/preset-typescript": "^7.16.7",
22
+ "@commitlint/cli": "^17.6.7",
23
+ "@commitlint/config-conventional": "^16.2.4",
24
+ "@types/d3": "^7.0.0",
25
+ "@types/react": "^18.0.12",
26
+ "@types/react-dom": "^18.0.5",
27
+ "babel-plugin-transform-import-styles": "^0.0.11",
28
+ "babel-preset-env": "^1.7.0",
29
+ "cz-conventional-changelog": "^3.3.0",
30
+ "husky": "^7.0.4",
31
+ "load-styles": "^2.0.0",
32
+ "standard-version": "^9.3.2"
33
+ },
34
+ "dependencies": {
35
+ "@easyv/utils": "^0.0.45",
36
+ "d3v7": "npm:d3@^7.0.0",
37
+ "gitignore": "^0.7.0",
38
+ "mrm": "^4.0.0",
39
+ "popmotion": "^9.3.6",
40
+ "react": "^17.0.2",
41
+ "svg-path-properties": "^1.0.11",
42
+ "svg-points": "^6.0.1",
43
+ "yarn": "^1.22.19"
44
+ },
45
+ "config": {
46
+ "commitizen": {
47
+ "path": "./node_modules/cz-conventional-changelog"
48
+ }
49
+ },
50
+ "standard-version": {
51
+ "skip": {
52
+ "commit": true
53
+ }
54
+ }
55
+ }
@@ -1,61 +1,61 @@
1
- /**
2
- * 轴类图背景
3
- */
4
- import React from 'react';
5
- import { getSeriesInfo } from '../utils';
6
-
7
- export default ({
8
- axis: { ticks, scaler, step, direction },
9
- bandLength,
10
- config: {
11
- background,
12
- seriesIntervalWidth: paddingInner,
13
- paddingInner: paddingOuter,
14
- },
15
- length,
16
- }: {
17
- axis: {
18
- ticks: Array<string>;
19
- scaler: Function;
20
- step: number;
21
- direction: string;
22
- };
23
- bandLength: number;
24
- config: {
25
- background: string;
26
- seriesIntervalWidth: number;
27
- paddingInner: number;
28
- };
29
- length: number;
30
- }) => {
31
- const isVertical: boolean = direction === 'vertical';
32
-
33
- const { width: bandwidth } = getSeriesInfo({
34
- step,
35
- bandLength,
36
- paddingInner,
37
- paddingOuter,
38
- });
39
-
40
- const size = isVertical
41
- ? {
42
- width: length,
43
- height: bandwidth,
44
- }
45
- : {
46
- width: bandwidth,
47
- height: length,
48
- };
49
- return ticks.map((tick, index: number) => {
50
- return (
51
- <rect
52
- key={index}
53
- {...size}
54
- x={isVertical ? 0 : scaler(tick) - bandwidth / 2}
55
- y={isVertical ? scaler(tick) - bandwidth / 2 : 0}
56
- fill={background}
57
- stroke='none'
58
- />
59
- );
60
- });
61
- };
1
+ /**
2
+ * 轴类图背景
3
+ */
4
+ import React from 'react';
5
+ import { getSeriesInfo } from '../utils';
6
+
7
+ export default ({
8
+ axis: { ticks, scaler, step, direction },
9
+ bandLength,
10
+ config: {
11
+ background,
12
+ seriesIntervalWidth: paddingInner,
13
+ paddingInner: paddingOuter,
14
+ },
15
+ length,
16
+ }: {
17
+ axis: {
18
+ ticks: Array<string>;
19
+ scaler: Function;
20
+ step: number;
21
+ direction: string;
22
+ };
23
+ bandLength: number;
24
+ config: {
25
+ background: string;
26
+ seriesIntervalWidth: number;
27
+ paddingInner: number;
28
+ };
29
+ length: number;
30
+ }) => {
31
+ const isVertical: boolean = direction === 'vertical';
32
+
33
+ const { width: bandwidth } = getSeriesInfo({
34
+ step,
35
+ bandLength,
36
+ paddingInner,
37
+ paddingOuter,
38
+ });
39
+
40
+ const size = isVertical
41
+ ? {
42
+ width: length,
43
+ height: bandwidth,
44
+ }
45
+ : {
46
+ width: bandwidth,
47
+ height: length,
48
+ };
49
+ return ticks.map((tick, index: number) => {
50
+ return (
51
+ <rect
52
+ key={index}
53
+ {...size}
54
+ x={isVertical ? 0 : scaler(tick) - bandwidth / 2}
55
+ y={isVertical ? scaler(tick) - bandwidth / 2 : 0}
56
+ fill={background}
57
+ stroke='none'
58
+ />
59
+ );
60
+ });
61
+ };