@orbcharts/plugins-basic 3.0.0-beta.6 → 3.0.0-beta.8

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 (78) hide show
  1. package/dist/orbcharts-plugins-basic/src/base/{BaseBarStack.d.ts → BaseStackedBar.d.ts} +4 -4
  2. package/dist/orbcharts-plugins-basic/src/grid/defaults.d.ts +3 -3
  3. package/dist/orbcharts-plugins-basic/src/grid/index.d.ts +2 -2
  4. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
  5. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  6. package/dist/orbcharts-plugins-basic/src/index.d.ts +1 -0
  7. package/dist/orbcharts-plugins-basic/src/multiGrid/defaults.d.ts +4 -4
  8. package/dist/orbcharts-plugins-basic/src/multiGrid/index.d.ts +3 -3
  9. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
  10. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  11. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  12. package/dist/orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts +0 -1
  13. package/dist/orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts +0 -3
  14. package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +5 -0
  15. package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +4 -0
  16. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
  17. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  18. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  19. package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
  20. package/dist/orbcharts-plugins-basic/src/utils/commonUtils.d.ts +1 -1
  21. package/dist/orbcharts-plugins-basic/src/utils/d3Utils.d.ts +2 -2
  22. package/dist/orbcharts-plugins-basic/src/utils/orbchartsUtils.d.ts +1 -1
  23. package/dist/orbcharts-plugins-basic.es.js +8088 -7413
  24. package/dist/orbcharts-plugins-basic.umd.js +45 -32
  25. package/package.json +4 -4
  26. package/src/base/BaseBars.ts +4 -4
  27. package/src/base/BaseBarsTriangle.ts +4 -2
  28. package/src/base/BaseDots.ts +1 -1
  29. package/src/base/BaseGroupAxis.ts +47 -47
  30. package/src/base/BaseLegend.ts +4 -4
  31. package/src/base/BaseLineAreas.ts +1 -1
  32. package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +20 -18
  33. package/src/base/BaseTooltip.ts +1 -1
  34. package/src/base/BaseValueAxis.ts +55 -55
  35. package/src/grid/defaults.ts +8 -6
  36. package/src/grid/gridObservables.ts +32 -32
  37. package/src/grid/index.ts +2 -2
  38. package/src/grid/plugins/GridZoom.ts +6 -6
  39. package/src/grid/plugins/GroupAux.ts +23 -23
  40. package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +7 -7
  41. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +5 -5
  42. package/src/index.ts +1 -5
  43. package/src/multiGrid/defaults.ts +7 -7
  44. package/src/multiGrid/index.ts +3 -3
  45. package/src/multiGrid/plugins/MultiBars.ts +1 -1
  46. package/src/multiGrid/plugins/MultiBarsTriangle.ts +1 -1
  47. package/src/multiGrid/plugins/MultiGroupAxis.ts +1 -1
  48. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +8 -8
  49. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +3 -3
  50. package/src/multiGrid/plugins/MultiValueAxis.ts +1 -1
  51. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +8 -8
  52. package/src/multiGrid/plugins/OverlappingValueAxes.ts +3 -3
  53. package/src/multiValue/defaults.ts +10 -6
  54. package/src/multiValue/multiValueObservables.ts +50 -11
  55. package/src/multiValue/plugins/ScatterBubbles.ts +6 -3
  56. package/src/multiValue/plugins/XYAxes.ts +36 -28
  57. package/src/noneData/plugins/Container.ts +23 -23
  58. package/src/noneData/plugins/Tooltip.ts +365 -365
  59. package/src/relationship/defaults.ts +113 -0
  60. package/src/relationship/index.ts +4 -0
  61. package/src/relationship/plugins/ForceDirected.ts +1148 -0
  62. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  63. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  64. package/src/relationship/relationshipObservables.ts +50 -0
  65. package/src/series/defaults.ts +8 -8
  66. package/src/series/plugins/Bubbles.ts +14 -13
  67. package/src/series/plugins/PieEventTexts.ts +20 -19
  68. package/src/tree/defaults.ts +1 -1
  69. package/src/utils/commonUtils.ts +5 -5
  70. package/src/utils/d3Utils.ts +2 -2
  71. package/src/utils/orbchartsUtils.ts +22 -7
  72. package/dist/orbcharts-plugins-basic/src/grid/plugins/BarStack.d.ts +0 -1
  73. package/dist/orbcharts-plugins-basic/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  74. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  75. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  76. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  77. /package/dist/orbcharts-plugins-basic/src/relationship/plugins/{Relationship.d.ts → ForceDirectedBubbles.d.ts} +0 -0
  78. /package/src/relationship/plugins/{Relationship.ts → ForceDirectedBubbles.ts} +0 -0
@@ -0,0 +1,113 @@
1
+ import type {
2
+ ForceDirectedParams,
3
+ RelationshipLegendParams,
4
+ RelationshipTooltipParams
5
+ } from '../../lib/plugins-basic-types'
6
+
7
+
8
+ export const DEFAULT_FORCE_DIRECTED_PARAMS: ForceDirectedParams = {
9
+ node: {
10
+ dotRadius: 10,
11
+ dotFillColorType: 'label',
12
+ dotStrokeColorType: 'label',
13
+ dotStrokeWidth: 1,
14
+ dotStyleFn: (node) => '',
15
+ labelColorType: 'primary',
16
+ labelSizeFixed: false,
17
+ labelStyleFn: (node) => 'text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff'
18
+ },
19
+ edge: {
20
+ arrowColorType: 'primary',
21
+ arrowStrokeWidth: 1.5,
22
+ arrowWidth: 5,
23
+ arrowHeight: 5,
24
+ arrowStyleFn: (node) => '',
25
+ labelColorType: 'secondary',
26
+ labelSizeFixed: false,
27
+ labelStyleFn: (node) => ''
28
+ },
29
+ force: {
30
+ nodeStrength: -500, // 泡泡引力
31
+ linkDistance: 100, // 連結長度
32
+ velocityDecay: 0.1, // 衰減數
33
+ alphaDecay: 0.05
34
+ // collisionSpacing: 2 // 泡泡間距
35
+ },
36
+ zoomable: true,
37
+ transform: {
38
+ x: 0,
39
+ y: 0,
40
+ k: 1
41
+ },
42
+ scaleExtent: {
43
+ min: 0,
44
+ max: Infinity
45
+ }
46
+ }
47
+
48
+ export const DEFAULT_RELATIONSHIP_LEGEND_PARAMS: RelationshipLegendParams = {
49
+ placement: 'right-end',
50
+ padding: 28,
51
+ backgroundFill: 'none',
52
+ backgroundStroke: 'none',
53
+ gap: 10,
54
+ listRectWidth: 14,
55
+ listRectHeight: 14,
56
+ listRectRadius: 0,
57
+ textColorType: 'primary'
58
+ }
59
+
60
+ export const DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS: RelationshipTooltipParams = {
61
+ backgroundColorType: 'background',
62
+ strokeColorType: 'primary',
63
+ backgroundOpacity: 0.8,
64
+ textColorType: 'primary',
65
+ offset: [20, 5],
66
+ padding: 10,
67
+ renderFn: (eventData, { styles, utils }) => {
68
+ const hasCategoryLabel = eventData.categoryLabel ? true : false
69
+ const hasDatumLabel = eventData.datum.label ? true : false
70
+ const bulletWidth = styles.textSizePx * 0.7
71
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
72
+ const categorySvg = hasCategoryLabel
73
+ ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
74
+ <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
75
+ <tspan>${eventData.categoryLabel}</tspan>
76
+ </text>`
77
+ : ''
78
+ const datumLabelSvg = hasDatumLabel
79
+ ? `<tspan>${eventData.datum.label}</tspan> `
80
+ : ''
81
+ const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
82
+ ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
83
+ </text>`
84
+
85
+ return `${categorySvg}
86
+ <g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
87
+ ${datumSvg}
88
+ </g>`
89
+ },
90
+ }
91
+ DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
92
+ const hasCategoryLabel = eventData.categoryLabel ? true : false
93
+ const hasDatumLabel = eventData.datum.label ? true : false
94
+ const bulletWidth = styles.textSizePx * 0.7
95
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
96
+ const categorySvg = hasCategoryLabel
97
+ ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
98
+ <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
99
+ <tspan>\${eventData.categoryLabel}</tspan>
100
+ </text>\`
101
+ : ''
102
+ const datumLabelSvg = hasDatumLabel
103
+ ? \`<tspan>\${eventData.datum.label}</tspan> \`
104
+ : ''
105
+ const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
106
+ \${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
107
+ </text>\`
108
+
109
+ return \`\${categorySvg}
110
+ <g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
111
+ \${datumSvg}
112
+ </g>\`
113
+ }`
@@ -0,0 +1,4 @@
1
+ export * from './defaults'
2
+ export { ForceDirected } from './plugins/ForceDirected'
3
+ export { RelationshipLegend } from './plugins/RelationshipLegend'
4
+ export { RelationshipTooltip } from './plugins/RelationshipTooltip'