@orbcharts/plugins-basic 3.0.0-alpha.75 → 3.0.0-alpha.76

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 (81) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +3461 -3468
  3. package/dist/orbcharts-plugins-basic.umd.js +17 -17
  4. package/lib/core-types.ts +7 -7
  5. package/lib/core.ts +6 -6
  6. package/package.json +43 -43
  7. package/src/base/BaseBarStack.ts +779 -779
  8. package/src/base/BaseBars.ts +764 -764
  9. package/src/base/BaseBarsTriangle.ts +672 -672
  10. package/src/base/BaseDots.ts +513 -513
  11. package/src/base/BaseGroupAxis.ts +678 -678
  12. package/src/base/BaseLegend.ts +642 -642
  13. package/src/base/BaseLineAreas.ts +627 -627
  14. package/src/base/BaseLines.ts +704 -704
  15. package/src/base/BaseValueAxis.ts +578 -578
  16. package/src/base/types.ts +2 -2
  17. package/src/const.ts +30 -30
  18. package/src/grid/defaults.ts +128 -128
  19. package/src/grid/gridObservables.ts +545 -545
  20. package/src/grid/index.ts +15 -15
  21. package/src/grid/plugins/BarStack.ts +64 -64
  22. package/src/grid/plugins/Bars.ts +69 -69
  23. package/src/grid/plugins/BarsPN.ts +66 -66
  24. package/src/grid/plugins/BarsTriangle.ts +73 -73
  25. package/src/grid/plugins/Dots.ts +68 -68
  26. package/src/grid/plugins/GridLegend.ts +96 -96
  27. package/src/grid/plugins/GroupAux.ts +1098 -1098
  28. package/src/grid/plugins/GroupAxis.ts +97 -97
  29. package/src/grid/plugins/LineAreas.ts +65 -65
  30. package/src/grid/plugins/Lines.ts +59 -59
  31. package/src/grid/plugins/ScalingArea.ts +218 -218
  32. package/src/grid/plugins/ValueAxis.ts +93 -93
  33. package/src/grid/plugins/ValueStackAxis.ts +95 -95
  34. package/src/grid/types.ts +123 -123
  35. package/src/index.ts +9 -9
  36. package/src/multiGrid/defaults.ts +158 -158
  37. package/src/multiGrid/index.ts +13 -13
  38. package/src/multiGrid/multiGridObservables.ts +49 -49
  39. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  40. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  41. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  42. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  43. package/src/multiGrid/plugins/MultiGridLegend.ts +148 -148
  44. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  45. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  46. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  47. package/src/multiGrid/plugins/MultiValueAxis.ts +133 -133
  48. package/src/multiGrid/plugins/MultiValueStackAxis.ts +133 -133
  49. package/src/multiGrid/plugins/OverlappingValueAxes.ts +299 -299
  50. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +298 -298
  51. package/src/multiGrid/types.ts +72 -72
  52. package/src/noneData/defaults.ts +102 -102
  53. package/src/noneData/index.ts +3 -3
  54. package/src/noneData/plugins/Container.ts +27 -27
  55. package/src/noneData/plugins/Tooltip.ts +373 -373
  56. package/src/noneData/types.ts +26 -26
  57. package/src/series/defaults.ts +149 -149
  58. package/src/series/index.ts +9 -9
  59. package/src/series/plugins/Bubbles.ts +603 -603
  60. package/src/series/plugins/Pie.ts +623 -623
  61. package/src/series/plugins/PieEventTexts.ts +283 -283
  62. package/src/series/plugins/PieLabels.ts +640 -640
  63. package/src/series/plugins/Rose.ts +516 -516
  64. package/src/series/plugins/RoseLabels.ts +600 -600
  65. package/src/series/plugins/SeriesLegend.ts +96 -96
  66. package/src/series/seriesObservables.ts +145 -145
  67. package/src/series/seriesUtils.ts +51 -51
  68. package/src/series/types.ts +87 -87
  69. package/src/tree/defaults.ts +23 -23
  70. package/src/tree/index.ts +3 -3
  71. package/src/tree/plugins/TreeLegend.ts +96 -96
  72. package/src/tree/plugins/TreeMap.ts +333 -333
  73. package/src/tree/types.ts +23 -23
  74. package/src/utils/commonUtils.ts +21 -21
  75. package/src/utils/d3Graphics.ts +174 -174
  76. package/src/utils/d3Utils.ts +73 -73
  77. package/src/utils/observables.ts +14 -14
  78. package/src/utils/orbchartsUtils.ts +100 -100
  79. package/tsconfig.base.json +13 -13
  80. package/tsconfig.json +2 -2
  81. package/vite.config.js +22 -22
@@ -1,96 +1,96 @@
1
- import {
2
- takeUntil,
3
- map,
4
- distinctUntilChanged,
5
- shareReplay,
6
- switchMap,
7
- iif,
8
- Observable,
9
- Subject } from 'rxjs'
10
- import type { DefinePluginConfig } from '../../../lib/core-types'
11
- import {
12
- defineGridPlugin } from '../../../lib/core'
13
- import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
14
- import { LAYER_INDEX_OF_AXIS } from '../../const'
15
- import { createBaseValueAxis } from '../../base/BaseValueAxis'
16
-
17
- const pluginName = 'ValueStackAxis'
18
-
19
- const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_VALUE_STACK_AXIS_PARAMS> = {
20
- name: pluginName,
21
- defaultParams: DEFAULT_VALUE_STACK_AXIS_PARAMS,
22
- layerIndex: LAYER_INDEX_OF_AXIS,
23
- validator: (params, { validateColumns }) => {
24
- const result = validateColumns(params, {
25
- labelOffset: {
26
- toBe: '[number, number]',
27
- test: (value: any) => {
28
- return Array.isArray(value)
29
- && value.length === 2
30
- && typeof value[0] === 'number'
31
- && typeof value[1] === 'number'
32
- }
33
- },
34
- labelColorType: {
35
- toBeOption: 'ColorType',
36
- },
37
- axisLineVisible: {
38
- toBeTypes: ['boolean']
39
- },
40
- axisLineColorType: {
41
- toBeOption: 'ColorType',
42
- },
43
- ticks: {
44
- toBeTypes: ['number', 'null']
45
- },
46
- tickFormat: {
47
- toBeTypes: ['string', 'Function']
48
- },
49
- tickLineVisible: {
50
- toBeTypes: ['boolean']
51
- },
52
- tickPadding: {
53
- toBeTypes: ['number']
54
- },
55
- tickFullLine: {
56
- toBeTypes: ['boolean']
57
- },
58
- tickFullLineDasharray: {
59
- toBeTypes: ['string']
60
- },
61
- tickColorType: {
62
- toBeOption: 'ColorType',
63
- },
64
- tickTextRotate: {
65
- toBeTypes: ['number']
66
- },
67
- tickTextColorType: {
68
- toBeOption: 'ColorType',
69
- }
70
- })
71
- return result
72
- }
73
- }
74
-
75
- export const ValueStackAxis = defineGridPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
76
-
77
- const destroy$ = new Subject()
78
-
79
- const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
80
- selection,
81
- computedData$: observer.computedStackedData$, // 計算疊加value的資料
82
- fullParams$: observer.fullParams$,
83
- fullDataFormatter$: observer.fullDataFormatter$,
84
- fullChartParams$: observer.fullChartParams$,
85
- gridAxesTransform$: observer.gridAxesTransform$,
86
- gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
87
- gridAxesSize$: observer.gridAxesSize$,
88
- gridContainerPosition$: observer.gridContainerPosition$,
89
- isSeriesSeprate$: observer.isSeriesSeprate$,
90
- })
91
-
92
- return () => {
93
- destroy$.next(undefined)
94
- unsubscribeBaseValueAxis()
95
- }
1
+ import {
2
+ takeUntil,
3
+ map,
4
+ distinctUntilChanged,
5
+ shareReplay,
6
+ switchMap,
7
+ iif,
8
+ Observable,
9
+ Subject } from 'rxjs'
10
+ import type { DefinePluginConfig } from '../../../lib/core-types'
11
+ import {
12
+ defineGridPlugin } from '../../../lib/core'
13
+ import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
14
+ import { LAYER_INDEX_OF_AXIS } from '../../const'
15
+ import { createBaseValueAxis } from '../../base/BaseValueAxis'
16
+
17
+ const pluginName = 'ValueStackAxis'
18
+
19
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_VALUE_STACK_AXIS_PARAMS> = {
20
+ name: pluginName,
21
+ defaultParams: DEFAULT_VALUE_STACK_AXIS_PARAMS,
22
+ layerIndex: LAYER_INDEX_OF_AXIS,
23
+ validator: (params, { validateColumns }) => {
24
+ const result = validateColumns(params, {
25
+ labelOffset: {
26
+ toBe: '[number, number]',
27
+ test: (value: any) => {
28
+ return Array.isArray(value)
29
+ && value.length === 2
30
+ && typeof value[0] === 'number'
31
+ && typeof value[1] === 'number'
32
+ }
33
+ },
34
+ labelColorType: {
35
+ toBeOption: 'ColorType',
36
+ },
37
+ axisLineVisible: {
38
+ toBeTypes: ['boolean']
39
+ },
40
+ axisLineColorType: {
41
+ toBeOption: 'ColorType',
42
+ },
43
+ ticks: {
44
+ toBeTypes: ['number', 'null']
45
+ },
46
+ tickFormat: {
47
+ toBeTypes: ['string', 'Function']
48
+ },
49
+ tickLineVisible: {
50
+ toBeTypes: ['boolean']
51
+ },
52
+ tickPadding: {
53
+ toBeTypes: ['number']
54
+ },
55
+ tickFullLine: {
56
+ toBeTypes: ['boolean']
57
+ },
58
+ tickFullLineDasharray: {
59
+ toBeTypes: ['string']
60
+ },
61
+ tickColorType: {
62
+ toBeOption: 'ColorType',
63
+ },
64
+ tickTextRotate: {
65
+ toBeTypes: ['number']
66
+ },
67
+ tickTextColorType: {
68
+ toBeOption: 'ColorType',
69
+ }
70
+ })
71
+ return result
72
+ }
73
+ }
74
+
75
+ export const ValueStackAxis = defineGridPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
76
+
77
+ const destroy$ = new Subject()
78
+
79
+ const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
80
+ selection,
81
+ computedData$: observer.computedStackedData$, // 計算疊加value的資料
82
+ fullParams$: observer.fullParams$,
83
+ fullDataFormatter$: observer.fullDataFormatter$,
84
+ fullChartParams$: observer.fullChartParams$,
85
+ gridAxesTransform$: observer.gridAxesTransform$,
86
+ gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
87
+ gridAxesSize$: observer.gridAxesSize$,
88
+ gridContainerPosition$: observer.gridContainerPosition$,
89
+ isSeriesSeprate$: observer.isSeriesSeprate$,
90
+ })
91
+
92
+ return () => {
93
+ destroy$.next(undefined)
94
+ unsubscribeBaseValueAxis()
95
+ }
96
96
  })
package/src/grid/types.ts CHANGED
@@ -1,124 +1,124 @@
1
- import type { ColorType } from '../../lib/core-types'
2
- // import type { BaseLegendParams } from '../base/BaseLegend'
3
-
4
- // export type LineType = 'line' | 'area' | 'gradientArea'
5
- // export type BarType = 'rect' | 'triangle'
6
-
7
- export interface LinesParams {
8
- lineCurve: string
9
- lineWidth: number
10
- // labelFn: (d: ComputedDatumSeries) => string
11
- // labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
12
- // labelStyleFn: (d: ComputedDatumSeries) => string
13
- // labelFontSizeFn: (d: ComputedDatumSeries) => number
14
- // labelColorFn: (d: ComputedDatumSeries) => string
15
- // labelPadding: number
16
- }
17
-
18
- export interface LineAreasParams {
19
- lineCurve: string
20
- linearGradientOpacity: [number, number]
21
- }
22
-
23
- export interface DotsParams {
24
- radius: number
25
- fillColorType: ColorType
26
- strokeColorType: ColorType
27
- strokeWidth: number
28
- // strokeWidthWhileHighlight: number
29
- onlyShowHighlighted: boolean
30
- }
31
-
32
- export interface GroupAuxParams {
33
- showLine: boolean
34
- showLabel: boolean
35
- lineDashArray: string
36
- lineColorType: ColorType
37
- labelColorType: ColorType
38
- labelTextColorType: ColorType
39
- labelTextFormat: string | ((text: any) => string)
40
- labelPadding: number
41
- labelRotate: number
42
- }
43
-
44
- export interface BarsParams {
45
- // barType: BarType
46
- barWidth: number
47
- barPadding: number
48
- barGroupPadding: number // 群組和群組間的間隔
49
- barRadius: number | boolean
50
- }
51
-
52
- export interface BarsPNParams extends BarsParams {}
53
-
54
- export interface BarStackParams {
55
- barWidth: number
56
- barGroupPadding: number
57
- barRadius: number | boolean
58
- }
59
-
60
- export interface BarsTriangleParams {
61
- barWidth: number
62
- barPadding: number
63
- barGroupPadding: number // 群組和群組間的間隔
64
- linearGradientOpacity: [number, number]
65
- }
66
-
67
- export interface GroupAxisParams {
68
- // xLabel: string
69
- // labelAnchor: 'start' | 'end'
70
- labelOffset: [number, number]
71
- labelColorType: ColorType
72
- axisLineVisible: boolean
73
- axisLineColorType: ColorType
74
- ticks: number | null | 'all'
75
- tickFormat: string | ((text: any) => string)
76
- tickLineVisible: boolean
77
- tickPadding: number
78
- tickFullLine: boolean
79
- tickFullLineDasharray: string
80
- tickColorType: ColorType
81
- // axisLineColor: string
82
- // axisLabelColor: string
83
- tickTextRotate: number
84
- tickTextColorType: ColorType
85
- }
86
-
87
- export interface ValueAxisParams {
88
- // xLabel: string
89
- // labelAnchor: 'start' | 'end'
90
- labelOffset: [number, number]
91
- labelColorType: ColorType
92
- axisLineVisible: boolean
93
- axisLineColorType: ColorType
94
- ticks: number | null
95
- tickFormat: string | ((text: d3.NumberValue) => string)
96
- tickLineVisible: boolean
97
- tickPadding: number
98
- tickFullLine: boolean
99
- tickFullLineDasharray: string
100
- tickColorType: ColorType
101
- // axisLineColor: string
102
- // axisLabelColor: string
103
- tickTextRotate: number
104
- tickTextColorType: ColorType
105
- }
106
-
107
- export interface ValueStackAxisParams extends ValueAxisParams {}
108
-
109
- export interface ScalingAreaParams {
110
-
111
- }
112
-
113
- export interface GridLegendParams {
114
- position: 'top' | 'bottom' | 'left' | 'right'
115
- justify: 'start' | 'center' | 'end'
116
- padding: number
117
- backgroundFill: ColorType
118
- backgroundStroke: ColorType
119
- gap: number
120
- listRectWidth: number
121
- listRectHeight: number
122
- listRectRadius: number
123
- textColorType: ColorType
1
+ import type { ColorType } from '../../lib/core-types'
2
+ // import type { BaseLegendParams } from '../base/BaseLegend'
3
+
4
+ // export type LineType = 'line' | 'area' | 'gradientArea'
5
+ // export type BarType = 'rect' | 'triangle'
6
+
7
+ export interface LinesParams {
8
+ lineCurve: string
9
+ lineWidth: number
10
+ // labelFn: (d: ComputedDatumSeries) => string
11
+ // labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
12
+ // labelStyleFn: (d: ComputedDatumSeries) => string
13
+ // labelFontSizeFn: (d: ComputedDatumSeries) => number
14
+ // labelColorFn: (d: ComputedDatumSeries) => string
15
+ // labelPadding: number
16
+ }
17
+
18
+ export interface LineAreasParams {
19
+ lineCurve: string
20
+ linearGradientOpacity: [number, number]
21
+ }
22
+
23
+ export interface DotsParams {
24
+ radius: number
25
+ fillColorType: ColorType
26
+ strokeColorType: ColorType
27
+ strokeWidth: number
28
+ // strokeWidthWhileHighlight: number
29
+ onlyShowHighlighted: boolean
30
+ }
31
+
32
+ export interface GroupAuxParams {
33
+ showLine: boolean
34
+ showLabel: boolean
35
+ lineDashArray: string
36
+ lineColorType: ColorType
37
+ labelColorType: ColorType
38
+ labelTextColorType: ColorType
39
+ labelTextFormat: string | ((text: any) => string)
40
+ labelPadding: number
41
+ labelRotate: number
42
+ }
43
+
44
+ export interface BarsParams {
45
+ // barType: BarType
46
+ barWidth: number
47
+ barPadding: number
48
+ barGroupPadding: number // 群組和群組間的間隔
49
+ barRadius: number | boolean
50
+ }
51
+
52
+ export interface BarsPNParams extends BarsParams {}
53
+
54
+ export interface BarStackParams {
55
+ barWidth: number
56
+ barGroupPadding: number
57
+ barRadius: number | boolean
58
+ }
59
+
60
+ export interface BarsTriangleParams {
61
+ barWidth: number
62
+ barPadding: number
63
+ barGroupPadding: number // 群組和群組間的間隔
64
+ linearGradientOpacity: [number, number]
65
+ }
66
+
67
+ export interface GroupAxisParams {
68
+ // xLabel: string
69
+ // labelAnchor: 'start' | 'end'
70
+ labelOffset: [number, number]
71
+ labelColorType: ColorType
72
+ axisLineVisible: boolean
73
+ axisLineColorType: ColorType
74
+ ticks: number | null | 'all'
75
+ tickFormat: string | ((text: any) => string)
76
+ tickLineVisible: boolean
77
+ tickPadding: number
78
+ tickFullLine: boolean
79
+ tickFullLineDasharray: string
80
+ tickColorType: ColorType
81
+ // axisLineColor: string
82
+ // axisLabelColor: string
83
+ tickTextRotate: number
84
+ tickTextColorType: ColorType
85
+ }
86
+
87
+ export interface ValueAxisParams {
88
+ // xLabel: string
89
+ // labelAnchor: 'start' | 'end'
90
+ labelOffset: [number, number]
91
+ labelColorType: ColorType
92
+ axisLineVisible: boolean
93
+ axisLineColorType: ColorType
94
+ ticks: number | null
95
+ tickFormat: string | ((text: d3.NumberValue) => string)
96
+ tickLineVisible: boolean
97
+ tickPadding: number
98
+ tickFullLine: boolean
99
+ tickFullLineDasharray: string
100
+ tickColorType: ColorType
101
+ // axisLineColor: string
102
+ // axisLabelColor: string
103
+ tickTextRotate: number
104
+ tickTextColorType: ColorType
105
+ }
106
+
107
+ export interface ValueStackAxisParams extends ValueAxisParams {}
108
+
109
+ export interface ScalingAreaParams {
110
+
111
+ }
112
+
113
+ export interface GridLegendParams {
114
+ position: 'top' | 'bottom' | 'left' | 'right'
115
+ justify: 'start' | 'center' | 'end'
116
+ padding: number
117
+ backgroundFill: ColorType
118
+ backgroundStroke: ColorType
119
+ gap: number
120
+ listRectWidth: number
121
+ listRectHeight: number
122
+ listRectRadius: number
123
+ textColorType: ColorType
124
124
  }
package/src/index.ts CHANGED
@@ -1,10 +1,10 @@
1
- // export { default as container } from './noneDataPlugins/container'
2
- // export { default as pie } from './seriesPlugins/pie'
3
- // export { default as pieEventTexts } from './seriesPlugins/pieEventTexts'
4
- // export { default as pieLabels } from './seriesPlugins/pieLabels'
5
-
6
- export * from './grid'
7
- export * from './multiGrid'
8
- export * from './noneData'
9
- export * from './series'
1
+ // export { default as container } from './noneDataPlugins/container'
2
+ // export { default as pie } from './seriesPlugins/pie'
3
+ // export { default as pieEventTexts } from './seriesPlugins/pieEventTexts'
4
+ // export { default as pieLabels } from './seriesPlugins/pieLabels'
5
+
6
+ export * from './grid'
7
+ export * from './multiGrid'
8
+ export * from './noneData'
9
+ export * from './series'
10
10
  export * from './tree'