@orbcharts/presets-basic 3.0.0-beta.4 → 3.0.0-beta.6

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 (48) hide show
  1. package/dist/orbcharts-presets-basic.es.js +258 -147
  2. package/dist/orbcharts-presets-basic.umd.js +1 -1
  3. package/dist/src/index.d.ts +1 -0
  4. package/dist/src/multiValue/PRESET_MULTI_VALUE_BASIC.d.ts +1 -1
  5. package/dist/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.d.ts +4 -0
  6. package/dist/src/multiValue/index.d.ts +1 -0
  7. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BASIC.d.ts +4 -0
  8. package/dist/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.d.ts +4 -0
  9. package/dist/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.d.ts +4 -0
  10. package/dist/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.d.ts +4 -0
  11. package/dist/src/relationship/index.d.ts +4 -0
  12. package/dist/src/tree/PRESET_TREE_MAP_BASIC.d.ts +4 -0
  13. package/dist/src/tree/index.d.ts +1 -1
  14. package/dist/src/types.d.ts +26 -16
  15. package/package.json +3 -3
  16. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +2 -2
  17. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +2 -2
  18. package/src/grid/PRESET_GRID_HORIZONTAL.ts +2 -2
  19. package/src/grid/PRESET_GRID_PN_SCALE.ts +2 -2
  20. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +2 -2
  21. package/src/grid/PRESET_LINES_HORIZONTAL.ts +2 -2
  22. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +1 -1
  23. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +2 -2
  24. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +2 -2
  25. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +2 -2
  26. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +2 -2
  27. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +2 -2
  28. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +2 -2
  29. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +2 -2
  30. package/src/index.ts +1 -0
  31. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +2 -2
  32. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +3 -3
  33. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +2 -2
  34. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +2 -2
  35. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +2 -2
  36. package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +1 -1
  37. package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +26 -0
  38. package/src/multiValue/index.ts +1 -0
  39. package/src/params.ts +5 -5
  40. package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +23 -0
  41. package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +30 -0
  42. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +28 -0
  43. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +25 -0
  44. package/src/relationship/index.ts +4 -0
  45. package/src/tree/{PRESET_TREE_BASIC.ts → PRESET_TREE_MAP_BASIC.ts} +3 -3
  46. package/src/tree/index.ts +1 -1
  47. package/src/types.ts +45 -23
  48. package/dist/src/tree/PRESET_TREE_BASIC.d.ts +0 -4
@@ -1,4 +1,4 @@
1
- const u = {
1
+ const R = {
2
2
  name: "PRESET_BUBBLES_SCALING_BY_RADIUS",
3
3
  description: "以半徑尺寸為比例的泡泡圖",
4
4
  allPluginParams: {
@@ -162,7 +162,7 @@ const n = {
162
162
  }
163
163
  };
164
164
  n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
165
- const R = {
165
+ const u = {
166
166
  name: "PRESET_SERIES_BASIC",
167
167
  description: "基本Series參數",
168
168
  allPluginParams: {
@@ -187,7 +187,7 @@ const R = {
187
187
  }
188
188
  };
189
189
  d.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
190
- const g = {
190
+ const E = {
191
191
  name: "PRESET_SERIES_SEPARATE_SERIES",
192
192
  description: "分開顯示Series",
193
193
  dataFormatter: {
@@ -199,8 +199,8 @@ const g = {
199
199
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
200
200
  }
201
201
  };
202
- g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
203
- const E = {
202
+ E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
203
+ const g = {
204
204
  name: "PRESET_SERIES_SUM_SERIES",
205
205
  description: "合併Series資料",
206
206
  dataFormatter: {
@@ -212,7 +212,7 @@ const E = {
212
212
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
213
213
  }
214
214
  };
215
- E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
215
+ g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
216
216
  const _ = {
217
217
  name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
218
218
  description: "橫向圓角長條圖",
@@ -225,20 +225,20 @@ const _ = {
225
225
  }
226
226
  },
227
227
  dataFormatter: {
228
- grid: {
229
- valueAxis: {
230
- position: "bottom"
231
- // position: 'top'
232
- // position: 'left'
233
- // position: 'right'
234
- },
235
- groupAxis: {
236
- position: "left"
237
- // position: 'right'
238
- // position: 'bottom'
239
- // position: 'top'
240
- }
228
+ // grid: {
229
+ valueAxis: {
230
+ position: "bottom"
231
+ // position: 'top'
232
+ // position: 'left'
233
+ // position: 'right'
234
+ },
235
+ groupAxis: {
236
+ position: "left"
237
+ // position: 'right'
238
+ // position: 'bottom'
239
+ // position: 'top'
241
240
  }
241
+ // }
242
242
  },
243
243
  allPluginParams: {
244
244
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -272,20 +272,20 @@ const _ = {
272
272
  }
273
273
  },
274
274
  dataFormatter: {
275
- grid: {
276
- valueAxis: {
277
- position: "bottom"
278
- // position: 'top'
279
- // position: 'left'
280
- // position: 'right'
281
- },
282
- groupAxis: {
283
- position: "left"
284
- // position: 'right'
285
- // position: 'bottom'
286
- // position: 'top'
287
- }
275
+ // grid: {
276
+ valueAxis: {
277
+ position: "bottom"
278
+ // position: 'top'
279
+ // position: 'left'
280
+ // position: 'right'
281
+ },
282
+ groupAxis: {
283
+ position: "left"
284
+ // position: 'right'
285
+ // position: 'bottom'
286
+ // position: 'top'
288
287
  }
288
+ // }
289
289
  },
290
290
  allPluginParams: {
291
291
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -335,7 +335,7 @@ const _ = {
335
335
  listRectRadius: 7
336
336
  }
337
337
  }
338
- }, m = {
338
+ }, c = {
339
339
  name: "PRESET_BARS_THIN",
340
340
  description: "細長條圖",
341
341
  chartParams: {
@@ -363,7 +363,7 @@ const _ = {
363
363
  padding: 14
364
364
  }
365
365
  }
366
- }, A = {
366
+ }, m = {
367
367
  name: "PRESET_GRID_BASIC",
368
368
  description: "基本Grid參數",
369
369
  chartParams: {
@@ -384,7 +384,7 @@ const _ = {
384
384
  padding: 14
385
385
  }
386
386
  }
387
- }, c = {
387
+ }, A = {
388
388
  name: "PRESET_GRID_HORIZONTAL",
389
389
  description: "橫向圖",
390
390
  chartParams: {
@@ -397,20 +397,20 @@ const _ = {
397
397
  }
398
398
  },
399
399
  dataFormatter: {
400
- grid: {
401
- valueAxis: {
402
- position: "bottom"
403
- // position: 'top'
404
- // position: 'left'
405
- // position: 'right'
406
- },
407
- groupAxis: {
408
- position: "left"
409
- // position: 'right'
410
- // position: 'bottom'
411
- // position: 'top'
412
- }
400
+ // grid: {
401
+ valueAxis: {
402
+ position: "bottom"
403
+ // position: 'top'
404
+ // position: 'left'
405
+ // position: 'right'
406
+ },
407
+ groupAxis: {
408
+ position: "left"
409
+ // position: 'right'
410
+ // position: 'bottom'
411
+ // position: 'top'
413
412
  }
413
+ // }
414
414
  },
415
415
  allPluginParams: {
416
416
  // ...ALL_PLUGIN_PARAMS_GRID,
@@ -434,12 +434,12 @@ const _ = {
434
434
  }
435
435
  },
436
436
  dataFormatter: {
437
- grid: {
438
- valueAxis: {
439
- scaleDomain: ["auto", "auto"],
440
- scaleRange: [0.05, 0.95]
441
- }
437
+ // grid: {
438
+ valueAxis: {
439
+ scaleDomain: ["auto", "auto"],
440
+ scaleRange: [0.05, 0.95]
442
441
  }
442
+ // }
443
443
  },
444
444
  allPluginParams: {
445
445
  // ...ALL_PLUGIN_PARAMS_GRID,
@@ -492,10 +492,10 @@ const _ = {
492
492
  }
493
493
  },
494
494
  dataFormatter: {
495
- grid: {
496
- // seriesSlotIndexes: [0, 1],
497
- separateSeries: !0
498
- }
495
+ // grid: {
496
+ // seriesSlotIndexes: [0, 1],
497
+ separateSeries: !0
498
+ // },
499
499
  },
500
500
  allPluginParams: {
501
501
  // ...ALL_PLUGIN_PARAMS_GRID,
@@ -527,11 +527,11 @@ const _ = {
527
527
  highlightTarget: "series"
528
528
  },
529
529
  dataFormatter: {
530
- grid: {
531
- groupAxis: {
532
- scalePadding: 0
533
- }
530
+ // grid: {
531
+ groupAxis: {
532
+ scalePadding: 0
534
533
  }
534
+ // }
535
535
  },
536
536
  allPluginParams: {
537
537
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -562,11 +562,11 @@ const _ = {
562
562
  highlightTarget: "series"
563
563
  },
564
564
  dataFormatter: {
565
- grid: {
566
- groupAxis: {
567
- scalePadding: 0
568
- }
565
+ // grid: {
566
+ groupAxis: {
567
+ scalePadding: 0
569
568
  }
569
+ // }
570
570
  },
571
571
  allPluginParams: {
572
572
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -602,15 +602,15 @@ const _ = {
602
602
  highlightTarget: "series"
603
603
  },
604
604
  dataFormatter: {
605
- grid: {
606
- valueAxis: {
607
- position: "bottom"
608
- },
609
- groupAxis: {
610
- position: "left",
611
- scalePadding: 0
612
- }
605
+ // grid: {
606
+ valueAxis: {
607
+ position: "bottom"
608
+ },
609
+ groupAxis: {
610
+ position: "left",
611
+ scalePadding: 0
613
612
  }
613
+ // }
614
614
  },
615
615
  allPluginParams: {
616
616
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -641,11 +641,11 @@ const _ = {
641
641
  highlightTarget: "series"
642
642
  },
643
643
  dataFormatter: {
644
- grid: {
645
- groupAxis: {
646
- scalePadding: 0
647
- }
644
+ // grid: {
645
+ groupAxis: {
646
+ scalePadding: 0
648
647
  }
648
+ // }
649
649
  },
650
650
  allPluginParams: {
651
651
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -665,7 +665,7 @@ const _ = {
665
665
  listRectHeight: 2
666
666
  }
667
667
  }
668
- }, B = {
668
+ }, D = {
669
669
  name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
670
670
  description: "傾斜標籤",
671
671
  chartParams: {
@@ -678,11 +678,11 @@ const _ = {
678
678
  highlightTarget: "series"
679
679
  },
680
680
  dataFormatter: {
681
- grid: {
682
- groupAxis: {
683
- scalePadding: 0
684
- }
681
+ // grid: {
682
+ groupAxis: {
683
+ scalePadding: 0
685
684
  }
685
+ // }
686
686
  },
687
687
  allPluginParams: {
688
688
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -718,13 +718,13 @@ const _ = {
718
718
  highlightTarget: "series"
719
719
  },
720
720
  dataFormatter: {
721
- grid: {
722
- // seriesSlotIndexes: [0, 1],
723
- separateSeries: !0,
724
- groupAxis: {
725
- scalePadding: 0
726
- }
721
+ // grid: {
722
+ // seriesSlotIndexes: [0, 1],
723
+ separateSeries: !0,
724
+ groupAxis: {
725
+ scalePadding: 0
727
726
  }
727
+ // },
728
728
  },
729
729
  allPluginParams: {
730
730
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -747,7 +747,7 @@ const _ = {
747
747
  listRectHeight: 2
748
748
  }
749
749
  }
750
- }, N = {
750
+ }, B = {
751
751
  name: "PRESET_LINES_BASIC",
752
752
  description: "基本Lines參數",
753
753
  chartParams: {
@@ -774,7 +774,7 @@ const _ = {
774
774
  listRectHeight: 2
775
775
  }
776
776
  }
777
- }, D = {
777
+ }, N = {
778
778
  name: "PRESET_LINES_CURVE",
779
779
  description: "弧線折線圖",
780
780
  chartParams: {
@@ -804,7 +804,7 @@ const _ = {
804
804
  listRectHeight: 2
805
805
  }
806
806
  }
807
- }, v = {
807
+ }, O = {
808
808
  name: "PRESET_LINES_HORIZONTAL",
809
809
  description: "橫向折線圖",
810
810
  chartParams: {
@@ -817,20 +817,20 @@ const _ = {
817
817
  highlightTarget: "series"
818
818
  },
819
819
  dataFormatter: {
820
- grid: {
821
- valueAxis: {
822
- position: "bottom"
823
- // position: 'top'
824
- // position: 'left'
825
- // position: 'right'
826
- },
827
- groupAxis: {
828
- position: "left"
829
- // position: 'right'
830
- // position: 'bottom'
831
- // position: 'top'
832
- }
820
+ // grid: {
821
+ valueAxis: {
822
+ position: "bottom"
823
+ // position: 'top'
824
+ // position: 'left'
825
+ // position: 'right'
826
+ },
827
+ groupAxis: {
828
+ position: "left"
829
+ // position: 'right'
830
+ // position: 'bottom'
831
+ // position: 'top'
833
832
  }
833
+ // }
834
834
  },
835
835
  allPluginParams: {
836
836
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
@@ -847,7 +847,7 @@ const _ = {
847
847
  listRectHeight: 2
848
848
  }
849
849
  }
850
- }, O = {
850
+ }, C = {
851
851
  name: "PRESET_LINES_LOOSE_TICKS",
852
852
  description: "寬鬆標籤",
853
853
  chartParams: {
@@ -876,7 +876,7 @@ const _ = {
876
876
  listRectHeight: 2
877
877
  }
878
878
  }
879
- }, H = {
879
+ }, F = {
880
880
  name: "PRESET_LINES_ROTATE_AXIS_LABEL",
881
881
  description: "傾斜標籤",
882
882
  chartParams: {
@@ -908,7 +908,7 @@ const _ = {
908
908
  listRectHeight: 2
909
909
  }
910
910
  }
911
- }, U = {
911
+ }, v = {
912
912
  name: "PRESET_LINES_WITH_SOLID_DOTS",
913
913
  description: "折線圖及實心圓點",
914
914
  chartParams: {
@@ -925,7 +925,7 @@ const _ = {
925
925
  Lines: {},
926
926
  Dots: {
927
927
  radius: 3,
928
- fillColorType: "series",
928
+ fillColorType: "label",
929
929
  onlyShowHighlighted: !1
930
930
  },
931
931
  GroupAxis: {},
@@ -939,7 +939,7 @@ const _ = {
939
939
  listRectHeight: 2
940
940
  }
941
941
  }
942
- }, C = {
942
+ }, U = {
943
943
  name: "PRESET_MULTI_GRID_BASIC",
944
944
  description: "基本MultiGrid參數",
945
945
  chartParams: {
@@ -967,7 +967,7 @@ const _ = {
967
967
  ]
968
968
  }
969
969
  }
970
- }, f = {
970
+ }, H = {
971
971
  name: "PRESET_MULTI_GRID_DIVERGING",
972
972
  description: "雙向折線圖",
973
973
  chartParams: {
@@ -1019,13 +1019,13 @@ const _ = {
1019
1019
  MultiValueAxis: {
1020
1020
  gridIndexes: [0, 1]
1021
1021
  },
1022
- MultiValueStackAxis: {
1022
+ MultiStackedValueAxis: {
1023
1023
  gridIndexes: [0, 1]
1024
1024
  },
1025
1025
  MultiBars: {
1026
1026
  gridIndexes: [0, 1]
1027
1027
  },
1028
- MultiBarStack: {
1028
+ MultiStackedBar: {
1029
1029
  gridIndexes: [0, 1]
1030
1030
  },
1031
1031
  MultiBarsTriangle: {
@@ -1067,7 +1067,7 @@ const _ = {
1067
1067
  barGroupPadding: 10,
1068
1068
  barRadius: !0
1069
1069
  },
1070
- MultiBarStack: {},
1070
+ MultiStackedBar: {},
1071
1071
  MultiDots: {},
1072
1072
  MultiGridLegend: {
1073
1073
  // position: 'bottom',
@@ -1090,11 +1090,11 @@ const _ = {
1090
1090
  lineWidth: 3
1091
1091
  },
1092
1092
  MultiValueAxis: {},
1093
- MultiValueStackAxis: {},
1093
+ MultiStackedValueAxis: {},
1094
1094
  OverlappingValueAxes: {},
1095
- OverlappingValueStackAxes: {}
1095
+ OverlappingStackedValueAxes: {}
1096
1096
  }
1097
- }, F = {
1097
+ }, f = {
1098
1098
  name: "PRESET_MULTI_GRID_SEPARATE_GRID",
1099
1099
  description: "2組Grid圖表",
1100
1100
  chartParams: {
@@ -1117,13 +1117,13 @@ const _ = {
1117
1117
  MultiValueAxis: {
1118
1118
  gridIndexes: "all"
1119
1119
  },
1120
- MultiValueStackAxis: {
1120
+ MultiStackedValueAxis: {
1121
1121
  gridIndexes: "all"
1122
1122
  },
1123
1123
  MultiBars: {
1124
1124
  gridIndexes: "all"
1125
1125
  },
1126
- MultiBarStack: {
1126
+ MultiStackedBar: {
1127
1127
  gridIndexes: "all"
1128
1128
  },
1129
1129
  MultiBarsTriangle: {
@@ -1188,13 +1188,13 @@ const _ = {
1188
1188
  MultiValueAxis: {
1189
1189
  gridIndexes: "all"
1190
1190
  },
1191
- MultiValueStackAxis: {
1191
+ MultiStackedValueAxis: {
1192
1192
  gridIndexes: "all"
1193
1193
  },
1194
1194
  MultiBars: {
1195
1195
  gridIndexes: "all"
1196
1196
  },
1197
- MultiBarStack: {
1197
+ MultiStackedBar: {
1198
1198
  gridIndexes: "all"
1199
1199
  },
1200
1200
  MultiBarsTriangle: {
@@ -1265,13 +1265,13 @@ const _ = {
1265
1265
  MultiValueAxis: {
1266
1266
  gridIndexes: "all"
1267
1267
  },
1268
- MultiValueStackAxis: {
1268
+ MultiStackedValueAxis: {
1269
1269
  gridIndexes: "all"
1270
1270
  },
1271
1271
  MultiBars: {
1272
1272
  gridIndexes: "all"
1273
1273
  },
1274
- MultiBarStack: {
1274
+ MultiStackedBar: {
1275
1275
  gridIndexes: "all"
1276
1276
  },
1277
1277
  MultiBarsTriangle: {
@@ -1319,7 +1319,7 @@ const _ = {
1319
1319
  ]
1320
1320
  }
1321
1321
  }
1322
- }, X = {
1322
+ }, Z = {
1323
1323
  name: "PRESET_MULTI_VALUE_BASIC",
1324
1324
  description: "基本MultiValue參數",
1325
1325
  chartParams: {
@@ -1336,6 +1336,26 @@ const _ = {
1336
1336
  padding: 14
1337
1337
  }
1338
1338
  }
1339
+ }, X = {
1340
+ name: "PRESET_MULTI_VALUE_SEPARATE_CATEGORY",
1341
+ description: "MultiValue 分開顯示category",
1342
+ chartParams: {
1343
+ padding: {
1344
+ top: 60,
1345
+ right: 60,
1346
+ bottom: 120,
1347
+ left: 60
1348
+ }
1349
+ },
1350
+ dataFormatter: {
1351
+ separateCategory: !0
1352
+ },
1353
+ allPluginParams: {
1354
+ MultiValueLegend: {
1355
+ placement: "bottom",
1356
+ padding: 14
1357
+ }
1358
+ }
1339
1359
  }, Y = {
1340
1360
  name: "PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",
1341
1361
  description: "ScatterBubbles以半徑尺寸為比例",
@@ -1356,7 +1376,7 @@ const _ = {
1356
1376
  arcScaleType: "radius"
1357
1377
  }
1358
1378
  }
1359
- }, Z = {
1379
+ }, y = {
1360
1380
  name: "PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",
1361
1381
  description: "ScatterBubbles漸變透明度",
1362
1382
  chartParams: {
@@ -1376,9 +1396,95 @@ const _ = {
1376
1396
  valueLinearOpacity: [0.6, 0.95]
1377
1397
  }
1378
1398
  }
1379
- }, y = {
1380
- name: "PRESET_TREE_BASIC",
1381
- description: "基本Tree參數",
1399
+ }, w = {
1400
+ name: "PRESET_FORCE_DIRECTED_BASIC",
1401
+ description: "基本Force Directed參數",
1402
+ // chartParams: {
1403
+ // padding: {
1404
+ // top: 40,
1405
+ // right: 40,
1406
+ // bottom: 60,
1407
+ // left: 40
1408
+ // },
1409
+ // },
1410
+ allPluginParams: {
1411
+ ForceDirected: {},
1412
+ RelationshipLegend: {
1413
+ listRectRadius: 7
1414
+ // 圓型圖例列點
1415
+ }
1416
+ }
1417
+ }, K = {
1418
+ name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
1419
+ description: "基本Force Directed參數",
1420
+ // chartParams: {
1421
+ // padding: {
1422
+ // top: 40,
1423
+ // right: 40,
1424
+ // bottom: 60,
1425
+ // left: 40
1426
+ // },
1427
+ // },
1428
+ allPluginParams: {
1429
+ ForceDirected: {
1430
+ zoomable: !1
1431
+ },
1432
+ RelationshipLegend: {
1433
+ listRectRadius: 7
1434
+ // 圓型圖例列點
1435
+ }
1436
+ }
1437
+ }, z = {
1438
+ name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
1439
+ description: "基本Force Directed參數",
1440
+ // chartParams: {
1441
+ // padding: {
1442
+ // top: 40,
1443
+ // right: 40,
1444
+ // bottom: 60,
1445
+ // left: 40
1446
+ // },
1447
+ // },
1448
+ allPluginParams: {
1449
+ ForceDirected: {
1450
+ node: {
1451
+ labelSizeFixed: !0
1452
+ },
1453
+ edge: {
1454
+ labelSizeFixed: !0
1455
+ }
1456
+ },
1457
+ RelationshipLegend: {
1458
+ listRectRadius: 7
1459
+ // 圓型圖例列點
1460
+ }
1461
+ }
1462
+ }, j = {
1463
+ name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
1464
+ description: "基本Force Directed參數",
1465
+ // chartParams: {
1466
+ // padding: {
1467
+ // top: 40,
1468
+ // right: 40,
1469
+ // bottom: 60,
1470
+ // left: 40
1471
+ // },
1472
+ // },
1473
+ allPluginParams: {
1474
+ ForceDirected: {
1475
+ edge: {
1476
+ arrowWidth: 0,
1477
+ arrowHeight: 0
1478
+ }
1479
+ },
1480
+ RelationshipLegend: {
1481
+ listRectRadius: 7
1482
+ // 圓型圖例列點
1483
+ }
1484
+ }
1485
+ }, q = {
1486
+ name: "PRESET_TREE_MAP_BASIC",
1487
+ description: "基本Tree Map參數",
1382
1488
  chartParams: {
1383
1489
  padding: {
1384
1490
  top: 40,
@@ -1402,44 +1508,49 @@ export {
1402
1508
  _ as PRESET_BARS_HORIZONTAL_AND_ROUND,
1403
1509
  P as PRESET_BARS_HORIZONTAL_AND_THIN,
1404
1510
  p as PRESET_BARS_ROUND,
1405
- m as PRESET_BARS_THIN,
1406
- u as PRESET_BUBBLES_SCALING_BY_RADIUS,
1511
+ c as PRESET_BARS_THIN,
1512
+ R as PRESET_BUBBLES_SCALING_BY_RADIUS,
1407
1513
  S as PRESET_BUBBLES_SEPARATE_SERIES,
1408
- A as PRESET_GRID_BASIC,
1409
- c as PRESET_GRID_HORIZONTAL,
1514
+ w as PRESET_FORCE_DIRECTED_BASIC,
1515
+ z as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
1516
+ j as PRESET_FORCE_DIRECTED_NONE_ARROW,
1517
+ K as PRESET_FORCE_DIRECTED_NONE_ZOOM,
1518
+ m as PRESET_GRID_BASIC,
1519
+ A as PRESET_GRID_HORIZONTAL,
1410
1520
  T as PRESET_GRID_PN_SCALE,
1411
1521
  I as PRESET_GRID_ROTATE_AXIS_LABEL,
1412
1522
  L as PRESET_GRID_SEPARATE_SERIES,
1413
- N as PRESET_LINES_BASIC,
1414
- D as PRESET_LINES_CURVE,
1415
- v as PRESET_LINES_HORIZONTAL,
1416
- O as PRESET_LINES_LOOSE_TICKS,
1417
- H as PRESET_LINES_ROTATE_AXIS_LABEL,
1418
- U as PRESET_LINES_WITH_SOLID_DOTS,
1523
+ B as PRESET_LINES_BASIC,
1524
+ N as PRESET_LINES_CURVE,
1525
+ O as PRESET_LINES_HORIZONTAL,
1526
+ C as PRESET_LINES_LOOSE_TICKS,
1527
+ F as PRESET_LINES_ROTATE_AXIS_LABEL,
1528
+ v as PRESET_LINES_WITH_SOLID_DOTS,
1419
1529
  h as PRESET_LINE_AREAS_BASIC,
1420
1530
  x as PRESET_LINE_AREAS_CURVE,
1421
1531
  b as PRESET_LINE_AREAS_HORIZONTAL,
1422
1532
  G as PRESET_LINE_AREAS_LOOSE_TICKS,
1423
- B as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
1533
+ D as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
1424
1534
  M as PRESET_LINE_AREAS_SEPARATE_SERIES,
1425
- C as PRESET_MULTI_GRID_BASIC,
1426
- f as PRESET_MULTI_GRID_DIVERGING,
1535
+ U as PRESET_MULTI_GRID_BASIC,
1536
+ H as PRESET_MULTI_GRID_DIVERGING,
1427
1537
  V as PRESET_MULTI_GRID_ROUND_STYLE,
1428
- F as PRESET_MULTI_GRID_SEPARATE_GRID,
1538
+ f as PRESET_MULTI_GRID_SEPARATE_GRID,
1429
1539
  W as PRESET_MULTI_LINES_SEPARATE_GRID,
1430
1540
  k as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
1431
- X as PRESET_MULTI_VALUE_BASIC,
1541
+ Z as PRESET_MULTI_VALUE_BASIC,
1542
+ X as PRESET_MULTI_VALUE_SEPARATE_CATEGORY,
1432
1543
  i as PRESET_PIE_BASIC,
1433
1544
  r as PRESET_PIE_DONUT,
1434
1545
  s as PRESET_PIE_HALF_DONUT,
1435
1546
  l as PRESET_PIE_WITH_INNER_LABELS,
1436
1547
  o as PRESET_ROSE_BASIC,
1437
1548
  n as PRESET_ROSE_SCALING_BY_RADIUS,
1438
- Z as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
1549
+ y as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
1439
1550
  Y as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
1440
- R as PRESET_SERIES_BASIC,
1441
- g as PRESET_SERIES_SEPARATE_SERIES,
1551
+ u as PRESET_SERIES_BASIC,
1552
+ E as PRESET_SERIES_SEPARATE_SERIES,
1442
1553
  d as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
1443
- E as PRESET_SERIES_SUM_SERIES,
1444
- y as PRESET_TREE_BASIC
1554
+ g as PRESET_SERIES_SUM_SERIES,
1555
+ q as PRESET_TREE_MAP_BASIC
1445
1556
  };