@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,100 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ Observable,
8
+ Subject } from 'rxjs'
9
+ import type { DefinePluginConfig } from '../../../lib/core-types'
10
+ import {
11
+ defineRelationshipPlugin } from '../../../lib/core'
12
+ import { DEFAULT_RELATIONSHIP_LEGEND_PARAMS } from '../defaults'
13
+ import { createBaseLegend } from '../../base/BaseLegend'
14
+ import { LAYER_INDEX_OF_INFO } from '../../const'
15
+
16
+ const pluginName = 'RelationshipLegend'
17
+
18
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_RELATIONSHIP_LEGEND_PARAMS> = {
19
+ name: pluginName,
20
+ defaultParams: DEFAULT_RELATIONSHIP_LEGEND_PARAMS,
21
+ layerIndex: LAYER_INDEX_OF_INFO,
22
+ validator: (params, { validateColumns }) => {
23
+ const result = validateColumns(params, {
24
+ placement: {
25
+ toBe: '"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',
26
+ test: (value) => {
27
+ return [
28
+ 'top', 'top-start', 'top-end',
29
+ 'bottom', 'bottom-start', 'bottom-end',
30
+ 'left', 'left-start', 'left-end',
31
+ 'right', 'right-start', 'right-end'
32
+ ].includes(value)
33
+ }
34
+ },
35
+ padding: {
36
+ toBeTypes: ['number']
37
+ },
38
+ backgroundFill: {
39
+ toBeOption: 'ColorType',
40
+ },
41
+ backgroundStroke: {
42
+ toBeOption: 'ColorType',
43
+ },
44
+ gap: {
45
+ toBeTypes: ['number']
46
+ },
47
+ listRectWidth: {
48
+ toBeTypes: ['number']
49
+ },
50
+ listRectHeight: {
51
+ toBeTypes: ['number']
52
+ },
53
+ listRectRadius: {
54
+ toBeTypes: ['number']
55
+ },
56
+ textColorType: {
57
+ toBeOption: 'ColorType',
58
+ }
59
+ })
60
+ return result
61
+ }
62
+ }
63
+
64
+ export const RelationshipLegend = defineRelationshipPlugin(pluginConfig)(({ selection, rootSelection, observer, subject }) => {
65
+
66
+ const destroy$ = new Subject()
67
+
68
+ // 全部列點矩型使用相同樣式參數
69
+ const fullParams$ = observer.fullParams$.pipe(
70
+ takeUntil(destroy$),
71
+ map(d => {
72
+ const labelList = [
73
+ {
74
+ listRectWidth: d.listRectWidth,
75
+ listRectHeight: d.listRectHeight,
76
+ listRectRadius: d.listRectRadius,
77
+ }
78
+ ]
79
+ return {
80
+ ...d,
81
+ labelList
82
+ }
83
+ })
84
+ )
85
+
86
+ const unsubscribeBaseLegend = createBaseLegend(pluginName, {
87
+ rootSelection,
88
+ legendLabels$: observer.categoryLabels$,
89
+ fullParams$,
90
+ layout$: observer.layout$,
91
+ fullChartParams$: observer.fullChartParams$,
92
+ textSizePx$: observer.textSizePx$
93
+ })
94
+
95
+ return () => {
96
+ destroy$.next(undefined)
97
+ unsubscribeBaseLegend()
98
+ }
99
+ })
100
+
@@ -0,0 +1,66 @@
1
+ import {
2
+ Subject,
3
+ } from 'rxjs'
4
+ import type { DefinePluginConfig } from '../../../lib/core-types'
5
+ import {
6
+ defineRelationshipPlugin } from '../../../lib/core'
7
+ import { DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS } from '../defaults'
8
+ import { LAYER_INDEX_OF_TOOLTIP } from '../../const'
9
+ import { createBaseTooltip } from '../../base/BaseTooltip'
10
+
11
+ const pluginName = 'RelationshipTooltip'
12
+
13
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS> = {
14
+ name: pluginName,
15
+ defaultParams: DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS,
16
+ layerIndex: LAYER_INDEX_OF_TOOLTIP,
17
+ validator: (params, { validateColumns }) => {
18
+ const result = validateColumns(params, {
19
+ backgroundColorType: {
20
+ toBeOption: 'ColorType',
21
+ },
22
+ backgroundOpacity: {
23
+ toBeTypes: ['number']
24
+ },
25
+ strokeColorType: {
26
+ toBeOption: 'ColorType',
27
+ },
28
+ offset: {
29
+ toBe: '[number, number]',
30
+ test: (value: any) => {
31
+ return Array.isArray(value)
32
+ && value.length === 2
33
+ && typeof value[0] === 'number'
34
+ && typeof value[1] === 'number'
35
+ }
36
+ },
37
+ padding: {
38
+ toBeTypes: ['number']
39
+ },
40
+ textColorType: {
41
+ toBeOption: 'ColorType',
42
+ },
43
+ renderFn: {
44
+ toBeTypes: ['Function']
45
+ },
46
+ })
47
+ return result
48
+ }
49
+ }
50
+
51
+ export const RelationshipTooltip = defineRelationshipPlugin(pluginConfig)(({ selection, rootSelection, name, subject, observer }) => {
52
+ const destroy$ = new Subject()
53
+
54
+ const unsubscribeTooltip = createBaseTooltip(pluginName, {
55
+ rootSelection,
56
+ fullParams$: observer.fullParams$,
57
+ fullChartParams$: observer.fullChartParams$,
58
+ layout$: observer.layout$,
59
+ event$: subject.event$,
60
+ })
61
+
62
+ return () => {
63
+ destroy$.next(undefined)
64
+ unsubscribeTooltip()
65
+ }
66
+ })
@@ -0,0 +1,50 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ Observable,
4
+ Subject,
5
+ of,
6
+ takeUntil,
7
+ filter,
8
+ first,
9
+ map,
10
+ switchMap,
11
+ combineLatest,
12
+ merge,
13
+ shareReplay,
14
+ distinctUntilChanged
15
+ } from 'rxjs'
16
+ import type {
17
+ ContainerPosition } from '../../lib/core-types'
18
+ import { getClassName, getUniID } from '../utils/orbchartsUtils'
19
+
20
+ // function createRelationshipSelection ({ selection, pluginName, separateSeries$, seriesLabels$ }: {
21
+ // selection: d3.Selection<any, unknown, any, unknown>
22
+ // pluginName: string
23
+ // separateSeries$: Observable<boolean>
24
+ // seriesLabels$: Observable<string[]>
25
+ // }) {
26
+ // const seriesClassName = getClassName(pluginName, 'series')
27
+
28
+ // return combineLatest({
29
+ // seriesLabels: seriesLabels$,
30
+ // separateSeries: separateSeries$
31
+ // }).pipe(
32
+ // switchMap(async d => d),
33
+ // map((data, i) => {
34
+ // const selectionData = data.separateSeries ? data.seriesLabels : [data.seriesLabels.join('')]
35
+ // return selection
36
+ // .selectAll<SVGGElement, string>(`g.${seriesClassName}`)
37
+ // .data(selectionData, d => d)
38
+ // .join(
39
+ // enter => {
40
+ // return enter
41
+ // .append('g')
42
+ // .classed(seriesClassName, true)
43
+ // },
44
+ // update => update,
45
+ // exit => exit.remove()
46
+ // )
47
+ // }),
48
+ // shareReplay(1)
49
+ // )
50
+ // }
@@ -17,7 +17,7 @@ export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
17
17
  velocityDecay: 0.3, // 衰減數
18
18
  collisionSpacing: 2 // 泡泡間距
19
19
  },
20
- bubbleText: {
20
+ bubbleLabel: {
21
21
  fillRate: 0.6,
22
22
  lineHeight: 12,
23
23
  lineLengthMin: 4
@@ -51,8 +51,8 @@ export const DEFAULT_PIE_PARAMS: PieParams = {
51
51
  }
52
52
 
53
53
  export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
54
- eventFn: (eventData: EventSeries, eventName: EventName, t: number) => {
55
- if (eventName === 'mouseover' || eventName === 'mousemove') {
54
+ renderFn: (eventData: EventSeries) => {
55
+ if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
56
56
  return [String(eventData.datum!.value)]
57
57
  }
58
58
  return [
@@ -62,7 +62,7 @@ export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
62
62
  return acc + seriesData.reduce((_acc, data) => {
63
63
  return _acc + (data.value ?? 0)
64
64
  }, 0)
65
- }, 0) * t
65
+ }, 0) * (eventData.tween ?? 1)
66
66
  )
67
67
  )
68
68
  ]
@@ -83,9 +83,9 @@ export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
83
83
  }
84
84
  ]
85
85
  }
86
- DEFAULT_PIE_EVENT_TEXTS_PARAMS.eventFn.toString = () => `(eventData: EventSeries, eventName: EventName, t: number) => {
87
- if (eventName === 'mouseover' || eventName === 'mousemove') {
88
- return [String(eventData.datum!.value)]
86
+ DEFAULT_PIE_EVENT_TEXTS_PARAMS.renderFn.toString = () => `(eventData) => {
87
+ if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
88
+ return [String(eventData.datum.value)]
89
89
  }
90
90
  return [
91
91
  String(
@@ -94,7 +94,7 @@ DEFAULT_PIE_EVENT_TEXTS_PARAMS.eventFn.toString = () => `(eventData: EventSeries
94
94
  return acc + seriesData.reduce((_acc, data) => {
95
95
  return _acc + (data.value ?? 0)
96
96
  }, 0)
97
- }, 0) * t
97
+ }, 0) * (eventData.tween ?? 1)
98
98
  )
99
99
  )
100
100
  ]
@@ -45,7 +45,7 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES
45
45
  force: {
46
46
  toBeTypes: ['object']
47
47
  },
48
- bubbleText: {
48
+ bubbleLabel: {
49
49
  toBeTypes: ['object']
50
50
  },
51
51
  arcScaleType: {
@@ -69,8 +69,8 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES
69
69
  return forceResult
70
70
  }
71
71
  }
72
- if (params.bubbleText) {
73
- const bubbleTextResult = validateColumns(params.bubbleText, {
72
+ if (params.bubbleLabel) {
73
+ const bubbleLabelResult = validateColumns(params.bubbleLabel, {
74
74
  fillRate: {
75
75
  toBeTypes: ['number']
76
76
  },
@@ -81,8 +81,8 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES
81
81
  toBeTypes: ['number']
82
82
  },
83
83
  })
84
- if (bubbleTextResult.status === 'error') {
85
- return bubbleTextResult
84
+ if (bubbleLabelResult.status === 'error') {
85
+ return bubbleLabelResult
86
86
  }
87
87
  }
88
88
  return result
@@ -91,23 +91,23 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES
91
91
 
92
92
  let force: d3.Simulation<d3.SimulationNodeDatum, undefined> | undefined
93
93
 
94
- function makeForce (bubblesSelection: d3.Selection<SVGGElement, any, any, any>, fullParams: BubblesParams) {
94
+ function makeForce (bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>, fullParams: BubblesParams) {
95
95
  return d3.forceSimulation()
96
96
  .velocityDecay(fullParams.force!.velocityDecay!)
97
97
  // .alphaDecay(0.2)
98
98
  .force(
99
99
  "collision",
100
100
  d3.forceCollide()
101
- .radius(d => {
102
- // @ts-ignore
101
+ .radius((d: d3.SimulationNodeDatum & BubblesDatum) => {
103
102
  return d.r + fullParams.force!.collisionSpacing
104
103
  })
105
104
  // .strength(0.01)
106
105
  )
107
- .force("charge", d3.forceManyBody().strength((d) => {
108
- // @ts-ignore
106
+ .force("charge", d3.forceManyBody().strength((d: d3.SimulationNodeDatum & BubblesDatum) => {
109
107
  return - Math.pow(d.r, 2.0) * fullParams.force!.strength
110
108
  }))
109
+ // .force("charge", d3.forceManyBody().strength(-2000))
110
+ // .force("collision", d3.forceCollide(60).strength(1)) // @Q@ 60為泡泡的R,暫時是先寫死的
111
111
  // .force("x", d3.forceX().strength(forceStrength).x(this.graphicWidth / 2))
112
112
  // .force("y", d3.forceY().strength(forceStrength).y(this.graphicHeight / 2))
113
113
  .on("tick", () => {
@@ -121,6 +121,7 @@ function makeForce (bubblesSelection: d3.Selection<SVGGElement, any, any, any>,
121
121
  // .attr("cx", (d) => d.x)
122
122
  // .attr("cy", (d) => d.y)
123
123
  })
124
+
124
125
  }
125
126
 
126
127
 
@@ -259,13 +260,13 @@ function renderBubbles ({ selection, bubblesData, fullParams, sumSeries }: {
259
260
  .each((d,i,g) => {
260
261
  const gSelection = d3.select(g[i])
261
262
  let breakAll = true
262
- if (d[textDataColumn].length <= fullParams.bubbleText.lineLengthMin) {
263
+ if (d[textDataColumn].length <= fullParams.bubbleLabel.lineLengthMin) {
263
264
  breakAll = false
264
265
  }
265
266
  gSelection.call(renderCircleText, {
266
267
  text: d[textDataColumn],
267
- radius: d.r * fullParams.bubbleText.fillRate,
268
- lineHeight: fullParams.bubbleText.lineHeight,
268
+ radius: d.r * fullParams.bubbleLabel.fillRate,
269
+ lineHeight: fullParams.bubbleLabel.lineHeight,
269
270
  isBreakAll: breakAll
270
271
  })
271
272
 
@@ -40,7 +40,7 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_PIE_EVE
40
40
  layerIndex: LAYER_INDEX_OF_LABEL,
41
41
  validator: (params, { validateColumns }) => {
42
42
  const result = validateColumns(params, {
43
- eventFn: {
43
+ renderFn: {
44
44
  toBeTypes: ['Function'],
45
45
  },
46
46
  textAttrs: {
@@ -84,16 +84,16 @@ function renderText (
84
84
  return text
85
85
  }
86
86
 
87
- function makeTextData ({ eventData, eventName, t, eventFn, textAttrs, textStyles }: {
87
+ function createTextData ({ eventData, renderFn, textAttrs, textStyles }: {
88
88
  eventData: EventSeries,
89
- eventName: EventName,
90
- t: number,
91
- eventFn: (d: EventSeries, eventName: EventName, t: number) => string[]
89
+ // t: number,
90
+ renderFn: (d: EventSeries) => string[] | string
92
91
  textAttrs: Array<{ [key:string]: string | number }>
93
92
  textStyles: Array<{ [key:string]: string | number }>
94
93
  }): TextDatum[] {
95
- const callbackText = eventFn(eventData, eventName, t)
96
- return callbackText.map((d, i) => {
94
+ const callbackText = renderFn(eventData)
95
+ const textArr = Array.isArray(callbackText) ? callbackText : [callbackText]
96
+ return textArr.map((d, i) => {
97
97
  return {
98
98
  text: d,
99
99
  attr: textAttrs[i],
@@ -159,12 +159,13 @@ function createEachPieEventTexts (pluginName: string, context: {
159
159
  // .ease(getD3TransitionEase(data.fullChartParams.transitionEase!))
160
160
  .tween('move', (event, datum) => {
161
161
  return (t) => {
162
- const renderData = makeTextData({
162
+ const renderData = createTextData({
163
163
  eventData: {
164
164
  type: 'series',
165
165
  pluginName,
166
166
  eventName: 'transitionMove',
167
167
  event,
168
+ tween: t,
168
169
  highlightTarget: data.highlightTarget,
169
170
  data: data.computedData,
170
171
  series: [],
@@ -172,9 +173,9 @@ function createEachPieEventTexts (pluginName: string, context: {
172
173
  seriesLabel: '',
173
174
  datum: null
174
175
  },
175
- eventName: 'transitionMove',
176
- t,
177
- eventFn: data.fullParams.eventFn!,
176
+ // eventName: 'transitionMove',
177
+ // t,
178
+ renderFn: data.fullParams.renderFn!,
178
179
  textAttrs: data.fullParams.textAttrs!,
179
180
  textStyles: data.fullParams.textStyles!
180
181
  })
@@ -182,12 +183,13 @@ function createEachPieEventTexts (pluginName: string, context: {
182
183
  }
183
184
  })
184
185
  .on('end', (event, datum) => {
185
- const renderData = makeTextData({
186
+ const renderData = createTextData({
186
187
  eventData: {
187
188
  type: 'series',
188
189
  pluginName,
189
190
  eventName: 'transitionEnd',
190
191
  event,
192
+ tween: 1,
191
193
  highlightTarget: data.highlightTarget,
192
194
  data: data.computedData,
193
195
  series: [],
@@ -195,9 +197,9 @@ function createEachPieEventTexts (pluginName: string, context: {
195
197
  seriesLabel: '',
196
198
  datum: null
197
199
  },
198
- eventName: 'transitionMove',
199
- t: 1,
200
- eventFn: data.fullParams.eventFn!,
200
+ // eventName: 'transitionMove',
201
+ // t: 1,
202
+ renderFn: data.fullParams.renderFn!,
201
203
  textAttrs: data.fullParams.textAttrs!,
202
204
  textStyles: data.fullParams.textStyles!
203
205
  })
@@ -208,11 +210,10 @@ function createEachPieEventTexts (pluginName: string, context: {
208
210
  }
209
211
  storeEventSubscription = context.event$
210
212
  .subscribe(eventData => {
211
- const renderData = makeTextData({
213
+ const renderData = createTextData({
212
214
  eventData,
213
- eventName: eventData.eventName,
214
- t: 1,
215
- eventFn: data.fullParams.eventFn!,
215
+ // t: 1,
216
+ renderFn: data.fullParams.renderFn!,
216
217
  textAttrs: data.fullParams.textAttrs!,
217
218
  textStyles: data.fullParams.textStyles!
218
219
  })
@@ -12,7 +12,7 @@ DEFAULT_TREE_MAP_PARAMS.sort.toString = () => `(a, b) => b.value - a.value`
12
12
  export const DEFAULT_TREE_LEGEND_PARAMS: TreeLegendParams = {
13
13
  // position: 'right',
14
14
  // justify: 'end',
15
- placement: 'bottom',
15
+ placement: 'right-end',
16
16
  padding: 28,
17
17
  backgroundFill: 'none',
18
18
  backgroundStroke: 'none',
@@ -6,17 +6,17 @@ export function measureTextWidth (text: string, size: number = 10) {
6
6
  }
7
7
 
8
8
  // 取得最小及最大值 - 數字陣列
9
- export function getMinAndMax (data: number[]): [number, number] {
10
- const defaultMinAndMax: [number, number] = [0, 0] // default
9
+ export function getMinMax (data: number[]): [number, number] {
10
+ const defaultMinMax: [number, number] = [0, 0] // default
11
11
  if (!data.length) {
12
- return defaultMinAndMax
12
+ return defaultMinMax
13
13
  }
14
- const minAndMax: [number, number] = data.reduce((prev, current) => {
14
+ const minMax: [number, number] = data.reduce((prev, current) => {
15
15
  // [min, max]
16
16
  return [
17
17
  current < prev[0] ? current : prev[0],
18
18
  current > prev[1] ? current : prev[1]
19
19
  ]
20
20
  }, [data[0], data[0]])
21
- return minAndMax
21
+ return minMax
22
22
  }
@@ -56,7 +56,7 @@ export function makeD3Arc ({ axisWidth, innerRadius, outerRadius, padAngle, corn
56
56
  .cornerRadius(cornerRadius)
57
57
  }
58
58
 
59
- export const parseTickFormatValue = (value: any, tickFormat: string | ((text: d3.NumberValue) => string)) => {
59
+ export const parseTickFormatValue = (value: any, tickFormat: string | ((text: d3.NumberValue) => string | d3.NumberValue)) => {
60
60
  if (tickFormat! instanceof Function == true) {
61
61
  const v = (tickFormat as ((text: d3.NumberValue) => string))(value)
62
62
  return String(v ?? '')
@@ -64,7 +64,7 @@ export const parseTickFormatValue = (value: any, tickFormat: string | ((text: d3
64
64
  return d3.format(tickFormat as string)!(value)
65
65
  }
66
66
 
67
- export const parseDateTickFormatValue = (value: any, tickFormat: string | ((text: d3.NumberValue) => string)) => {
67
+ export const parseDateTickFormatValue = (value: any, tickFormat: string | ((text: d3.NumberValue) => string | d3.NumberValue)) => {
68
68
  if (tickFormat! instanceof Function == true) {
69
69
  return (tickFormat as ((text: d3.NumberValue) => string))(value)
70
70
  }
@@ -6,22 +6,22 @@ import type {
6
6
  ComputedDatumBaseValue,
7
7
  ComputedDatumBaseSeries,
8
8
  ComputedDatumBaseCategory } from '../../lib/core-types'
9
- import { getMinAndMax } from './commonUtils'
9
+ import { getMinMax } from './commonUtils'
10
10
 
11
11
  // 取得最小及最大值 - datum格式陣列資料
12
- export function getMinAndMaxValue (data: (ComputedDatumBase & ComputedDatumBaseValue)[]): [number, number] {
12
+ export function getMinMaxValue (data: (ComputedDatumBase & ComputedDatumBaseValue)[]): [number, number] {
13
13
  const arr = data
14
14
  .filter(d => d.value != null && d.visible != false)
15
15
  .map(d => d.value as number)
16
- return getMinAndMax(arr)
16
+ return getMinMax(arr)
17
17
  }
18
18
 
19
19
  // 取得colorType顏色
20
20
  export function getColor (colorType: ColorType, fullChartParams: ChartParams) {
21
21
  const colors = fullChartParams.colors[fullChartParams.colorScheme]
22
22
  // 對應series資料中第1個顏色
23
- if (colorType === 'series') {
24
- return colors.series[0]
23
+ if (colorType === 'label') {
24
+ return colors.label[0]
25
25
  }
26
26
  // 對應colorType設定的顏色
27
27
  // return colors[colorType] != null
@@ -53,12 +53,12 @@ export function getCategoryValueColor ({ datum, colorType, fullChartParams }: {
53
53
  // 取得Datum顏色 @Q@ 待重構完後刪除
54
54
  export function getDatumColor ({ datum, colorType, fullChartParams }: { datum: ComputedDatumBase, colorType: ColorType, fullChartParams: ChartParams }) {
55
55
  // 對應series資料中的顏色
56
- if (colorType === 'series') {
56
+ if (colorType === 'label') {
57
57
  if ((datum as unknown as ComputedDatumBaseSeries).color) {
58
58
  return (datum as unknown as ComputedDatumBaseSeries).color
59
59
  } else {
60
60
  // 非series類型的資料則回傳陣列中第1個顏色
61
- return fullChartParams.colors[fullChartParams.colorScheme].series[0]
61
+ return fullChartParams.colors[fullChartParams.colorScheme].label[0]
62
62
  }
63
63
  }
64
64
  // 對應colorType設定的顏色
@@ -99,3 +99,18 @@ export function calcAxesSize ({ xAxisPosition, yAxisPosition, width, height }: {
99
99
  }
100
100
  }
101
101
 
102
+ // export function getTicks (minValue: number, maxValue: number, defaultTicks: number | null) {
103
+ // let valueLength = maxValue - minValue
104
+ // if (defaultTicks === null) {
105
+ // if (valueLength <= 1) {
106
+ // return 1
107
+ // } else {
108
+ // // d3.js自動判斷
109
+ // return null
110
+ // }
111
+ // } else if (valueLength < defaultTicks) {
112
+ // return Math.ceil(valueLength)
113
+ // } else {
114
+ // return defaultTicks
115
+ // }
116
+ // }
@@ -1 +0,0 @@
1
- export declare const BarStack: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarStack", import('@orbcharts/plugins-basic-types').BarStackParams>;
@@ -1 +0,0 @@
1
- export declare const ValueStackAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ValueStackAxis", import('@orbcharts/plugins-basic-types').ValueStackAxisParams>;
@@ -1 +0,0 @@
1
- export declare const MultiBarStack: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBarStack", import('@orbcharts/plugins-basic-types').MultiBarStackParams>;
@@ -1 +0,0 @@
1
- export declare const MultiValueStackAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiValueStackAxis", import('@orbcharts/plugins-basic-types').MultiValueAxisParams>;
@@ -1 +0,0 @@
1
- export declare const OverlappingValueStackAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "OverlappingValueStackAxes", import('@orbcharts/plugins-basic-types').OverlappingValueStackAxesParams>;