@orbcharts/presets-basic 3.0.0-beta.2 → 3.0.0-beta.3

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 (55) hide show
  1. package/LICENSE +200 -200
  2. package/lib/core-types.ts +7 -7
  3. package/lib/plugins-basic-types.ts +6 -6
  4. package/package.json +42 -42
  5. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +56 -56
  6. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +52 -52
  7. package/src/grid/PRESET_BARS_ROUND.ts +39 -39
  8. package/src/grid/PRESET_BARS_THIN.ts +36 -36
  9. package/src/grid/PRESET_GRID_BASIC.ts +27 -27
  10. package/src/grid/PRESET_GRID_HORIZONTAL.ts +44 -44
  11. package/src/grid/PRESET_GRID_PN_SCALE.ts +35 -35
  12. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +35 -35
  13. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +40 -40
  14. package/src/grid/PRESET_LINES_BASIC.ts +35 -35
  15. package/src/grid/PRESET_LINES_CURVE.ts +38 -38
  16. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +37 -37
  17. package/src/grid/PRESET_LINES_HORIZONTAL.ts +51 -51
  18. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +37 -37
  19. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +40 -40
  20. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +39 -39
  21. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +43 -43
  22. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +48 -48
  23. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +47 -47
  24. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +47 -47
  25. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +45 -45
  26. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +48 -48
  27. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +50 -50
  28. package/src/grid/index.ts +22 -22
  29. package/src/index.ts +4 -4
  30. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +38 -38
  31. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +86 -86
  32. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +58 -58
  33. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +60 -60
  34. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +86 -86
  35. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +104 -104
  36. package/src/multiGrid/index.ts +6 -6
  37. package/src/params.ts +60 -60
  38. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +18 -18
  39. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +29 -29
  40. package/src/series/PRESET_PIE_BASIC.ts +18 -18
  41. package/src/series/PRESET_PIE_DONUT.ts +23 -23
  42. package/src/series/PRESET_PIE_HALF_DONUT.ts +36 -36
  43. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +24 -24
  44. package/src/series/PRESET_ROSE_BASIC.ts +19 -19
  45. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +24 -24
  46. package/src/series/PRESET_SERIES_BASIC.ts +16 -16
  47. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +17 -17
  48. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +18 -18
  49. package/src/series/PRESET_SERIES_SUM_SERIES.ts +18 -18
  50. package/src/series/index.ts +13 -13
  51. package/src/tree/PRESET_TREE_BASIC.ts +27 -27
  52. package/src/types.ts +267 -267
  53. package/tsconfig.base.json +13 -13
  54. package/tsconfig.json +2 -2
  55. package/vite.config.js +22 -22
@@ -1,38 +1,38 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type {
3
- PresetMultiGridPluginParams,
4
- PresetNoneDataPluginParams
5
- } from '../types'
6
- // import { ALL_PLUGIN_PARAMS_MULTI_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
-
8
- export const PRESET_MULTI_GRID_BASIC: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
- & Partial<PresetNoneDataPluginParams>> = {
10
- name: 'PRESET_MULTI_GRID_BASIC',
11
- description: '基本MultiGrid參數',
12
- chartParams: {
13
- padding: {
14
- top: 60,
15
- right: 60,
16
- bottom: 120,
17
- left: 60
18
- },
19
- highlightTarget: 'series'
20
- },
21
- allPluginParams: {
22
- // ...ALL_PLUGIN_PARAMS_MULTI_GRID,
23
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
24
- MultiGridLegend: {
25
- // position: 'bottom',
26
- // justify: 'center',
27
- placement: 'bottom',
28
- padding: 14,
29
- gridList: [
30
- {
31
- },
32
- {
33
- listRectHeight: 2,
34
- }
35
- ]
36
- }
37
- }
38
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type {
3
+ PresetMultiGridPluginParams,
4
+ PresetNoneDataPluginParams
5
+ } from '../types'
6
+ // import { ALL_PLUGIN_PARAMS_MULTI_GRID, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
7
+
8
+ export const PRESET_MULTI_GRID_BASIC: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
+ & Partial<PresetNoneDataPluginParams>> = {
10
+ name: 'PRESET_MULTI_GRID_BASIC',
11
+ description: '基本MultiGrid參數',
12
+ chartParams: {
13
+ padding: {
14
+ top: 60,
15
+ right: 60,
16
+ bottom: 120,
17
+ left: 60
18
+ },
19
+ highlightTarget: 'series'
20
+ },
21
+ allPluginParams: {
22
+ // ...ALL_PLUGIN_PARAMS_MULTI_GRID,
23
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
24
+ MultiGridLegend: {
25
+ // position: 'bottom',
26
+ // justify: 'center',
27
+ placement: 'bottom',
28
+ padding: 14,
29
+ gridList: [
30
+ {
31
+ },
32
+ {
33
+ listRectHeight: 2,
34
+ }
35
+ ]
36
+ }
37
+ }
38
+ }
@@ -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_GRID_DIVERGING: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
- & Partial<PresetNoneDataPluginParams>> = {
10
- name: 'PRESET_MULTI_GRID_DIVERGING',
11
- description: '雙向折線圖',
12
- chartParams: {
13
- padding: {
14
- top: 60,
15
- right: 60,
16
- bottom: 120,
17
- left: 60
18
- },
19
- },
20
- dataFormatter: {
21
- gridList: [
22
- // 第一個grid
23
- {
24
- groupAxis: {
25
- position: 'right'
26
- },
27
- valueAxis: {
28
- position: 'bottom'
29
- },
30
- },
31
- // 第二個grid
32
- {
33
- groupAxis: {
34
- position: 'left'
35
- },
36
- valueAxis: {
37
- position: 'bottom'
38
- },
39
- }
40
- ],
41
- // 設定排版方式
42
- container: {
43
- gap: 200,
44
- rowAmount: 1,
45
- columnAmount: 2
46
- },
47
- separateGrid: true // 將兩個grid拆分
48
- },
49
- allPluginParams: {
50
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
51
- MultiGroupAxis: {
52
- tickPadding: 60, // 加長間距
53
- gridIndexes: [0] // 只顯示一個
54
- },
55
- MultiValueAxis: {
56
- gridIndexes: [0, 1]
57
- },
58
- MultiValueStackAxis: {
59
- gridIndexes: [0, 1]
60
- },
61
- MultiBars: {
62
- gridIndexes: [0, 1]
63
- },
64
- MultiBarStack: {
65
- gridIndexes: [0, 1]
66
- },
67
- MultiBarsTriangle: {
68
- gridIndexes: [0, 1]
69
- },
70
- MultiLines: {
71
- gridIndexes: [0, 1]
72
- },
73
- MultiLineAreas: {
74
- gridIndexes: [0, 1]
75
- },
76
- MultiDots: {
77
- gridIndexes: [0, 1]
78
- },
79
- MultiGridLegend: {
80
- // position: 'bottom',
81
- // justify: 'center',
82
- placement: 'bottom',
83
- padding: 14,
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_GRID_DIVERGING: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
+ & Partial<PresetNoneDataPluginParams>> = {
10
+ name: 'PRESET_MULTI_GRID_DIVERGING',
11
+ description: '雙向折線圖',
12
+ chartParams: {
13
+ padding: {
14
+ top: 60,
15
+ right: 60,
16
+ bottom: 120,
17
+ left: 60
18
+ },
19
+ },
20
+ dataFormatter: {
21
+ gridList: [
22
+ // 第一個grid
23
+ {
24
+ groupAxis: {
25
+ position: 'right'
26
+ },
27
+ valueAxis: {
28
+ position: 'bottom'
29
+ },
30
+ },
31
+ // 第二個grid
32
+ {
33
+ groupAxis: {
34
+ position: 'left'
35
+ },
36
+ valueAxis: {
37
+ position: 'bottom'
38
+ },
39
+ }
40
+ ],
41
+ // 設定排版方式
42
+ container: {
43
+ gap: 200,
44
+ rowAmount: 1,
45
+ columnAmount: 2
46
+ },
47
+ separateGrid: true // 將兩個grid拆分
48
+ },
49
+ allPluginParams: {
50
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
51
+ MultiGroupAxis: {
52
+ tickPadding: 60, // 加長間距
53
+ gridIndexes: [0] // 只顯示一個
54
+ },
55
+ MultiValueAxis: {
56
+ gridIndexes: [0, 1]
57
+ },
58
+ MultiValueStackAxis: {
59
+ gridIndexes: [0, 1]
60
+ },
61
+ MultiBars: {
62
+ gridIndexes: [0, 1]
63
+ },
64
+ MultiBarStack: {
65
+ gridIndexes: [0, 1]
66
+ },
67
+ MultiBarsTriangle: {
68
+ gridIndexes: [0, 1]
69
+ },
70
+ MultiLines: {
71
+ gridIndexes: [0, 1]
72
+ },
73
+ MultiLineAreas: {
74
+ gridIndexes: [0, 1]
75
+ },
76
+ MultiDots: {
77
+ gridIndexes: [0, 1]
78
+ },
79
+ MultiGridLegend: {
80
+ // position: 'bottom',
81
+ // justify: 'center',
82
+ placement: 'bottom',
83
+ padding: 14,
84
+ }
85
+ }
86
+ }
@@ -1,58 +1,58 @@
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
- type PresetMultiGridRoundPluginParams = Omit<PresetMultiGridPluginParams, 'MultiBarsTriangle'>
9
-
10
- export const PRESET_MULTI_GRID_ROUND_STYLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
11
- & Partial<PresetNoneDataPluginParams>> = {
12
- name: 'PRESET_MULTI_GRID_ROUND_STYLE',
13
- description: 'MultiGrid圓弧風格',
14
- chartParams: {
15
- padding: {
16
- top: 60,
17
- right: 60,
18
- bottom: 120,
19
- left: 60
20
- },
21
- highlightTarget: 'series'
22
- },
23
- allPluginParams: {
24
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
25
- MultiBars: {
26
- barWidth: 0,
27
- barPadding: 1,
28
- barGroupPadding: 10,
29
- barRadius: true,
30
- },
31
- MultiBarStack: {},
32
- MultiDots: {},
33
- MultiGridLegend: {
34
- // position: 'bottom',
35
- // justify: 'center',
36
- placement: 'bottom',
37
- padding: 14,
38
- gridList: [
39
- {
40
- listRectRadius: 7,
41
- },
42
- {
43
- listRectHeight: 2,
44
- }
45
- ]
46
- },
47
- MultiGroupAxis: {},
48
- MultiLineAreas: {},
49
- MultiLines: {
50
- lineCurve: 'curveMonotoneX',
51
- lineWidth: 3
52
- },
53
- MultiValueAxis: {},
54
- MultiValueStackAxis: {},
55
- OverlappingValueAxes: {},
56
- OverlappingValueStackAxes: {},
57
- }
58
- }
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
+ type PresetMultiGridRoundPluginParams = Omit<PresetMultiGridPluginParams, 'MultiBarsTriangle'>
9
+
10
+ export const PRESET_MULTI_GRID_ROUND_STYLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
11
+ & Partial<PresetNoneDataPluginParams>> = {
12
+ name: 'PRESET_MULTI_GRID_ROUND_STYLE',
13
+ description: 'MultiGrid圓弧風格',
14
+ chartParams: {
15
+ padding: {
16
+ top: 60,
17
+ right: 60,
18
+ bottom: 120,
19
+ left: 60
20
+ },
21
+ highlightTarget: 'series'
22
+ },
23
+ allPluginParams: {
24
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
25
+ MultiBars: {
26
+ barWidth: 0,
27
+ barPadding: 1,
28
+ barGroupPadding: 10,
29
+ barRadius: true,
30
+ },
31
+ MultiBarStack: {},
32
+ MultiDots: {},
33
+ MultiGridLegend: {
34
+ // position: 'bottom',
35
+ // justify: 'center',
36
+ placement: 'bottom',
37
+ padding: 14,
38
+ gridList: [
39
+ {
40
+ listRectRadius: 7,
41
+ },
42
+ {
43
+ listRectHeight: 2,
44
+ }
45
+ ]
46
+ },
47
+ MultiGroupAxis: {},
48
+ MultiLineAreas: {},
49
+ MultiLines: {
50
+ lineCurve: 'curveMonotoneX',
51
+ lineWidth: 3
52
+ },
53
+ MultiValueAxis: {},
54
+ MultiValueStackAxis: {},
55
+ OverlappingValueAxes: {},
56
+ OverlappingValueStackAxes: {},
57
+ }
58
+ }
@@ -1,60 +1,60 @@
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_GRID_SEPARATE_GRID: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
- & Partial<PresetNoneDataPluginParams>> = {
10
- name: 'PRESET_MULTI_GRID_SEPARATE_GRID',
11
- description: '2組Grid圖表',
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
- MultiValueStackAxis: {
33
- gridIndexes: 'all'
34
- },
35
- MultiBars: {
36
- gridIndexes: 'all'
37
- },
38
- MultiBarStack: {
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
- }
59
- }
60
- }
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_GRID_SEPARATE_GRID: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams>
9
+ & Partial<PresetNoneDataPluginParams>> = {
10
+ name: 'PRESET_MULTI_GRID_SEPARATE_GRID',
11
+ description: '2組Grid圖表',
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
+ MultiValueStackAxis: {
33
+ gridIndexes: 'all'
34
+ },
35
+ MultiBars: {
36
+ gridIndexes: 'all'
37
+ },
38
+ MultiBarStack: {
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
+ }
59
+ }
60
+ }
@@ -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
- MultiValueStackAxis: {
33
- gridIndexes: 'all'
34
- },
35
- MultiBars: {
36
- gridIndexes: 'all'
37
- },
38
- MultiBarStack: {
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
+ MultiValueStackAxis: {
33
+ gridIndexes: 'all'
34
+ },
35
+ MultiBars: {
36
+ gridIndexes: 'all'
37
+ },
38
+ MultiBarStack: {
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
+ }