@orbcharts/presets-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/LICENSE +200 -200
  2. package/dist/orbcharts-presets-basic.es.js +143 -53
  3. package/dist/orbcharts-presets-basic.umd.js +1 -1
  4. package/dist/src/params.d.ts +2 -1
  5. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.d.ts +4 -0
  6. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.d.ts +4 -0
  7. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.d.ts +4 -0
  8. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.d.ts +4 -0
  9. package/dist/src/relationship/index.d.ts +4 -0
  10. package/dist/src/types.d.ts +5 -2
  11. package/lib/core-types.ts +7 -7
  12. package/lib/plugins-basic-types.ts +6 -6
  13. package/package.json +42 -42
  14. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +56 -56
  15. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +52 -52
  16. package/src/grid/PRESET_BARS_ROUND.ts +39 -39
  17. package/src/grid/PRESET_BARS_THIN.ts +36 -36
  18. package/src/grid/PRESET_GRID_BASIC.ts +27 -27
  19. package/src/grid/PRESET_GRID_HORIZONTAL.ts +44 -44
  20. package/src/grid/PRESET_GRID_PN_SCALE.ts +35 -35
  21. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +35 -35
  22. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +40 -40
  23. package/src/grid/PRESET_LINES_BASIC.ts +35 -35
  24. package/src/grid/PRESET_LINES_CURVE.ts +38 -38
  25. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +37 -37
  26. package/src/grid/PRESET_LINES_HORIZONTAL.ts +51 -51
  27. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +37 -37
  28. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +40 -40
  29. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +39 -39
  30. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +43 -43
  31. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +48 -48
  32. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +47 -47
  33. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +47 -47
  34. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +45 -45
  35. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +48 -48
  36. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +50 -50
  37. package/src/grid/index.ts +22 -22
  38. package/src/index.ts +6 -6
  39. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +38 -38
  40. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +86 -86
  41. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +58 -58
  42. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +60 -60
  43. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +86 -86
  44. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +104 -104
  45. package/src/multiGrid/index.ts +6 -6
  46. package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +23 -23
  47. package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +26 -26
  48. package/src/multiValue/PRESET_SCATTER_BUBBLES_LINEAR_OPACITY.ts +26 -26
  49. package/src/multiValue/PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS.ts +26 -26
  50. package/src/multiValue/index.ts +3 -3
  51. package/src/params.ts +80 -71
  52. package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +23 -23
  53. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.ts +23 -0
  54. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.ts +28 -0
  55. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.ts +30 -0
  56. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.ts +25 -0
  57. package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +30 -30
  58. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +28 -28
  59. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +25 -25
  60. package/src/relationship/index.ts +7 -3
  61. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +18 -18
  62. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +29 -29
  63. package/src/series/PRESET_PIE_BASIC.ts +18 -18
  64. package/src/series/PRESET_PIE_DONUT.ts +23 -23
  65. package/src/series/PRESET_PIE_HALF_DONUT.ts +36 -36
  66. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +24 -24
  67. package/src/series/PRESET_ROSE_BASIC.ts +19 -19
  68. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +24 -24
  69. package/src/series/PRESET_SERIES_BASIC.ts +16 -16
  70. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +17 -17
  71. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +18 -18
  72. package/src/series/PRESET_SERIES_SUM_SERIES.ts +18 -18
  73. package/src/series/index.ts +13 -13
  74. package/src/tree/PRESET_TREE_MAP_BASIC.ts +27 -27
  75. package/src/types.ts +349 -343
  76. package/tsconfig.base.json +13 -13
  77. package/tsconfig.json +2 -2
  78. package/vite.config.js +22 -22
@@ -1,86 +1,86 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type {
3
- PresetMultiGridPluginParams,
4
- PresetNoneDataPluginParams
5
- } from '../types'
6
- import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
-
8
- export const PRESET_MULTI_LINES_SEPARATE_GRID: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
- & Partial<PresetNoneDataPluginParams>> = {
10
- name: 'PRESET_MULTI_LINES_SEPARATE_GRID',
11
- description: '多組分開折線圖表',
12
- chartParams: {
13
- padding: {
14
- top: 60,
15
- right: 60,
16
- bottom: 160,
17
- left: 60
18
- },
19
- },
20
- dataFormatter: {
21
- separateGrid: true,
22
- },
23
- allPluginParams: {
24
- ...ALL_PLUGIN_PARAMS_NONE_DATA,
25
- MultiGroupAxis: {
26
- tickTextRotate: -30,
27
- gridIndexes: 'all'
28
- },
29
- MultiValueAxis: {
30
- gridIndexes: 'all'
31
- },
32
- MultiStackedValueAxis: {
33
- gridIndexes: 'all'
34
- },
35
- MultiBars: {
36
- gridIndexes: 'all'
37
- },
38
- MultiStackedBar: {
39
- gridIndexes: 'all'
40
- },
41
- MultiBarsTriangle: {
42
- gridIndexes: 'all'
43
- },
44
- MultiLines: {
45
- gridIndexes: 'all'
46
- },
47
- MultiLineAreas: {
48
- gridIndexes: 'all'
49
- },
50
- MultiDots: {
51
- gridIndexes: 'all'
52
- },
53
- MultiGridLegend: {
54
- // position: 'bottom',
55
- // justify: 'center',
56
- placement: 'bottom',
57
- padding: 14,
58
- gridList: [
59
- {
60
- listRectHeight: 2,
61
- },
62
- {
63
- listRectHeight: 2,
64
- },
65
- {
66
- listRectHeight: 2,
67
- },
68
- {
69
- listRectHeight: 2,
70
- },
71
- {
72
- listRectHeight: 2,
73
- },
74
- {
75
- listRectHeight: 2,
76
- },
77
- {
78
- listRectHeight: 2,
79
- },
80
- {
81
- listRectHeight: 2,
82
- }
83
- ]
84
- }
85
- }
86
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type {
3
+ PresetMultiGridPluginParams,
4
+ PresetNoneDataPluginParams
5
+ } from '../types'
6
+ import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
+
8
+ export const PRESET_MULTI_LINES_SEPARATE_GRID: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
+ & Partial<PresetNoneDataPluginParams>> = {
10
+ name: 'PRESET_MULTI_LINES_SEPARATE_GRID',
11
+ description: '多組分開折線圖表',
12
+ chartParams: {
13
+ padding: {
14
+ top: 60,
15
+ right: 60,
16
+ bottom: 160,
17
+ left: 60
18
+ },
19
+ },
20
+ dataFormatter: {
21
+ separateGrid: true,
22
+ },
23
+ allPluginParams: {
24
+ ...ALL_PLUGIN_PARAMS_NONE_DATA,
25
+ MultiGroupAxis: {
26
+ tickTextRotate: -30,
27
+ gridIndexes: 'all'
28
+ },
29
+ MultiValueAxis: {
30
+ gridIndexes: 'all'
31
+ },
32
+ MultiStackedValueAxis: {
33
+ gridIndexes: 'all'
34
+ },
35
+ MultiBars: {
36
+ gridIndexes: 'all'
37
+ },
38
+ MultiStackedBar: {
39
+ gridIndexes: 'all'
40
+ },
41
+ MultiBarsTriangle: {
42
+ gridIndexes: 'all'
43
+ },
44
+ MultiLines: {
45
+ gridIndexes: 'all'
46
+ },
47
+ MultiLineAreas: {
48
+ gridIndexes: 'all'
49
+ },
50
+ MultiDots: {
51
+ gridIndexes: 'all'
52
+ },
53
+ MultiGridLegend: {
54
+ // position: 'bottom',
55
+ // justify: 'center',
56
+ placement: 'bottom',
57
+ padding: 14,
58
+ gridList: [
59
+ {
60
+ listRectHeight: 2,
61
+ },
62
+ {
63
+ listRectHeight: 2,
64
+ },
65
+ {
66
+ listRectHeight: 2,
67
+ },
68
+ {
69
+ listRectHeight: 2,
70
+ },
71
+ {
72
+ listRectHeight: 2,
73
+ },
74
+ {
75
+ listRectHeight: 2,
76
+ },
77
+ {
78
+ listRectHeight: 2,
79
+ },
80
+ {
81
+ listRectHeight: 2,
82
+ }
83
+ ]
84
+ }
85
+ }
86
+ }
@@ -1,104 +1,104 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type {
3
- PresetMultiGridPluginParams,
4
- PresetNoneDataPluginParams
5
- } from '../types'
6
- import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
-
8
- export const PRESET_MULTI_LINE_AREAS_SEPARATE_GRID: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
- & Partial<PresetNoneDataPluginParams>> = {
10
- name: 'PRESET_MULTI_LINE_AREAS_SEPARATE_GRID',
11
- description: '2組區域圖表',
12
- chartParams: {
13
- padding: {
14
- top: 60,
15
- right: 60,
16
- bottom: 160,
17
- left: 60
18
- },
19
- },
20
- dataFormatter: {
21
- gridList: [
22
- {
23
- // slotIndex: 0
24
- groupAxis: {
25
- scalePadding: 0
26
- }
27
- },
28
- {
29
- // slotIndex: 1,
30
- groupAxis: {
31
- scalePadding: 0
32
- }
33
- }
34
- ],
35
- separateGrid: true,
36
- // container: {
37
- // rowAmount: 1,
38
- // columnAmount: 2,
39
- // }
40
- },
41
- allPluginParams: {
42
- ...ALL_PLUGIN_PARAMS_NONE_DATA,
43
- MultiGroupAxis: {
44
- tickTextRotate: -30,
45
- gridIndexes: 'all'
46
- },
47
- MultiValueAxis: {
48
- gridIndexes: 'all'
49
- },
50
- MultiStackedValueAxis: {
51
- gridIndexes: 'all'
52
- },
53
- MultiBars: {
54
- gridIndexes: 'all'
55
- },
56
- MultiStackedBar: {
57
- gridIndexes: 'all'
58
- },
59
- MultiBarsTriangle: {
60
- gridIndexes: 'all'
61
- },
62
- MultiLines: {
63
- gridIndexes: 'all'
64
- },
65
- MultiLineAreas: {
66
- gridIndexes: 'all'
67
- },
68
- MultiDots: {
69
- gridIndexes: 'all'
70
- },
71
- MultiGridLegend: {
72
- // position: 'bottom',
73
- // justify: 'center',
74
- placement: 'bottom',
75
- padding: 14,
76
- gridList: [
77
- {
78
- listRectHeight: 2,
79
- },
80
- {
81
- listRectHeight: 2,
82
- },
83
- {
84
- listRectHeight: 2,
85
- },
86
- {
87
- listRectHeight: 2,
88
- },
89
- {
90
- listRectHeight: 2,
91
- },
92
- {
93
- listRectHeight: 2,
94
- },
95
- {
96
- listRectHeight: 2,
97
- },
98
- {
99
- listRectHeight: 2,
100
- }
101
- ]
102
- }
103
- }
104
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type {
3
+ PresetMultiGridPluginParams,
4
+ PresetNoneDataPluginParams
5
+ } from '../types'
6
+ import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
+
8
+ export const PRESET_MULTI_LINE_AREAS_SEPARATE_GRID: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
+ & Partial<PresetNoneDataPluginParams>> = {
10
+ name: 'PRESET_MULTI_LINE_AREAS_SEPARATE_GRID',
11
+ description: '2組區域圖表',
12
+ chartParams: {
13
+ padding: {
14
+ top: 60,
15
+ right: 60,
16
+ bottom: 160,
17
+ left: 60
18
+ },
19
+ },
20
+ dataFormatter: {
21
+ gridList: [
22
+ {
23
+ // slotIndex: 0
24
+ groupAxis: {
25
+ scalePadding: 0
26
+ }
27
+ },
28
+ {
29
+ // slotIndex: 1,
30
+ groupAxis: {
31
+ scalePadding: 0
32
+ }
33
+ }
34
+ ],
35
+ separateGrid: true,
36
+ // container: {
37
+ // rowAmount: 1,
38
+ // columnAmount: 2,
39
+ // }
40
+ },
41
+ allPluginParams: {
42
+ ...ALL_PLUGIN_PARAMS_NONE_DATA,
43
+ MultiGroupAxis: {
44
+ tickTextRotate: -30,
45
+ gridIndexes: 'all'
46
+ },
47
+ MultiValueAxis: {
48
+ gridIndexes: 'all'
49
+ },
50
+ MultiStackedValueAxis: {
51
+ gridIndexes: 'all'
52
+ },
53
+ MultiBars: {
54
+ gridIndexes: 'all'
55
+ },
56
+ MultiStackedBar: {
57
+ gridIndexes: 'all'
58
+ },
59
+ MultiBarsTriangle: {
60
+ gridIndexes: 'all'
61
+ },
62
+ MultiLines: {
63
+ gridIndexes: 'all'
64
+ },
65
+ MultiLineAreas: {
66
+ gridIndexes: 'all'
67
+ },
68
+ MultiDots: {
69
+ gridIndexes: 'all'
70
+ },
71
+ MultiGridLegend: {
72
+ // position: 'bottom',
73
+ // justify: 'center',
74
+ placement: 'bottom',
75
+ padding: 14,
76
+ gridList: [
77
+ {
78
+ listRectHeight: 2,
79
+ },
80
+ {
81
+ listRectHeight: 2,
82
+ },
83
+ {
84
+ listRectHeight: 2,
85
+ },
86
+ {
87
+ listRectHeight: 2,
88
+ },
89
+ {
90
+ listRectHeight: 2,
91
+ },
92
+ {
93
+ listRectHeight: 2,
94
+ },
95
+ {
96
+ listRectHeight: 2,
97
+ },
98
+ {
99
+ listRectHeight: 2,
100
+ }
101
+ ]
102
+ }
103
+ }
104
+ }
@@ -1,6 +1,6 @@
1
- export { PRESET_MULTI_GRID_BASIC } from './PRESET_MULTI_GRID_BASIC'
2
- export { PRESET_MULTI_GRID_DIVERGING } from './PRESET_MULTI_GRID_DIVERGING'
3
- export { PRESET_MULTI_GRID_ROUND_STYLE } from './PRESET_MULTI_GRID_ROUND_STYLE'
4
- export { PRESET_MULTI_GRID_SEPARATE_GRID } from './PRESET_MULTI_GRID_SEPARATE_GRID'
5
- export { PRESET_MULTI_LINE_AREAS_SEPARATE_GRID } from './PRESET_MULTI_LINE_AREAS_SEPARATE_GRID'
6
- export { PRESET_MULTI_LINES_SEPARATE_GRID } from './PRESET_MULTI_LINES_SEPARATE_GRID'
1
+ export { PRESET_MULTI_GRID_BASIC } from './PRESET_MULTI_GRID_BASIC'
2
+ export { PRESET_MULTI_GRID_DIVERGING } from './PRESET_MULTI_GRID_DIVERGING'
3
+ export { PRESET_MULTI_GRID_ROUND_STYLE } from './PRESET_MULTI_GRID_ROUND_STYLE'
4
+ export { PRESET_MULTI_GRID_SEPARATE_GRID } from './PRESET_MULTI_GRID_SEPARATE_GRID'
5
+ export { PRESET_MULTI_LINE_AREAS_SEPARATE_GRID } from './PRESET_MULTI_LINE_AREAS_SEPARATE_GRID'
6
+ export { PRESET_MULTI_LINES_SEPARATE_GRID } from './PRESET_MULTI_LINES_SEPARATE_GRID'
@@ -1,23 +1,23 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_MULTI_VALUE_BASIC: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_MULTI_VALUE_BASIC',
8
- description: '基本MultiValue參數',
9
- chartParams: {
10
- padding: {
11
- top: 60,
12
- right: 60,
13
- bottom: 120,
14
- left: 60
15
- },
16
- },
17
- allPluginParams: {
18
- MultiValueLegend: {
19
- placement: 'bottom',
20
- padding: 14,
21
- }
22
- }
23
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_MULTI_VALUE_BASIC: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_MULTI_VALUE_BASIC',
8
+ description: '基本MultiValue參數',
9
+ chartParams: {
10
+ padding: {
11
+ top: 60,
12
+ right: 60,
13
+ bottom: 120,
14
+ left: 60
15
+ },
16
+ },
17
+ allPluginParams: {
18
+ MultiValueLegend: {
19
+ placement: 'bottom',
20
+ padding: 14,
21
+ }
22
+ }
23
+ }
@@ -1,26 +1,26 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_MULTI_VALUE_SEPARATE_CATEGORY: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_MULTI_VALUE_SEPARATE_CATEGORY',
8
- description: 'MultiValue 分開顯示category',
9
- chartParams: {
10
- padding: {
11
- top: 60,
12
- right: 60,
13
- bottom: 120,
14
- left: 60
15
- },
16
- },
17
- dataFormatter: {
18
- separateCategory: true
19
- },
20
- allPluginParams: {
21
- MultiValueLegend: {
22
- placement: 'bottom',
23
- padding: 14,
24
- }
25
- }
26
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_MULTI_VALUE_SEPARATE_CATEGORY: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_MULTI_VALUE_SEPARATE_CATEGORY',
8
+ description: 'MultiValue 分開顯示category',
9
+ chartParams: {
10
+ padding: {
11
+ top: 60,
12
+ right: 60,
13
+ bottom: 120,
14
+ left: 60
15
+ },
16
+ },
17
+ dataFormatter: {
18
+ separateCategory: true
19
+ },
20
+ allPluginParams: {
21
+ MultiValueLegend: {
22
+ placement: 'bottom',
23
+ padding: 14,
24
+ }
25
+ }
26
+ }
@@ -1,26 +1,26 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_SCATTER_BUBBLES_LINEAR_OPACITY: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_SCATTER_BUBBLES_LINEAR_OPACITY',
8
- description: 'ScatterBubbles漸變透明度',
9
- chartParams: {
10
- padding: {
11
- top: 60,
12
- right: 60,
13
- bottom: 120,
14
- left: 60
15
- },
16
- },
17
- allPluginParams: {
18
- MultiValueLegend: {
19
- placement: 'bottom',
20
- padding: 14,
21
- },
22
- ScatterBubbles: {
23
- valueLinearOpacity: [0.6, 0.95]
24
- }
25
- }
26
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_SCATTER_BUBBLES_LINEAR_OPACITY: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_SCATTER_BUBBLES_LINEAR_OPACITY',
8
+ description: 'ScatterBubbles漸變透明度',
9
+ chartParams: {
10
+ padding: {
11
+ top: 60,
12
+ right: 60,
13
+ bottom: 120,
14
+ left: 60
15
+ },
16
+ },
17
+ allPluginParams: {
18
+ MultiValueLegend: {
19
+ placement: 'bottom',
20
+ padding: 14,
21
+ },
22
+ ScatterBubbles: {
23
+ valueLinearOpacity: [0.6, 0.95]
24
+ }
25
+ }
26
+ }
@@ -1,26 +1,26 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS',
8
- description: 'ScatterBubbles以半徑尺寸為比例',
9
- chartParams: {
10
- padding: {
11
- top: 60,
12
- right: 60,
13
- bottom: 120,
14
- left: 60
15
- },
16
- },
17
- allPluginParams: {
18
- MultiValueLegend: {
19
- placement: 'bottom',
20
- padding: 14,
21
- },
22
- ScatterBubbles: {
23
- arcScaleType: 'radius'
24
- }
25
- }
26
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS',
8
+ description: 'ScatterBubbles以半徑尺寸為比例',
9
+ chartParams: {
10
+ padding: {
11
+ top: 60,
12
+ right: 60,
13
+ bottom: 120,
14
+ left: 60
15
+ },
16
+ },
17
+ allPluginParams: {
18
+ MultiValueLegend: {
19
+ placement: 'bottom',
20
+ padding: 14,
21
+ },
22
+ ScatterBubbles: {
23
+ arcScaleType: 'radius'
24
+ }
25
+ }
26
+ }
@@ -1,4 +1,4 @@
1
- export { PRESET_MULTI_VALUE_BASIC } from './PRESET_MULTI_VALUE_BASIC'
2
- export { PRESET_MULTI_VALUE_SEPARATE_CATEGORY } from './PRESET_MULTI_VALUE_SEPARATE_CATEGORY'
3
- export { PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS } from './PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS'
1
+ export { PRESET_MULTI_VALUE_BASIC } from './PRESET_MULTI_VALUE_BASIC'
2
+ export { PRESET_MULTI_VALUE_SEPARATE_CATEGORY } from './PRESET_MULTI_VALUE_SEPARATE_CATEGORY'
3
+ export { PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS } from './PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS'
4
4
  export { PRESET_SCATTER_BUBBLES_LINEAR_OPACITY } from './PRESET_SCATTER_BUBBLES_LINEAR_OPACITY'