@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,4 +1,4 @@
1
- const R = {
1
+ const g = {
2
2
  name: "PRESET_BUBBLES_SCALING_BY_RADIUS",
3
3
  description: "以半徑尺寸為比例的泡泡圖",
4
4
  allPluginParams: {
@@ -11,7 +11,7 @@ const R = {
11
11
  // 圓型圖例列點
12
12
  }
13
13
  }
14
- }, S = {
14
+ }, _ = {
15
15
  name: "PRESET_BUBBLES_SEPARATE_SERIES",
16
16
  description: "分開顯示Series泡泡",
17
17
  chartParams: {
@@ -162,7 +162,7 @@ const n = {
162
162
  }
163
163
  };
164
164
  n.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
165
- const u = {
165
+ const S = {
166
166
  name: "PRESET_SERIES_BASIC",
167
167
  description: "基本Series參數",
168
168
  allPluginParams: {
@@ -200,7 +200,7 @@ const E = {
200
200
  }
201
201
  };
202
202
  E.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
203
- const g = {
203
+ const R = {
204
204
  name: "PRESET_SERIES_SUM_SERIES",
205
205
  description: "合併Series資料",
206
206
  dataFormatter: {
@@ -212,8 +212,8 @@ const g = {
212
212
  // ...ALL_PLUGIN_PARAMS_NONE_DATA,
213
213
  }
214
214
  };
215
- g.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
216
- const _ = {
215
+ R.dataFormatter.sort.toString = () => "(a, b) => b.value - a.value";
216
+ const u = {
217
217
  name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
218
218
  description: "橫向圓角長條圖",
219
219
  chartParams: {
@@ -304,7 +304,7 @@ const _ = {
304
304
  padding: 14
305
305
  }
306
306
  }
307
- }, p = {
307
+ }, c = {
308
308
  name: "PRESET_BARS_ROUND",
309
309
  description: "圓角長條圖",
310
310
  chartParams: {
@@ -335,7 +335,7 @@ const _ = {
335
335
  listRectRadius: 7
336
336
  }
337
337
  }
338
- }, c = {
338
+ }, p = {
339
339
  name: "PRESET_BARS_THIN",
340
340
  description: "細長條圖",
341
341
  chartParams: {
@@ -549,7 +549,7 @@ const _ = {
549
549
  listRectHeight: 2
550
550
  }
551
551
  }
552
- }, x = {
552
+ }, b = {
553
553
  name: "PRESET_LINE_AREAS_CURVE",
554
554
  description: "弧線折線圖",
555
555
  chartParams: {
@@ -589,7 +589,7 @@ const _ = {
589
589
  listRectHeight: 2
590
590
  }
591
591
  }
592
- }, b = {
592
+ }, x = {
593
593
  name: "PRESET_LINE_AREAS_HORIZONTAL",
594
594
  description: "橫向折線圖",
595
595
  chartParams: {
@@ -628,7 +628,7 @@ const _ = {
628
628
  listRectHeight: 2
629
629
  }
630
630
  }
631
- }, G = {
631
+ }, B = {
632
632
  name: "PRESET_LINE_AREAS_LOOSE_TICKS",
633
633
  description: "寬鬆標籤",
634
634
  chartParams: {
@@ -705,7 +705,7 @@ const _ = {
705
705
  listRectHeight: 2
706
706
  }
707
707
  }
708
- }, M = {
708
+ }, G = {
709
709
  name: "PRESET_LINE_AREAS_SEPARATE_SERIES",
710
710
  description: "LineAreas 分開顯示Series",
711
711
  chartParams: {
@@ -747,7 +747,7 @@ const _ = {
747
747
  listRectHeight: 2
748
748
  }
749
749
  }
750
- }, B = {
750
+ }, O = {
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
- }, N = {
777
+ }, M = {
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
- }, O = {
807
+ }, N = {
808
808
  name: "PRESET_LINES_HORIZONTAL",
809
809
  description: "橫向折線圖",
810
810
  chartParams: {
@@ -908,7 +908,7 @@ const _ = {
908
908
  listRectHeight: 2
909
909
  }
910
910
  }
911
- }, v = {
911
+ }, U = {
912
912
  name: "PRESET_LINES_WITH_SOLID_DOTS",
913
913
  description: "折線圖及實心圓點",
914
914
  chartParams: {
@@ -939,7 +939,7 @@ const _ = {
939
939
  listRectHeight: 2
940
940
  }
941
941
  }
942
- }, U = {
942
+ }, v = {
943
943
  name: "PRESET_MULTI_GRID_BASIC",
944
944
  description: "基本MultiGrid參數",
945
945
  chartParams: {
@@ -1047,7 +1047,7 @@ const _ = {
1047
1047
  padding: 14
1048
1048
  }
1049
1049
  }
1050
- }, V = {
1050
+ }, f = {
1051
1051
  name: "PRESET_MULTI_GRID_ROUND_STYLE",
1052
1052
  description: "MultiGrid圓弧風格",
1053
1053
  chartParams: {
@@ -1094,7 +1094,7 @@ const _ = {
1094
1094
  OverlappingValueAxes: {},
1095
1095
  OverlappingStackedValueAxes: {}
1096
1096
  }
1097
- }, f = {
1097
+ }, V = {
1098
1098
  name: "PRESET_MULTI_GRID_SEPARATE_GRID",
1099
1099
  description: "2組Grid圖表",
1100
1100
  chartParams: {
@@ -1414,9 +1414,95 @@ const _ = {
1414
1414
  // 圓型圖例列點
1415
1415
  }
1416
1416
  }
1417
+ }, z = {
1418
+ name: "PRESET_FORCE_DIRECTED_BUBBLES_BASIC",
1419
+ description: "基本Force Directed Bubbles參數",
1420
+ // chartParams: {
1421
+ // padding: {
1422
+ // top: 40,
1423
+ // right: 40,
1424
+ // bottom: 60,
1425
+ // left: 40
1426
+ // },
1427
+ // },
1428
+ allPluginParams: {
1429
+ ForceDirectedBubbles: {},
1430
+ RelationshipLegend: {
1431
+ listRectRadius: 7
1432
+ // 圓型圖例列點
1433
+ }
1434
+ }
1417
1435
  }, K = {
1436
+ name: "PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",
1437
+ description: "Force Directed Bubbles固定箭頭寬度",
1438
+ // chartParams: {
1439
+ // padding: {
1440
+ // top: 40,
1441
+ // right: 40,
1442
+ // bottom: 60,
1443
+ // left: 40
1444
+ // },
1445
+ // },
1446
+ allPluginParams: {
1447
+ ForceDirectedBubbles: {
1448
+ arrow: {
1449
+ strokeWidthMin: 1.5,
1450
+ strokeWidthMax: 1.5
1451
+ }
1452
+ },
1453
+ RelationshipLegend: {
1454
+ listRectRadius: 7
1455
+ // 圓型圖例列點
1456
+ }
1457
+ }
1458
+ }, j = {
1459
+ name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",
1460
+ description: "Force Directed Bubbles沒有箭頭",
1461
+ // chartParams: {
1462
+ // padding: {
1463
+ // top: 40,
1464
+ // right: 40,
1465
+ // bottom: 60,
1466
+ // left: 40
1467
+ // },
1468
+ // },
1469
+ allPluginParams: {
1470
+ ForceDirectedBubbles: {
1471
+ arrow: {
1472
+ pointerWidth: 0,
1473
+ pointerHeight: 0
1474
+ // strokeWidthMin: 1.5,
1475
+ // strokeWidthMax: 9
1476
+ }
1477
+ },
1478
+ RelationshipLegend: {
1479
+ listRectRadius: 7
1480
+ // 圓型圖例列點
1481
+ }
1482
+ }
1483
+ }, q = {
1484
+ name: "PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",
1485
+ description: "Force Directed Bubbles無滑鼠托曳及縮放控制",
1486
+ // chartParams: {
1487
+ // padding: {
1488
+ // top: 40,
1489
+ // right: 40,
1490
+ // bottom: 60,
1491
+ // left: 40
1492
+ // },
1493
+ // },
1494
+ allPluginParams: {
1495
+ ForceDirectedBubbles: {
1496
+ zoomable: !1
1497
+ },
1498
+ RelationshipLegend: {
1499
+ listRectRadius: 7
1500
+ // 圓型圖例列點
1501
+ }
1502
+ }
1503
+ }, J = {
1418
1504
  name: "PRESET_FORCE_DIRECTED_NONE_ZOOM",
1419
- description: "基本Force Directed參數",
1505
+ description: "Force Directed無滑鼠托曳及縮放控制",
1420
1506
  // chartParams: {
1421
1507
  // padding: {
1422
1508
  // top: 40,
@@ -1434,7 +1520,7 @@ const _ = {
1434
1520
  // 圓型圖例列點
1435
1521
  }
1436
1522
  }
1437
- }, z = {
1523
+ }, Q = {
1438
1524
  name: "PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",
1439
1525
  description: "基本Force Directed參數",
1440
1526
  // chartParams: {
@@ -1447,11 +1533,11 @@ const _ = {
1447
1533
  // },
1448
1534
  allPluginParams: {
1449
1535
  ForceDirected: {
1450
- node: {
1451
- labelSizeFixed: !0
1536
+ dotLabel: {
1537
+ sizeFixed: !0
1452
1538
  },
1453
- edge: {
1454
- labelSizeFixed: !0
1539
+ arrowLabel: {
1540
+ sizeFixed: !0
1455
1541
  }
1456
1542
  },
1457
1543
  RelationshipLegend: {
@@ -1459,9 +1545,9 @@ const _ = {
1459
1545
  // 圓型圖例列點
1460
1546
  }
1461
1547
  }
1462
- }, j = {
1548
+ }, $ = {
1463
1549
  name: "PRESET_FORCE_DIRECTED_NONE_ARROW",
1464
- description: "基本Force Directed參數",
1550
+ description: "Force Directed沒有箭頭",
1465
1551
  // chartParams: {
1466
1552
  // padding: {
1467
1553
  // top: 40,
@@ -1472,9 +1558,9 @@ const _ = {
1472
1558
  // },
1473
1559
  allPluginParams: {
1474
1560
  ForceDirected: {
1475
- edge: {
1476
- arrowWidth: 0,
1477
- arrowHeight: 0
1561
+ arrow: {
1562
+ pointerWidth: 0,
1563
+ pointerHeight: 0
1478
1564
  }
1479
1565
  },
1480
1566
  RelationshipLegend: {
@@ -1482,7 +1568,7 @@ const _ = {
1482
1568
  // 圓型圖例列點
1483
1569
  }
1484
1570
  }
1485
- }, q = {
1571
+ }, tt = {
1486
1572
  name: "PRESET_TREE_MAP_BASIC",
1487
1573
  description: "基本Tree Map參數",
1488
1574
  chartParams: {
@@ -1505,37 +1591,41 @@ const _ = {
1505
1591
  }
1506
1592
  };
1507
1593
  export {
1508
- _ as PRESET_BARS_HORIZONTAL_AND_ROUND,
1594
+ u as PRESET_BARS_HORIZONTAL_AND_ROUND,
1509
1595
  P as PRESET_BARS_HORIZONTAL_AND_THIN,
1510
- p as PRESET_BARS_ROUND,
1511
- c as PRESET_BARS_THIN,
1512
- R as PRESET_BUBBLES_SCALING_BY_RADIUS,
1513
- S as PRESET_BUBBLES_SEPARATE_SERIES,
1596
+ c as PRESET_BARS_ROUND,
1597
+ p as PRESET_BARS_THIN,
1598
+ g as PRESET_BUBBLES_SCALING_BY_RADIUS,
1599
+ _ as PRESET_BUBBLES_SEPARATE_SERIES,
1514
1600
  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,
1601
+ z as PRESET_FORCE_DIRECTED_BUBBLES_BASIC,
1602
+ K as PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH,
1603
+ j as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW,
1604
+ q as PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM,
1605
+ Q as PRESET_FORCE_DIRECTED_FIX_FONT_SIZE,
1606
+ $ as PRESET_FORCE_DIRECTED_NONE_ARROW,
1607
+ J as PRESET_FORCE_DIRECTED_NONE_ZOOM,
1518
1608
  m as PRESET_GRID_BASIC,
1519
1609
  A as PRESET_GRID_HORIZONTAL,
1520
1610
  T as PRESET_GRID_PN_SCALE,
1521
1611
  I as PRESET_GRID_ROTATE_AXIS_LABEL,
1522
1612
  L as PRESET_GRID_SEPARATE_SERIES,
1523
- B as PRESET_LINES_BASIC,
1524
- N as PRESET_LINES_CURVE,
1525
- O as PRESET_LINES_HORIZONTAL,
1613
+ O as PRESET_LINES_BASIC,
1614
+ M as PRESET_LINES_CURVE,
1615
+ N as PRESET_LINES_HORIZONTAL,
1526
1616
  C as PRESET_LINES_LOOSE_TICKS,
1527
1617
  F as PRESET_LINES_ROTATE_AXIS_LABEL,
1528
- v as PRESET_LINES_WITH_SOLID_DOTS,
1618
+ U as PRESET_LINES_WITH_SOLID_DOTS,
1529
1619
  h as PRESET_LINE_AREAS_BASIC,
1530
- x as PRESET_LINE_AREAS_CURVE,
1531
- b as PRESET_LINE_AREAS_HORIZONTAL,
1532
- G as PRESET_LINE_AREAS_LOOSE_TICKS,
1620
+ b as PRESET_LINE_AREAS_CURVE,
1621
+ x as PRESET_LINE_AREAS_HORIZONTAL,
1622
+ B as PRESET_LINE_AREAS_LOOSE_TICKS,
1533
1623
  D as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
1534
- M as PRESET_LINE_AREAS_SEPARATE_SERIES,
1535
- U as PRESET_MULTI_GRID_BASIC,
1624
+ G as PRESET_LINE_AREAS_SEPARATE_SERIES,
1625
+ v as PRESET_MULTI_GRID_BASIC,
1536
1626
  H as PRESET_MULTI_GRID_DIVERGING,
1537
- V as PRESET_MULTI_GRID_ROUND_STYLE,
1538
- f as PRESET_MULTI_GRID_SEPARATE_GRID,
1627
+ f as PRESET_MULTI_GRID_ROUND_STYLE,
1628
+ V as PRESET_MULTI_GRID_SEPARATE_GRID,
1539
1629
  W as PRESET_MULTI_LINES_SEPARATE_GRID,
1540
1630
  k as PRESET_MULTI_LINE_AREAS_SEPARATE_GRID,
1541
1631
  Z as PRESET_MULTI_VALUE_BASIC,
@@ -1548,9 +1638,9 @@ export {
1548
1638
  n as PRESET_ROSE_SCALING_BY_RADIUS,
1549
1639
  y as PRESET_SCATTER_BUBBLES_LINEAR_OPACITY,
1550
1640
  Y as PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS,
1551
- u as PRESET_SERIES_BASIC,
1641
+ S as PRESET_SERIES_BASIC,
1552
1642
  E as PRESET_SERIES_SEPARATE_SERIES,
1553
1643
  d as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
1554
- g as PRESET_SERIES_SUM_SERIES,
1555
- q as PRESET_TREE_MAP_BASIC
1644
+ R as PRESET_SERIES_SUM_SERIES,
1645
+ tt as PRESET_TREE_MAP_BASIC
1556
1646
  };
@@ -1 +1 @@
1
- (function(t,i){typeof exports=="object"&&typeof module<"u"?i(exports):typeof define=="function"&&define.amd?define(["exports"],i):(t=typeof globalThis<"u"?globalThis:t||self,i(t["orbcharts-presets-basic"]={}))})(this,function(t){"use strict";const i={name:"PRESET_BUBBLES_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的泡泡圖",allPluginParams:{Bubbles:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}},g={name:"PRESET_BUBBLES_SEPARATE_SERIES",description:"分開顯示Series泡泡",chartParams:{padding:{top:160,right:160,bottom:160,left:160}},dataFormatter:{separateSeries:!0},allPluginParams:{Bubbles:{},SeriesLegend:{listRectRadius:7},SeriesTooltip:{}}},E={name:"PRESET_PIE_BASIC",description:"基本Pie參數",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{SeriesLegend:{listRectRadius:7}}};E.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const r={name:"PRESET_PIE_DONUT",description:"甜甜圈圖",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Pie:{innerRadius:.5},PieLabels:{},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};r.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const l={name:"PRESET_PIE_HALF_DONUT",description:"半圓甜甜圈圖",chartParams:{padding:{top:120,right:120,bottom:0,left:60}},dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Pie:{innerRadius:.5,startAngle:-Math.PI/2,endAngle:Math.PI/2},PieLabels:{startAngle:-Math.PI/2,endAngle:Math.PI/2},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};l.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const s={name:"PRESET_PIE_WITH_INNER_LABELS",description:"圓餅圖及內部資料標籤",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Pie:{},PieLabels:{labelCentroid:1.3,labelColorType:"primary"},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};s.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const n={name:"PRESET_ROSE_BASIC",description:"基本Rose參數",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{SeriesLegend:{listRectRadius:7}}};n.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const d={name:"PRESET_ROSE_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的玫瑰圖",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Rose:{arcScaleType:"radius"},RoseLabels:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}};d.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const P={name:"PRESET_SERIES_BASIC",description:"基本Series參數",allPluginParams:{SeriesLegend:{listRectRadius:7}}},_={name:"PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",description:"分開顯示Series並合併Series資料",dataFormatter:{sort:(e,a)=>a.value-e.value,separateSeries:!0,sumSeries:!0},allPluginParams:{}};_.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const o={name:"PRESET_SERIES_SEPARATE_SERIES",description:"分開顯示Series",dataFormatter:{sort:(e,a)=>a.value-e.value,separateSeries:!0},allPluginParams:{}};o.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const R={name:"PRESET_SERIES_SUM_SERIES",description:"合併Series資料",dataFormatter:{sort:(e,a)=>a.value-e.value,sumSeries:!0},allPluginParams:{}};R.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const A={name:"PRESET_BARS_HORIZONTAL_AND_ROUND",description:"橫向圓角長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},T={name:"PRESET_BARS_HORIZONTAL_AND_THIN",description:"橫向細長長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},u={name:"PRESET_BARS_ROUND",description:"圓角長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},I={name:"PRESET_BARS_THIN",description:"細長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},c={name:"PRESET_GRID_BASIC",description:"基本Grid參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},m={name:"PRESET_GRID_HORIZONTAL",description:"橫向圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},p={name:"PRESET_GRID_PN_SCALE",description:"正負值分向圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},dataFormatter:{valueAxis:{scaleDomain:["auto","auto"],scaleRange:[.05,.95]}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},L={name:"PRESET_GRID_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},allPluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},h={name:"PRESET_GRID_SEPARATE_SERIES",description:"分開顯示Series",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{separateSeries:!0},allPluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},b={name:"PRESET_LINE_AREAS_BASIC",description:"基本LineArea參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},G={name:"PRESET_LINE_AREAS_CURVE",description:"弧線折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},LineAreas:{lineCurve:"curveMonotoneX"},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},D={name:"PRESET_LINE_AREAS_HORIZONTAL",description:"橫向折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left",scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},N={name:"PRESET_LINE_AREAS_LOOSE_TICKS",description:"寬鬆標籤",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},B={name:"PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{padding:{top:60,right:60,bottom:160,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},O={name:"PRESET_LINE_AREAS_SEPARATE_SERIES",description:"LineAreas 分開顯示Series",chartParams:{padding:{top:60,right:60,bottom:160,left:60},highlightTarget:"series"},dataFormatter:{separateSeries:!0,groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},M={name:"PRESET_LINES_BASIC",description:"基本Lines參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},C={name:"PRESET_LINES_CURVE",description:"弧線折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},x={name:"PRESET_LINES_HORIZONTAL",description:"橫向折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},U={name:"PRESET_LINES_LOOSE_TICKS",description:"寬鬆標籤",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},F={name:"PRESET_LINES_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{padding:{top:60,right:60,bottom:160,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},H={name:"PRESET_LINES_WITH_SOLID_DOTS",description:"折線圖及實心圓點",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{radius:3,fillColorType:"label",onlyShowHighlighted:!1},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},v={name:"PRESET_MULTI_GRID_BASIC",description:"基本MultiGrid參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{MultiGridLegend:{placement:"bottom",padding:14,gridList:[{},{listRectHeight:2}]}}},f={name:"PRESET_MULTI_GRID_DIVERGING",description:"雙向折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},dataFormatter:{gridList:[{groupAxis:{position:"right"},valueAxis:{position:"bottom"}},{groupAxis:{position:"left"},valueAxis:{position:"bottom"}}],container:{gap:200,rowAmount:1,columnAmount:2},separateGrid:!0},allPluginParams:{MultiGroupAxis:{tickPadding:60,gridIndexes:[0]},MultiValueAxis:{gridIndexes:[0,1]},MultiStackedValueAxis:{gridIndexes:[0,1]},MultiBars:{gridIndexes:[0,1]},MultiStackedBar:{gridIndexes:[0,1]},MultiBarsTriangle:{gridIndexes:[0,1]},MultiLines:{gridIndexes:[0,1]},MultiLineAreas:{gridIndexes:[0,1]},MultiDots:{gridIndexes:[0,1]},MultiGridLegend:{placement:"bottom",padding:14}}},V={name:"PRESET_MULTI_GRID_ROUND_STYLE",description:"MultiGrid圓弧風格",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{MultiBars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},MultiStackedBar:{},MultiDots:{},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectRadius:7},{listRectHeight:2}]},MultiGroupAxis:{},MultiLineAreas:{},MultiLines:{lineCurve:"curveMonotoneX",lineWidth:3},MultiValueAxis:{},MultiStackedValueAxis:{},OverlappingValueAxes:{},OverlappingStackedValueAxes:{}}},k={name:"PRESET_MULTI_GRID_SEPARATE_GRID",description:"2組Grid圖表",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{separateGrid:!0},allPluginParams:{MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBar:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14}}},S={},Z={name:"PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",description:"2組區域圖表",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{gridList:[{groupAxis:{scalePadding:0}},{groupAxis:{scalePadding:0}}],separateGrid:!0},allPluginParams:{...S,MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBar:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2}]}}},W={name:"PRESET_MULTI_LINES_SEPARATE_GRID",description:"多組分開折線圖表",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{separateGrid:!0},allPluginParams:{...S,MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBar:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2}]}}},Y={name:"PRESET_MULTI_VALUE_BASIC",description:"基本MultiValue參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},X={name:"PRESET_MULTI_VALUE_SEPARATE_CATEGORY",description:"MultiValue 分開顯示category",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},dataFormatter:{separateCategory:!0},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},y={name:"PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",description:"ScatterBubbles以半徑尺寸為比例",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14},ScatterBubbles:{arcScaleType:"radius"}}},K={name:"PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",description:"ScatterBubbles漸變透明度",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14},ScatterBubbles:{valueLinearOpacity:[.6,.95]}}},w={name:"PRESET_FORCE_DIRECTED_BASIC",description:"基本Force Directed參數",allPluginParams:{ForceDirected:{},RelationshipLegend:{listRectRadius:7}}},z={name:"PRESET_FORCE_DIRECTED_NONE_ZOOM",description:"基本Force Directed參數",allPluginParams:{ForceDirected:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},j={name:"PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",description:"基本Force Directed參數",allPluginParams:{ForceDirected:{node:{labelSizeFixed:!0},edge:{labelSizeFixed:!0}},RelationshipLegend:{listRectRadius:7}}},q={name:"PRESET_FORCE_DIRECTED_NONE_ARROW",description:"基本Force Directed參數",allPluginParams:{ForceDirected:{edge:{arrowWidth:0,arrowHeight:0}},RelationshipLegend:{listRectRadius:7}}},J={name:"PRESET_TREE_MAP_BASIC",description:"基本Tree Map參數",chartParams:{padding:{top:40,right:40,bottom:60,left:40}},allPluginParams:{TreeMap:{},TreeLegend:{placement:"bottom",padding:14}}};t.PRESET_BARS_HORIZONTAL_AND_ROUND=A,t.PRESET_BARS_HORIZONTAL_AND_THIN=T,t.PRESET_BARS_ROUND=u,t.PRESET_BARS_THIN=I,t.PRESET_BUBBLES_SCALING_BY_RADIUS=i,t.PRESET_BUBBLES_SEPARATE_SERIES=g,t.PRESET_FORCE_DIRECTED_BASIC=w,t.PRESET_FORCE_DIRECTED_FIX_FONT_SIZE=j,t.PRESET_FORCE_DIRECTED_NONE_ARROW=q,t.PRESET_FORCE_DIRECTED_NONE_ZOOM=z,t.PRESET_GRID_BASIC=c,t.PRESET_GRID_HORIZONTAL=m,t.PRESET_GRID_PN_SCALE=p,t.PRESET_GRID_ROTATE_AXIS_LABEL=L,t.PRESET_GRID_SEPARATE_SERIES=h,t.PRESET_LINES_BASIC=M,t.PRESET_LINES_CURVE=C,t.PRESET_LINES_HORIZONTAL=x,t.PRESET_LINES_LOOSE_TICKS=U,t.PRESET_LINES_ROTATE_AXIS_LABEL=F,t.PRESET_LINES_WITH_SOLID_DOTS=H,t.PRESET_LINE_AREAS_BASIC=b,t.PRESET_LINE_AREAS_CURVE=G,t.PRESET_LINE_AREAS_HORIZONTAL=D,t.PRESET_LINE_AREAS_LOOSE_TICKS=N,t.PRESET_LINE_AREAS_ROTATE_AXIS_LABEL=B,t.PRESET_LINE_AREAS_SEPARATE_SERIES=O,t.PRESET_MULTI_GRID_BASIC=v,t.PRESET_MULTI_GRID_DIVERGING=f,t.PRESET_MULTI_GRID_ROUND_STYLE=V,t.PRESET_MULTI_GRID_SEPARATE_GRID=k,t.PRESET_MULTI_LINES_SEPARATE_GRID=W,t.PRESET_MULTI_LINE_AREAS_SEPARATE_GRID=Z,t.PRESET_MULTI_VALUE_BASIC=Y,t.PRESET_MULTI_VALUE_SEPARATE_CATEGORY=X,t.PRESET_PIE_BASIC=E,t.PRESET_PIE_DONUT=r,t.PRESET_PIE_HALF_DONUT=l,t.PRESET_PIE_WITH_INNER_LABELS=s,t.PRESET_ROSE_BASIC=n,t.PRESET_ROSE_SCALING_BY_RADIUS=d,t.PRESET_SCATTER_BUBBLES_LINEAR_OPACITY=K,t.PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS=y,t.PRESET_SERIES_BASIC=P,t.PRESET_SERIES_SEPARATE_SERIES=o,t.PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES=_,t.PRESET_SERIES_SUM_SERIES=R,t.PRESET_TREE_MAP_BASIC=J,Object.defineProperty(t,Symbol.toStringTag,{value:"Module"})});
1
+ (function(t,i){typeof exports=="object"&&typeof module<"u"?i(exports):typeof define=="function"&&define.amd?define(["exports"],i):(t=typeof globalThis<"u"?globalThis:t||self,i(t["orbcharts-presets-basic"]={}))})(this,function(t){"use strict";const i={name:"PRESET_BUBBLES_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的泡泡圖",allPluginParams:{Bubbles:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}},g={name:"PRESET_BUBBLES_SEPARATE_SERIES",description:"分開顯示Series泡泡",chartParams:{padding:{top:160,right:160,bottom:160,left:160}},dataFormatter:{separateSeries:!0},allPluginParams:{Bubbles:{},SeriesLegend:{listRectRadius:7},SeriesTooltip:{}}},E={name:"PRESET_PIE_BASIC",description:"基本Pie參數",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{SeriesLegend:{listRectRadius:7}}};E.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const r={name:"PRESET_PIE_DONUT",description:"甜甜圈圖",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Pie:{innerRadius:.5},PieLabels:{},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};r.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const l={name:"PRESET_PIE_HALF_DONUT",description:"半圓甜甜圈圖",chartParams:{padding:{top:120,right:120,bottom:0,left:60}},dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Pie:{innerRadius:.5,startAngle:-Math.PI/2,endAngle:Math.PI/2},PieLabels:{startAngle:-Math.PI/2,endAngle:Math.PI/2},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};l.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const s={name:"PRESET_PIE_WITH_INNER_LABELS",description:"圓餅圖及內部資料標籤",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Pie:{},PieLabels:{labelCentroid:1.3,labelColorType:"primary"},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};s.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const _={name:"PRESET_ROSE_BASIC",description:"基本Rose參數",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{SeriesLegend:{listRectRadius:7}}};_.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const n={name:"PRESET_ROSE_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的玫瑰圖",dataFormatter:{sort:(e,a)=>a.value-e.value},allPluginParams:{Rose:{arcScaleType:"radius"},RoseLabels:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}};n.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const P={name:"PRESET_SERIES_BASIC",description:"基本Series參數",allPluginParams:{SeriesLegend:{listRectRadius:7}}},R={name:"PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",description:"分開顯示Series並合併Series資料",dataFormatter:{sort:(e,a)=>a.value-e.value,separateSeries:!0,sumSeries:!0},allPluginParams:{}};R.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const d={name:"PRESET_SERIES_SEPARATE_SERIES",description:"分開顯示Series",dataFormatter:{sort:(e,a)=>a.value-e.value,separateSeries:!0},allPluginParams:{}};d.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const o={name:"PRESET_SERIES_SUM_SERIES",description:"合併Series資料",dataFormatter:{sort:(e,a)=>a.value-e.value,sumSeries:!0},allPluginParams:{}};o.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const A={name:"PRESET_BARS_HORIZONTAL_AND_ROUND",description:"橫向圓角長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},T={name:"PRESET_BARS_HORIZONTAL_AND_THIN",description:"橫向細長長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},u={name:"PRESET_BARS_ROUND",description:"圓角長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},I={name:"PRESET_BARS_THIN",description:"細長條圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},c={name:"PRESET_GRID_BASIC",description:"基本Grid參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},m={name:"PRESET_GRID_HORIZONTAL",description:"橫向圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},L={name:"PRESET_GRID_PN_SCALE",description:"正負值分向圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},dataFormatter:{valueAxis:{scaleDomain:["auto","auto"],scaleRange:[.05,.95]}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},p={name:"PRESET_GRID_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},allPluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},h={name:"PRESET_GRID_SEPARATE_SERIES",description:"分開顯示Series",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{separateSeries:!0},allPluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},B={name:"PRESET_LINE_AREAS_BASIC",description:"基本LineArea參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},D={name:"PRESET_LINE_AREAS_CURVE",description:"弧線折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},LineAreas:{lineCurve:"curveMonotoneX"},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},b={name:"PRESET_LINE_AREAS_HORIZONTAL",description:"橫向折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left",scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},O={name:"PRESET_LINE_AREAS_LOOSE_TICKS",description:"寬鬆標籤",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},N={name:"PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{padding:{top:60,right:60,bottom:160,left:60},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},G={name:"PRESET_LINE_AREAS_SEPARATE_SERIES",description:"LineAreas 分開顯示Series",chartParams:{padding:{top:60,right:60,bottom:160,left:60},highlightTarget:"series"},dataFormatter:{separateSeries:!0,groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},C={name:"PRESET_LINES_BASIC",description:"基本Lines參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},M={name:"PRESET_LINES_CURVE",description:"弧線折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},x={name:"PRESET_LINES_HORIZONTAL",description:"橫向折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},U={name:"PRESET_LINES_LOOSE_TICKS",description:"寬鬆標籤",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},F={name:"PRESET_LINES_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{padding:{top:60,right:60,bottom:160,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},H={name:"PRESET_LINES_WITH_SOLID_DOTS",description:"折線圖及實心圓點",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{radius:3,fillColorType:"label",onlyShowHighlighted:!1},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},v={name:"PRESET_MULTI_GRID_BASIC",description:"基本MultiGrid參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{MultiGridLegend:{placement:"bottom",padding:14,gridList:[{},{listRectHeight:2}]}}},f={name:"PRESET_MULTI_GRID_DIVERGING",description:"雙向折線圖",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},dataFormatter:{gridList:[{groupAxis:{position:"right"},valueAxis:{position:"bottom"}},{groupAxis:{position:"left"},valueAxis:{position:"bottom"}}],container:{gap:200,rowAmount:1,columnAmount:2},separateGrid:!0},allPluginParams:{MultiGroupAxis:{tickPadding:60,gridIndexes:[0]},MultiValueAxis:{gridIndexes:[0,1]},MultiStackedValueAxis:{gridIndexes:[0,1]},MultiBars:{gridIndexes:[0,1]},MultiStackedBar:{gridIndexes:[0,1]},MultiBarsTriangle:{gridIndexes:[0,1]},MultiLines:{gridIndexes:[0,1]},MultiLineAreas:{gridIndexes:[0,1]},MultiDots:{gridIndexes:[0,1]},MultiGridLegend:{placement:"bottom",padding:14}}},V={name:"PRESET_MULTI_GRID_ROUND_STYLE",description:"MultiGrid圓弧風格",chartParams:{padding:{top:60,right:60,bottom:120,left:60},highlightTarget:"series"},allPluginParams:{MultiBars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},MultiStackedBar:{},MultiDots:{},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectRadius:7},{listRectHeight:2}]},MultiGroupAxis:{},MultiLineAreas:{},MultiLines:{lineCurve:"curveMonotoneX",lineWidth:3},MultiValueAxis:{},MultiStackedValueAxis:{},OverlappingValueAxes:{},OverlappingStackedValueAxes:{}}},W={name:"PRESET_MULTI_GRID_SEPARATE_GRID",description:"2組Grid圖表",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{separateGrid:!0},allPluginParams:{MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBar:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14}}},S={},k={name:"PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",description:"2組區域圖表",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{gridList:[{groupAxis:{scalePadding:0}},{groupAxis:{scalePadding:0}}],separateGrid:!0},allPluginParams:{...S,MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBar:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2}]}}},Z={name:"PRESET_MULTI_LINES_SEPARATE_GRID",description:"多組分開折線圖表",chartParams:{padding:{top:60,right:60,bottom:160,left:60}},dataFormatter:{separateGrid:!0},allPluginParams:{...S,MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBar:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2}]}}},X={name:"PRESET_MULTI_VALUE_BASIC",description:"基本MultiValue參數",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},Y={name:"PRESET_MULTI_VALUE_SEPARATE_CATEGORY",description:"MultiValue 分開顯示category",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},dataFormatter:{separateCategory:!0},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},y={name:"PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",description:"ScatterBubbles以半徑尺寸為比例",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14},ScatterBubbles:{arcScaleType:"radius"}}},w={name:"PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",description:"ScatterBubbles漸變透明度",chartParams:{padding:{top:60,right:60,bottom:120,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14},ScatterBubbles:{valueLinearOpacity:[.6,.95]}}},K={name:"PRESET_FORCE_DIRECTED_BASIC",description:"基本Force Directed參數",allPluginParams:{ForceDirected:{},RelationshipLegend:{listRectRadius:7}}},z={name:"PRESET_FORCE_DIRECTED_BUBBLES_BASIC",description:"基本Force Directed Bubbles參數",allPluginParams:{ForceDirectedBubbles:{},RelationshipLegend:{listRectRadius:7}}},j={name:"PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",description:"Force Directed Bubbles固定箭頭寬度",allPluginParams:{ForceDirectedBubbles:{arrow:{strokeWidthMin:1.5,strokeWidthMax:1.5}},RelationshipLegend:{listRectRadius:7}}},q={name:"PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",description:"Force Directed Bubbles沒有箭頭",allPluginParams:{ForceDirectedBubbles:{arrow:{pointerWidth:0,pointerHeight:0}},RelationshipLegend:{listRectRadius:7}}},J={name:"PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",description:"Force Directed Bubbles無滑鼠托曳及縮放控制",allPluginParams:{ForceDirectedBubbles:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},Q={name:"PRESET_FORCE_DIRECTED_NONE_ZOOM",description:"Force Directed無滑鼠托曳及縮放控制",allPluginParams:{ForceDirected:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},$={name:"PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",description:"基本Force Directed參數",allPluginParams:{ForceDirected:{dotLabel:{sizeFixed:!0},arrowLabel:{sizeFixed:!0}},RelationshipLegend:{listRectRadius:7}}},tt={name:"PRESET_FORCE_DIRECTED_NONE_ARROW",description:"Force Directed沒有箭頭",allPluginParams:{ForceDirected:{arrow:{pointerWidth:0,pointerHeight:0}},RelationshipLegend:{listRectRadius:7}}},et={name:"PRESET_TREE_MAP_BASIC",description:"基本Tree Map參數",chartParams:{padding:{top:40,right:40,bottom:60,left:40}},allPluginParams:{TreeMap:{},TreeLegend:{placement:"bottom",padding:14}}};t.PRESET_BARS_HORIZONTAL_AND_ROUND=A,t.PRESET_BARS_HORIZONTAL_AND_THIN=T,t.PRESET_BARS_ROUND=u,t.PRESET_BARS_THIN=I,t.PRESET_BUBBLES_SCALING_BY_RADIUS=i,t.PRESET_BUBBLES_SEPARATE_SERIES=g,t.PRESET_FORCE_DIRECTED_BASIC=K,t.PRESET_FORCE_DIRECTED_BUBBLES_BASIC=z,t.PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH=j,t.PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW=q,t.PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM=J,t.PRESET_FORCE_DIRECTED_FIX_FONT_SIZE=$,t.PRESET_FORCE_DIRECTED_NONE_ARROW=tt,t.PRESET_FORCE_DIRECTED_NONE_ZOOM=Q,t.PRESET_GRID_BASIC=c,t.PRESET_GRID_HORIZONTAL=m,t.PRESET_GRID_PN_SCALE=L,t.PRESET_GRID_ROTATE_AXIS_LABEL=p,t.PRESET_GRID_SEPARATE_SERIES=h,t.PRESET_LINES_BASIC=C,t.PRESET_LINES_CURVE=M,t.PRESET_LINES_HORIZONTAL=x,t.PRESET_LINES_LOOSE_TICKS=U,t.PRESET_LINES_ROTATE_AXIS_LABEL=F,t.PRESET_LINES_WITH_SOLID_DOTS=H,t.PRESET_LINE_AREAS_BASIC=B,t.PRESET_LINE_AREAS_CURVE=D,t.PRESET_LINE_AREAS_HORIZONTAL=b,t.PRESET_LINE_AREAS_LOOSE_TICKS=O,t.PRESET_LINE_AREAS_ROTATE_AXIS_LABEL=N,t.PRESET_LINE_AREAS_SEPARATE_SERIES=G,t.PRESET_MULTI_GRID_BASIC=v,t.PRESET_MULTI_GRID_DIVERGING=f,t.PRESET_MULTI_GRID_ROUND_STYLE=V,t.PRESET_MULTI_GRID_SEPARATE_GRID=W,t.PRESET_MULTI_LINES_SEPARATE_GRID=Z,t.PRESET_MULTI_LINE_AREAS_SEPARATE_GRID=k,t.PRESET_MULTI_VALUE_BASIC=X,t.PRESET_MULTI_VALUE_SEPARATE_CATEGORY=Y,t.PRESET_PIE_BASIC=E,t.PRESET_PIE_DONUT=r,t.PRESET_PIE_HALF_DONUT=l,t.PRESET_PIE_WITH_INNER_LABELS=s,t.PRESET_ROSE_BASIC=_,t.PRESET_ROSE_SCALING_BY_RADIUS=n,t.PRESET_SCATTER_BUBBLES_LINEAR_OPACITY=w,t.PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS=y,t.PRESET_SERIES_BASIC=P,t.PRESET_SERIES_SEPARATE_SERIES=d,t.PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES=R,t.PRESET_SERIES_SUM_SERIES=o,t.PRESET_TREE_MAP_BASIC=et,Object.defineProperty(t,Symbol.toStringTag,{value:"Module"})});
@@ -1,8 +1,9 @@
1
- import { PresetSeriesPluginParams, PresetGridPluginParams, PresetMultiGridPluginParams, PresetMultiValuePluginParams, PresetTreePluginParams, PresetNoneDataPluginParams } from './types';
1
+ import { PresetSeriesPluginParams, PresetGridPluginParams, PresetMultiGridPluginParams, PresetMultiValuePluginParams, PresetRelationshipPluginParams, PresetTreePluginParams, PresetNoneDataPluginParams } from './types';
2
2
 
3
3
  export declare const ALL_PLUGIN_PARAMS_SERIES: PresetSeriesPluginParams;
4
4
  export declare const ALL_PLUGIN_PARAMS_GRID: PresetGridPluginParams;
5
5
  export declare const ALL_PLUGIN_PARAMS_MULTI_GRID: PresetMultiGridPluginParams;
6
6
  export declare const ALL_PLUGIN_PARAMS_MULTI_VALUE: PresetMultiValuePluginParams;
7
+ export declare const ALL_PLUGIN_PARAMS_RELATIONSHIP: PresetRelationshipPluginParams;
7
8
  export declare const ALL_PLUGIN_PARAMS_TREE: PresetTreePluginParams;
8
9
  export declare const ALL_PLUGIN_PARAMS_NONE_DATA: PresetNoneDataPluginParams;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetRelationshipPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_FORCE_DIRECTED_BUBBLES_BASIC: PresetPartial<'relationship', Partial<PresetRelationshipPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetRelationshipPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH: PresetPartial<'relationship', Partial<PresetRelationshipPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetRelationshipPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW: PresetPartial<'relationship', Partial<PresetRelationshipPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetRelationshipPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM: PresetPartial<'relationship', Partial<PresetRelationshipPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -1,4 +1,8 @@
1
1
  export { PRESET_FORCE_DIRECTED_BASIC } from './PRESET_FORCE_DIRECTED_BASIC';
2
+ export { PRESET_FORCE_DIRECTED_BUBBLES_BASIC } from './PRESET_FORCE_DIRECTED_BUBBLES_BASIC';
3
+ export { PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH } from './PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH';
4
+ export { PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW } from './PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW';
5
+ export { PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM } from './PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM';
2
6
  export { PRESET_FORCE_DIRECTED_NONE_ZOOM } from './PRESET_FORCE_DIRECTED_NONE_ZOOM';
3
7
  export { PRESET_FORCE_DIRECTED_FIX_FONT_SIZE } from './PRESET_FORCE_DIRECTED_FIX_FONT_SIZE';
4
8
  export { PRESET_FORCE_DIRECTED_NONE_ARROW } from './PRESET_FORCE_DIRECTED_NONE_ARROW';
@@ -1,4 +1,4 @@
1
- import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams, SeriesTooltipParams, BarsParams, BarsPNParams, StackedBarParams, BarsTriangleParams, DotsParams, GridLegendParams, GroupAuxParams, GroupAxisParams, LineAreasParams, LinesParams, GridTooltipParams, GridZoomParams, ValueAxisParams, StackedValueAxisParams, MultiBarsParams, MultiStackedBarParams, MultiBarsTriangleParams, MultiDotsParams, MultiGridLegendParams, MultiGridTooltipParams, MultiGroupAxisParams, MultiLineAreasParams, MultiLinesParams, MultiValueAxisParams, MultiStackedValueAxisParams, OverlappingValueAxesParams, OverlappingStackedValueAxesParams, MultiValueLegendParams, MultiValueTooltipParams, ScatterParams, ScatterBubblesParams, XYAuxParams, XYAxesParams, XYZoomParams, ForceDirectedParams, RelationshipLegendParams, RelationshipTooltipParams, TreeLegendParams, TreeMapParams, TreeTooltipParams } from '../lib/plugins-basic-types';
1
+ import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams, SeriesTooltipParams, BarsParams, BarsPNParams, StackedBarParams, BarsTriangleParams, DotsParams, GridLegendParams, GroupAuxParams, GroupAxisParams, LineAreasParams, LinesParams, GridTooltipParams, GridZoomParams, ValueAxisParams, StackedValueAxisParams, MultiBarsParams, MultiStackedBarParams, MultiBarsTriangleParams, MultiDotsParams, MultiGridLegendParams, MultiGridTooltipParams, MultiGroupAxisParams, MultiLineAreasParams, MultiLinesParams, MultiValueAxisParams, MultiStackedValueAxisParams, OverlappingValueAxesParams, OverlappingStackedValueAxesParams, MultiValueLegendParams, MultiValueTooltipParams, ScatterParams, ScatterBubblesParams, XYAuxParams, XYAxesParams, XYZoomParams, ForceDirectedParams, ForceDirectedBubblesParams, RelationshipLegendParams, RelationshipTooltipParams, TreeLegendParams, TreeMapParams, TreeTooltipParams } from '../lib/plugins-basic-types';
2
2
 
3
3
  type DeepPartial<T> = Partial<{
4
4
  [P in keyof T]: DeepPartial<T[P]>;
@@ -141,10 +141,13 @@ export interface PresetXYAxesParams {
141
141
  export interface PresetXYZoomParams {
142
142
  XYZoom: Partial<XYZoomParams>;
143
143
  }
144
- export type PresetRelationshipPluginParams = PresetForceDirectedParams & PresetRelationshipLegendParams & PresetRelationshipTooltipParams;
144
+ export type PresetRelationshipPluginParams = PresetForceDirectedParams & PresetForceDirectedBubblesParams & PresetRelationshipLegendParams & PresetRelationshipTooltipParams;
145
145
  export interface PresetForceDirectedParams {
146
146
  ForceDirected: DeepPartial<ForceDirectedParams>;
147
147
  }
148
+ export interface PresetForceDirectedBubblesParams {
149
+ ForceDirectedBubbles: DeepPartial<ForceDirectedBubblesParams>;
150
+ }
148
151
  export interface PresetRelationshipLegendParams {
149
152
  RelationshipLegend: Partial<RelationshipLegendParams>;
150
153
  }
package/lib/core-types.ts CHANGED
@@ -1,7 +1,7 @@
1
-
2
-
3
- export * from '@orbcharts/core-types'
4
-
5
- // test
6
- // export * from '../../orbcharts-core-types/src'
7
-
1
+
2
+
3
+ export * from '@orbcharts/core-types'
4
+
5
+ // test
6
+ // export * from '../../orbcharts-core-types/src'
7
+
@@ -1,6 +1,6 @@
1
-
2
-
3
- export * from '@orbcharts/plugins-basic-types'
4
-
5
- // test
6
- // export * from '../../orbcharts-plugins-basic-types/src'
1
+
2
+
3
+ export * from '@orbcharts/plugins-basic-types'
4
+
5
+ // test
6
+ // export * from '../../orbcharts-plugins-basic-types/src'
package/package.json CHANGED
@@ -1,42 +1,42 @@
1
- {
2
- "name": "@orbcharts/presets-basic",
3
- "version": "3.0.0-beta.6",
4
- "description": "presets for OrbCharts",
5
- "author": "Blue Planet Inc.",
6
- "license": "Apache-2.0",
7
- "keywords": [
8
- "d3",
9
- "rxjs",
10
- "svg",
11
- "visualization",
12
- "infographic",
13
- "graph",
14
- "chart"
15
- ],
16
- "private": false,
17
- "publishConfig": {
18
- "access": "public",
19
- "registry": "https://registry.npmjs.org/"
20
- },
21
- "files": [
22
- "*"
23
- ],
24
- "module": "./dist/orbcharts-presets-basic.es.js",
25
- "types": "./dist/src/index.d.ts",
26
- "scripts": {
27
- "test": "echo \"Error: no test specified\" && exit 1",
28
- "build": "vite build --mode production"
29
- },
30
- "devDependencies": {
31
- "@types/d3": "^7.4.0",
32
- "ts-loader": "^9.4.2",
33
- "typescript": "^5.0.4",
34
- "vite": "^5.3.5",
35
- "vite-plugin-dts": "^3.7.3"
36
- },
37
- "dependencies": {
38
- "@orbcharts/core-types": "^3.0.0-beta.5",
39
- "@orbcharts/plugins-basic-types": "^3.0.0-beta.8",
40
- "d3": "^7.8.5"
41
- }
42
- }
1
+ {
2
+ "name": "@orbcharts/presets-basic",
3
+ "version": "3.0.0-beta.8",
4
+ "description": "presets for OrbCharts",
5
+ "author": "Blue Planet Inc.",
6
+ "license": "Apache-2.0",
7
+ "keywords": [
8
+ "d3",
9
+ "rxjs",
10
+ "svg",
11
+ "visualization",
12
+ "infographic",
13
+ "graph",
14
+ "chart"
15
+ ],
16
+ "private": false,
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "registry": "https://registry.npmjs.org/"
20
+ },
21
+ "files": [
22
+ "*"
23
+ ],
24
+ "module": "./dist/orbcharts-presets-basic.es.js",
25
+ "types": "./dist/src/index.d.ts",
26
+ "scripts": {
27
+ "test": "echo \"Error: no test specified\" && exit 1",
28
+ "build": "vite build --mode production"
29
+ },
30
+ "devDependencies": {
31
+ "@types/d3": "^7.4.0",
32
+ "ts-loader": "^9.4.2",
33
+ "typescript": "^5.0.4",
34
+ "vite": "^5.3.5",
35
+ "vite-plugin-dts": "^3.7.3"
36
+ },
37
+ "dependencies": {
38
+ "@orbcharts/core-types": "^3.0.0-beta.5",
39
+ "@orbcharts/plugins-basic-types": "^3.0.0-beta.10",
40
+ "d3": "^7.8.5"
41
+ }
42
+ }