@orbcharts/presets-basic 3.0.0-beta.11 → 3.0.0-beta.13

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 (147) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-presets-basic.es.js +1985 -644
  3. package/dist/orbcharts-presets-basic.umd.js +1 -1
  4. package/dist/src/grid/PRESET_GRID_PN_SCALE_SIMPLE.d.ts +4 -0
  5. package/dist/src/grid/PRESET_GRID_SIMPLE.d.ts +4 -0
  6. package/dist/src/grid/PRESET_LINES_SIMPLE.d.ts +4 -0
  7. package/dist/src/grid/PRESET_LINE_AREAS_SIMPLE.d.ts +4 -0
  8. package/dist/src/grid/index.d.ts +4 -0
  9. package/dist/src/multiGrid/PRESET_MULTI_GRID_DIVERGING_SIMPLE.d.ts +4 -0
  10. package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.d.ts +3 -1
  11. package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE.d.ts +6 -0
  12. package/dist/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE.d.ts +4 -0
  13. package/dist/src/multiGrid/PRESET_MULTI_GRID_SIMPLE.d.ts +4 -0
  14. package/dist/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE.d.ts +4 -0
  15. package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE.d.ts +4 -0
  16. package/dist/src/multiGrid/index.d.ts +6 -0
  17. package/dist/src/multiValue/PRESET_MULTI_VALUE_SIMPLE.d.ts +4 -0
  18. package/dist/src/multiValue/PRESET_RACING_BARS_ALL_ITEMS.d.ts +4 -0
  19. package/dist/src/multiValue/PRESET_RACING_BARS_BASIC.d.ts +4 -0
  20. package/dist/src/multiValue/PRESET_RACING_BARS_FAST.d.ts +4 -0
  21. package/dist/src/multiValue/PRESET_RACING_BARS_FASTER.d.ts +4 -0
  22. package/dist/src/multiValue/PRESET_RACING_BARS_LOOP.d.ts +4 -0
  23. package/dist/src/multiValue/PRESET_RACING_BARS_OUTSIDE_LABELS.d.ts +4 -0
  24. package/dist/src/multiValue/PRESET_RACING_BARS_SEPARATE_CATEGORY.d.ts +4 -0
  25. package/dist/src/multiValue/PRESET_RACING_BARS_SIMPLE.d.ts +4 -0
  26. package/dist/src/multiValue/PRESET_RACING_BARS_STOP.d.ts +4 -0
  27. package/dist/src/multiValue/PRESET_SCATTER_BUBBLES_SIMPLE.d.ts +4 -0
  28. package/dist/src/multiValue/PRESET_SCATTER_SIMPLE.d.ts +4 -0
  29. package/dist/src/multiValue/index.d.ts +13 -1
  30. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE.d.ts +4 -0
  31. package/dist/src/relationship/PRESET_FORCE_DIRECTED_SIMPLE.d.ts +4 -0
  32. package/dist/src/relationship/index.d.ts +2 -0
  33. package/dist/src/series/PRESET_BUBBLES_SIMPLE.d.ts +4 -0
  34. package/dist/src/series/PRESET_PIE_SIMPLE.d.ts +4 -0
  35. package/dist/src/series/PRESET_ROSE_SIMPLE.d.ts +4 -0
  36. package/dist/src/series/index.d.ts +3 -0
  37. package/dist/src/tree/PRESET_TREE_MAP_SIMPLE.d.ts +4 -0
  38. package/dist/src/tree/index.d.ts +1 -0
  39. package/dist/src/types.d.ts +23 -17
  40. package/lib/core-types.ts +7 -7
  41. package/lib/plugins-basic-types.ts +6 -6
  42. package/package.json +42 -42
  43. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +60 -72
  44. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +61 -68
  45. package/src/grid/PRESET_BARS_ROUND.ts +56 -55
  46. package/src/grid/PRESET_BARS_THIN.ts +53 -52
  47. package/src/grid/PRESET_GRID_BASIC.ts +44 -43
  48. package/src/grid/PRESET_GRID_HORIZONTAL.ts +61 -60
  49. package/src/grid/PRESET_GRID_PN_SCALE.ts +52 -51
  50. package/src/grid/PRESET_GRID_PN_SCALE_SIMPLE.ts +49 -0
  51. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +52 -51
  52. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +57 -56
  53. package/src/grid/PRESET_GRID_SIMPLE.ts +44 -0
  54. package/src/grid/PRESET_LINES_BASIC.ts +48 -51
  55. package/src/grid/PRESET_LINES_CURVE.ts +51 -54
  56. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +50 -53
  57. package/src/grid/PRESET_LINES_HORIZONTAL.ts +56 -67
  58. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +50 -53
  59. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +53 -56
  60. package/src/grid/PRESET_LINES_SIMPLE.ts +53 -0
  61. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +52 -55
  62. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +54 -59
  63. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +65 -64
  64. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +58 -63
  65. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +58 -63
  66. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +56 -61
  67. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +59 -64
  68. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +60 -66
  69. package/src/grid/PRESET_LINE_AREAS_SIMPLE.ts +57 -0
  70. package/src/grid/index.ts +26 -22
  71. package/src/index.ts +6 -6
  72. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +50 -54
  73. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +98 -102
  74. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING_SIMPLE.ts +101 -0
  75. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +71 -74
  76. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE.ts +81 -0
  77. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +73 -76
  78. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE.ts +84 -0
  79. package/src/multiGrid/PRESET_MULTI_GRID_SIMPLE.ts +60 -0
  80. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +101 -102
  81. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE.ts +110 -0
  82. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +119 -120
  83. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE.ts +113 -0
  84. package/src/multiGrid/index.ts +12 -6
  85. package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +39 -39
  86. package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +50 -42
  87. package/src/multiValue/PRESET_MULTI_VALUE_SIMPLE.ts +39 -0
  88. package/src/multiValue/PRESET_RACING_BARS_ALL_ITEMS.ts +44 -0
  89. package/src/multiValue/PRESET_RACING_BARS_BASIC.ts +43 -0
  90. package/src/multiValue/PRESET_RACING_BARS_FAST.ts +43 -0
  91. package/src/multiValue/PRESET_RACING_BARS_FASTER.ts +43 -0
  92. package/src/multiValue/PRESET_RACING_BARS_LOOP.ts +44 -0
  93. package/src/multiValue/PRESET_RACING_BARS_OUTSIDE_LABELS.ts +47 -0
  94. package/src/multiValue/PRESET_RACING_BARS_SEPARATE_CATEGORY.ts +60 -0
  95. package/src/multiValue/PRESET_RACING_BARS_SIMPLE.ts +43 -0
  96. package/src/multiValue/PRESET_RACING_BARS_STOP.ts +42 -0
  97. package/src/multiValue/PRESET_SCATTER_BASIC.ts +40 -39
  98. package/src/multiValue/PRESET_SCATTER_BUBBLES_BASIC.ts +40 -39
  99. package/src/multiValue/PRESET_SCATTER_BUBBLES_LINEAR_OPACITY.ts +43 -42
  100. package/src/multiValue/PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS.ts +43 -42
  101. package/src/multiValue/PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY.ts +43 -42
  102. package/src/multiValue/PRESET_SCATTER_BUBBLES_SIMPLE.ts +40 -0
  103. package/src/multiValue/PRESET_SCATTER_SEPARATE_CATEGORY.ts +51 -42
  104. package/src/multiValue/PRESET_SCATTER_SIMPLE.ts +40 -0
  105. package/src/multiValue/index.ts +20 -8
  106. package/src/params.ts +83 -80
  107. package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +33 -39
  108. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.ts +33 -39
  109. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.ts +38 -44
  110. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.ts +38 -46
  111. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.ts +35 -41
  112. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE.ts +34 -0
  113. package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +40 -46
  114. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +38 -44
  115. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +35 -41
  116. package/src/relationship/PRESET_FORCE_DIRECTED_SIMPLE.ts +34 -0
  117. package/src/relationship/index.ts +10 -8
  118. package/src/series/PRESET_BUBBLES_BASIC.ts +32 -34
  119. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +35 -36
  120. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +44 -45
  121. package/src/series/PRESET_BUBBLES_SIMPLE.ts +39 -0
  122. package/src/series/PRESET_BUBBLES_SUM_SERIES.ts +34 -36
  123. package/src/series/PRESET_PIE_BASIC.ts +35 -36
  124. package/src/series/PRESET_PIE_DONUT.ts +40 -41
  125. package/src/series/PRESET_PIE_HALF_DONUT.ts +52 -53
  126. package/src/series/PRESET_PIE_SEPARATE_SERIES.ts +33 -35
  127. package/src/series/PRESET_PIE_SIMPLE.ts +43 -0
  128. package/src/series/PRESET_PIE_SUM_SERIES.ts +34 -36
  129. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +41 -42
  130. package/src/series/PRESET_ROSE_BASIC.ts +41 -37
  131. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +47 -42
  132. package/src/series/PRESET_ROSE_SEPARATE_SERIES.ts +41 -35
  133. package/src/series/PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES.ts +42 -36
  134. package/src/series/PRESET_ROSE_SIMPLE.ts +43 -0
  135. package/src/series/PRESET_ROSE_SUM_SERIES.ts +40 -36
  136. package/src/series/PRESET_SERIES_BASIC.ts +32 -34
  137. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +15 -17
  138. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +16 -18
  139. package/src/series/PRESET_SERIES_SUM_SERIES.ts +17 -18
  140. package/src/series/index.ts +23 -20
  141. package/src/tree/PRESET_TREE_MAP_BASIC.ts +44 -43
  142. package/src/tree/PRESET_TREE_MAP_SIMPLE.ts +40 -0
  143. package/src/tree/index.ts +2 -1
  144. package/src/types.ts +368 -349
  145. package/tsconfig.base.json +13 -13
  146. package/tsconfig.json +2 -2
  147. package/vite.config.js +22 -22
@@ -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_BASIC",description:"基本泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{SeriesLegend:{listRectRadius:7}}},T={name:"PRESET_BUBBLES_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{Bubbles:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}},c={name:"PRESET_BUBBLES_SEPARATE_SERIES",description:"分開顯示Series的泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:160,right:160,bottom:160,left:160}},dataFormatter:{separateSeries:!0},allPluginParams:{Bubbles:{},SeriesLegend:{listRectRadius:7},SeriesTooltip:{}}},E={name:"PRESET_BUBBLES_SUM_SERIES",description:"合併Series資料的泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value,sumSeries:!0},allPluginParams:{}};E.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const l={name:"PRESET_PIE_BASIC",description:"基本圓餅圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value},allPluginParams:{SeriesLegend:{listRectRadius:7}}};l.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const r={name:"PRESET_PIE_DONUT",description:"甜甜圈圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value},allPluginParams:{Pie:{innerRadius:.5},PieLabels:{},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};r.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const s={name:"PRESET_PIE_HALF_DONUT",description:"半圓甜甜圈圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:120,right:60,bottom:0,left:60}},dataFormatter:{sort:(a,e)=>e.value-a.value},allPluginParams:{Pie:{innerRadius:.5,startAngle:-Math.PI/2,endAngle:Math.PI/2},PieLabels:{startAngle:-Math.PI/2,endAngle:Math.PI/2},PieEventTexts:{},SeriesLegend:{placement:"bottom",listRectRadius:7}}};s.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const o={name:"PRESET_PIE_WITH_INNER_LABELS",description:"圓餅圖及內部資料標籤",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value},allPluginParams:{Pie:{},PieLabels:{labelCentroid:1.3,labelColorType:"labelContrast"},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};o.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const S={name:"PRESET_PIE_SEPARATE_SERIES",description:"分開顯示Series的圓餅圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value,separateSeries:!0},allPluginParams:{}};S.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const _={name:"PRESET_PIE_SUM_SERIES",description:"合併Series資料的圓餅圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value,sumSeries:!0},allPluginParams:{}};_.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const R={name:"PRESET_ROSE_BASIC",description:"基本Rose參數",chartParams:{colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value},allPluginParams:{SeriesLegend:{listRectRadius:7}}};R.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const A={name:"PRESET_ROSE_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的玫瑰圖",chartParams:{colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value},allPluginParams:{Rose:{arcScaleType:"radius"},RoseLabels:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}};A.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const n={name:"PRESET_ROSE_SEPARATE_SERIES",description:"分開顯示Series的玫瑰圖",chartParams:{colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value,separateSeries:!0},allPluginParams:{}};n.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const F={name:"PRESET_ROSE_SUM_SERIES",description:"合併Series資料的玫瑰圖",chartParams:{colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value,sumSeries:!0},allPluginParams:{}};F.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const B={name:"PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES",description:"分開顯示Series並合併Series資料",chartParams:{colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(a,e)=>e.value-a.value,separateSeries:!0,sumSeries:!0},allPluginParams:{}};B.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const u={name:"PRESET_SERIES_BASIC",description:"基本Series參數",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{SeriesLegend:{listRectRadius:7}}},d={name:"PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",description:"分開顯示Series並合併Series資料",dataFormatter:{sort:(a,e)=>e.value-a.value,separateSeries:!0,sumSeries:!0},allPluginParams:{}};d.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const P={name:"PRESET_SERIES_SEPARATE_SERIES",description:"分開顯示Series",dataFormatter:{sort:(a,e)=>e.value-a.value,separateSeries:!0},allPluginParams:{}};P.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const g={name:"PRESET_SERIES_SUM_SERIES",description:"合併Series資料",dataFormatter:{sort:(a,e)=>e.value-a.value,sumSeries:!0},allPluginParams:{}};g.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const I={name:"PRESET_BARS_HORIZONTAL_AND_ROUND",description:"橫向圓角長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,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}}},m={name:"PRESET_BARS_HORIZONTAL_AND_THIN",description:"橫向細長長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,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}}},D={name:"PRESET_BARS_ROUND",description:"圓角長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80}},allPluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},L={name:"PRESET_BARS_THIN",description:"細長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80}},allPluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},p={name:"PRESET_GRID_BASIC",description:"基本Grid參數",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},h={name:"PRESET_GRID_HORIZONTAL",description:"橫向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},b={name:"PRESET_GRID_PN_SCALE",description:"正負值分向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80}},dataFormatter:{valueAxis:{scaleDomain:["auto","auto"],scaleRange:[.05,.95]}},allPluginParams:{GridLegend:{placement:"bottom",padding:14}}},O={name:"PRESET_GRID_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:140,left:80}},allPluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},N={name:"PRESET_GRID_SEPARATE_SERIES",description:"分開顯示Series",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:140,left:80}},dataFormatter:{separateSeries:!0},allPluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},G={name:"PRESET_LINE_AREAS_BASIC",description:"基本LineArea參數",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},M={name:"PRESET_LINE_AREAS_CURVE",description:"弧線折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},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}}},U={name:"PRESET_LINE_AREAS_HORIZONTAL",description:"橫向折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,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}}},v={name:"PRESET_LINE_AREAS_LOOSE_TICKS",description:"寬鬆標籤",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},allPluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},x={name:"PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:140,left:80},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}}},H={name:"PRESET_LINE_AREAS_SEPARATE_SERIES",description:"LineAreas 分開顯示Series",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:140,left:80},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}}},f={name:"PRESET_LINES_BASIC",description:"基本Lines參數",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},V={name:"PRESET_LINES_CURVE",description:"弧線折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},allPluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},W={name:"PRESET_LINES_HORIZONTAL",description:"橫向折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},allPluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},k={name:"PRESET_LINES_LOOSE_TICKS",description:"寬鬆標籤",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},Y={name:"PRESET_LINES_ROTATE_AXIS_LABEL",description:"傾斜標籤",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:140,left:80},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},Z={name:"PRESET_LINES_WITH_SOLID_DOTS",description:"折線圖及實心圓點",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},allPluginParams:{Lines:{},Dots:{radius:3,fillColorType:"label",onlyShowHighlighted:!1},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},X={name:"PRESET_MULTI_GRID_BASIC",description:"基本MultiGrid參數",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:100,left:80},highlightTarget:"series"},allPluginParams:{MultiGridLegend:{placement:"bottom",padding:14,gridList:[{},{listRectHeight:2}]}}},y={name:"PRESET_MULTI_GRID_DIVERGING",description:"雙向折線圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:100,left:80}},dataFormatter:{gridList:[{groupAxis:{position:"right"},valueAxis:{position:"bottom"}},{groupAxis:{position:"left"},valueAxis:{position:"bottom"}}],container:{gap:160,rowAmount:1,columnAmount:2},separateGrid:!0},allPluginParams:{MultiGroupAxis:{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}}},w={name:"PRESET_MULTI_GRID_ROUND_STYLE",description:"MultiGrid圓弧風格",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:100,left:80},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:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:140,left:80}},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}}},C={},z={name:"PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",description:"2組區域圖表",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:140,left:80}},dataFormatter:{gridList:[{groupAxis:{scalePadding:0}},{groupAxis:{scalePadding:0}}],separateGrid:!0},allPluginParams:{...C,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}]}}},j={name:"PRESET_MULTI_LINES_SEPARATE_GRID",description:"多組分開折線圖表",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:140,left:80}},dataFormatter:{separateGrid:!0},allPluginParams:{...C,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}]}}},q={name:"PRESET_MULTI_VALUE_BASIC",description:"基本MultiValue參數",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:60,right:60,bottom:100,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},J={name:"PRESET_MULTI_VALUE_SEPARATE_CATEGORY",description:"MultiValue 分開顯示category",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:60,right:60,bottom:100,left:60}},dataFormatter:{separateCategory:!0},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},Q={name:"PRESET_SCATTER_BASIC",description:"基本散布圖",chartParams:{colors:{light:{label:["#16B59B","#0088FF","#FF3232","#8E6BC9","#904026","#D117EA","#F38428","#6BDC51","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:100,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},$={name:"PRESET_SCATTER_SEPARATE_CATEGORY",description:"分開顯示category的散布圖",chartParams:{colors:{light:{label:["#16B59B","#0088FF","#FF3232","#8E6BC9","#904026","#D117EA","#F38428","#6BDC51","#C50669","#4B25B3"]}},padding:{top:60,right:60,bottom:100,left:60}},dataFormatter:{separateCategory:!0},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},tt={name:"PRESET_SCATTER_BUBBLES_BASIC",description:"基本的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:60,right:60,bottom:100,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},at={name:"PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",description:"以半徑尺寸為比例的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:60,right:60,bottom:100,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14},ScatterBubbles:{arcScaleType:"radius"}}},et={name:"PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",description:"漸變透明度的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:60,right:60,bottom:100,left:60}},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14},ScatterBubbles:{valueLinearOpacity:[.6,.95]}}},it={name:"PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",description:"分開顯示category的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:60,right:60,bottom:100,left:60}},dataFormatter:{separateCategory:!0},allPluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},Et={name:"PRESET_FORCE_DIRECTED_BASIC",description:"基本Force Directed參數",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},allPluginParams:{ForceDirected:{},RelationshipLegend:{listRectRadius:7}}},lt={name:"PRESET_FORCE_DIRECTED_BUBBLES_BASIC",description:"基本Force Directed Bubbles參數",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{ForceDirectedBubbles:{},RelationshipLegend:{listRectRadius:7}}},rt={name:"PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",description:"Force Directed Bubbles固定箭頭寬度",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{ForceDirectedBubbles:{arrow:{strokeWidthMin:1.5,strokeWidthMax:1.5}},RelationshipLegend:{listRectRadius:7}}},st={name:"PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",description:"Force Directed Bubbles沒有箭頭",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{ForceDirectedBubbles:{arrow:{pointerWidth:0,pointerHeight:0}},RelationshipLegend:{listRectRadius:7}}},ot={name:"PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",description:"Force Directed Bubbles無滑鼠托曳及縮放控制",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},allPluginParams:{ForceDirectedBubbles:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},St={name:"PRESET_FORCE_DIRECTED_NONE_ZOOM",description:"Force Directed無滑鼠托曳及縮放控制",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},allPluginParams:{ForceDirected:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},_t={name:"PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",description:"基本Force Directed參數",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},allPluginParams:{ForceDirected:{dotLabel:{sizeFixed:!0},arrowLabel:{sizeFixed:!0}},RelationshipLegend:{listRectRadius:7}}},Rt={name:"PRESET_FORCE_DIRECTED_NONE_ARROW",description:"Force Directed沒有箭頭",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},allPluginParams:{ForceDirected:{arrow:{pointerWidth:0,pointerHeight:0}},RelationshipLegend:{listRectRadius:7}}},At={name:"PRESET_TREE_MAP_BASIC",description:"基本Tree Map參數",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:70,left:40}},allPluginParams:{TreeMap:{},TreeLegend:{placement:"bottom",padding:14}}};t.PRESET_BARS_HORIZONTAL_AND_ROUND=I,t.PRESET_BARS_HORIZONTAL_AND_THIN=m,t.PRESET_BARS_ROUND=D,t.PRESET_BARS_THIN=L,t.PRESET_BUBBLES_BASIC=i,t.PRESET_BUBBLES_SCALING_BY_RADIUS=T,t.PRESET_BUBBLES_SEPARATE_SERIES=c,t.PRESET_BUBBLES_SUM_SERIES=E,t.PRESET_FORCE_DIRECTED_BASIC=Et,t.PRESET_FORCE_DIRECTED_BUBBLES_BASIC=lt,t.PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH=rt,t.PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW=st,t.PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM=ot,t.PRESET_FORCE_DIRECTED_FIX_FONT_SIZE=_t,t.PRESET_FORCE_DIRECTED_NONE_ARROW=Rt,t.PRESET_FORCE_DIRECTED_NONE_ZOOM=St,t.PRESET_GRID_BASIC=p,t.PRESET_GRID_HORIZONTAL=h,t.PRESET_GRID_PN_SCALE=b,t.PRESET_GRID_ROTATE_AXIS_LABEL=O,t.PRESET_GRID_SEPARATE_SERIES=N,t.PRESET_LINES_BASIC=f,t.PRESET_LINES_CURVE=V,t.PRESET_LINES_HORIZONTAL=W,t.PRESET_LINES_LOOSE_TICKS=k,t.PRESET_LINES_ROTATE_AXIS_LABEL=Y,t.PRESET_LINES_WITH_SOLID_DOTS=Z,t.PRESET_LINE_AREAS_BASIC=G,t.PRESET_LINE_AREAS_CURVE=M,t.PRESET_LINE_AREAS_HORIZONTAL=U,t.PRESET_LINE_AREAS_LOOSE_TICKS=v,t.PRESET_LINE_AREAS_ROTATE_AXIS_LABEL=x,t.PRESET_LINE_AREAS_SEPARATE_SERIES=H,t.PRESET_MULTI_GRID_BASIC=X,t.PRESET_MULTI_GRID_DIVERGING=y,t.PRESET_MULTI_GRID_ROUND_STYLE=w,t.PRESET_MULTI_GRID_SEPARATE_GRID=K,t.PRESET_MULTI_LINES_SEPARATE_GRID=j,t.PRESET_MULTI_LINE_AREAS_SEPARATE_GRID=z,t.PRESET_MULTI_VALUE_BASIC=q,t.PRESET_MULTI_VALUE_SEPARATE_CATEGORY=J,t.PRESET_PIE_BASIC=l,t.PRESET_PIE_DONUT=r,t.PRESET_PIE_HALF_DONUT=s,t.PRESET_PIE_SEPARATE_SERIES=S,t.PRESET_PIE_SUM_SERIES=_,t.PRESET_PIE_WITH_INNER_LABELS=o,t.PRESET_ROSE_BASIC=R,t.PRESET_ROSE_SCALING_BY_RADIUS=A,t.PRESET_ROSE_SEPARATE_SERIES=n,t.PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES=B,t.PRESET_ROSE_SUM_SERIES=F,t.PRESET_SCATTER_BASIC=Q,t.PRESET_SCATTER_BUBBLES_BASIC=tt,t.PRESET_SCATTER_BUBBLES_LINEAR_OPACITY=et,t.PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS=at,t.PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY=it,t.PRESET_SCATTER_SEPARATE_CATEGORY=$,t.PRESET_SERIES_BASIC=u,t.PRESET_SERIES_SEPARATE_SERIES=P,t.PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES=d,t.PRESET_SERIES_SUM_SERIES=g,t.PRESET_TREE_MAP_BASIC=At,Object.defineProperty(t,Symbol.toStringTag,{value:"Module"})});
1
+ (function(t,a){typeof exports=="object"&&typeof module<"u"?a(exports):typeof define=="function"&&define.amd?define(["exports"],a):(t=typeof globalThis<"u"?globalThis:t||self,a(t["orbcharts-presets-basic"]={}))})(this,function(t){"use strict";const a={name:"PRESET_BUBBLES_BASIC",description:"Basic bubble chart",descriptionZh:"基本泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{SeriesLegend:{listRectRadius:7}}},C={name:"PRESET_BUBBLES_SCALING_BY_RADIUS",description:"Bubble chart scaled by radius size",descriptionZh:"以半徑尺寸為比例的泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{Bubbles:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}},P={name:"PRESET_BUBBLES_SEPARATE_SERIES",description:"Bubble chart showing series separately",descriptionZh:"分開顯示Series的泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:160,right:160,bottom:160,left:160}},dataFormatter:{separateSeries:!0},pluginParams:{Bubbles:{},SeriesLegend:{listRectRadius:7},SeriesTooltip:{}}},T={name:"PRESET_BUBBLES_SIMPLE",description:"Simple bubble chart",descriptionZh:"簡單泡泡圖",chartParams:{padding:{top:40,right:40,bottom:40,left:40},colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{SeriesLegend:{listRectRadius:7,padding:7}}},r={name:"PRESET_BUBBLES_SUM_SERIES",description:"Bubble chart of combined Series data",descriptionZh:"合併Series資料的泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value,sumSeries:!0},pluginParams:{}};r.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const l={name:"PRESET_PIE_BASIC",description:"Basic pie chart",descriptionZh:"基本圓餅圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{SeriesLegend:{listRectRadius:7}}};l.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const E={name:"PRESET_PIE_DONUT",description:"Donut chart",descriptionZh:"甜甜圈圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{Pie:{innerRadius:.5},PieLabels:{},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};E.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const s={name:"PRESET_PIE_HALF_DONUT",description:"Half donut chart",descriptionZh:"半圓甜甜圈圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:120,right:60,bottom:0,left:60}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{Pie:{innerRadius:.5,startAngle:-Math.PI/2,endAngle:Math.PI/2},PieLabels:{startAngle:-Math.PI/2,endAngle:Math.PI/2},PieEventTexts:{},SeriesLegend:{placement:"bottom",listRectRadius:7}}};s.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const o={name:"PRESET_PIE_WITH_INNER_LABELS",description:"Pie chart with inner data labels",descriptionZh:"圓餅圖及內部資料標籤",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{Pie:{},PieLabels:{labelCentroid:1.3,labelColorType:"labelContrast"},PieEventTexts:{},SeriesLegend:{listRectRadius:7}}};o.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const n={name:"PRESET_PIE_SEPARATE_SERIES",description:"Separate pie chart of Series",descriptionZh:"分開顯示Series的圓餅圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value,separateSeries:!0},pluginParams:{}};n.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const d={name:"PRESET_PIE_SIMPLE",description:"Simple pie chart",descriptionZh:"簡單圓餅圖",chartParams:{padding:{top:30,right:30,bottom:30,left:30},colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{SeriesLegend:{listRectRadius:7,padding:7}}};d.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const S={name:"PRESET_PIE_SUM_SERIES",description:"Pie chart of combined Series data",descriptionZh:"合併Series資料的圓餅圖",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value,sumSeries:!0},pluginParams:{}};S.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const _={name:"PRESET_ROSE_BASIC",description:"Basic Rose chart",descriptionZh:"基本Rose參數",chartParams:{padding:{top:40,right:40,bottom:40,left:40},colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{SeriesLegend:{listRectRadius:7}}};_.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const R={name:"PRESET_ROSE_SCALING_BY_RADIUS",description:"Rose chart with radius scaling",descriptionZh:"以半徑尺寸為比例的玫瑰圖",chartParams:{padding:{top:40,right:40,bottom:40,left:40},colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{Rose:{arcScaleType:"radius"},RoseLabels:{arcScaleType:"radius"},SeriesLegend:{listRectRadius:7}}};R.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const A={name:"PRESET_ROSE_SEPARATE_SERIES",description:"Separate rose chart of Series",descriptionZh:"分開顯示Series的玫瑰圖",chartParams:{padding:{top:40,right:40,bottom:40,left:40},colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value,separateSeries:!0},pluginParams:{}};A.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const B={name:"PRESET_ROSE_SIMPLE",description:"Simple Rose chart",descriptionZh:"簡單Rose參數",chartParams:{padding:{top:20,right:20,bottom:20,left:20},colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value},pluginParams:{SeriesLegend:{listRectRadius:7,padding:7}}};B.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const F={name:"PRESET_ROSE_SUM_SERIES",description:"Rose chart of combined Series data",descriptionZh:"合併Series資料的玫瑰圖",chartParams:{padding:{top:40,right:40,bottom:40,left:40},colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value,sumSeries:!0},pluginParams:{}};F.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const c={name:"PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES",description:"Separate and sum Series data",descriptionZh:"分開顯示Series並合併Series資料",chartParams:{padding:{top:40,right:40,bottom:40,left:40},colors:{light:{label:["#8BC8FF","#4BABFF","#0088FF","#55D339","#29AB0C","#16B59B","#FCDCAD","#F9B052","#FF6C6C","#C4C4C4"]}}},dataFormatter:{sort:(e,i)=>i.value-e.value,separateSeries:!0,sumSeries:!0},pluginParams:{}};c.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const m={name:"PRESET_SERIES_BASIC",description:"Basic Series parameters",descriptionZh:"基本Series參數",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{SeriesLegend:{listRectRadius:7}}},g={name:"PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",description:"Separate and sum Series data",descriptionZh:"分開顯示Series並合併Series資料",dataFormatter:{sort:(e,i)=>i.value-e.value,separateSeries:!0,sumSeries:!0},pluginParams:{}};g.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const u={name:"PRESET_SERIES_SEPARATE_SERIES",description:"Separate Series",descriptionZh:"分開顯示Series",dataFormatter:{sort:(e,i)=>i.value-e.value,separateSeries:!0},pluginParams:{}};u.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const p={name:"PRESET_SERIES_SUM_SERIES",description:"Combine Series data",descriptionZh:"合併Series資料",dataFormatter:{sort:(e,i)=>i.value-e.value,sumSeries:!0},pluginParams:{}};p.dataFormatter.sort.toString=()=>"(a, b) => b.value - a.value";const I={name:"PRESET_BARS_HORIZONTAL_AND_ROUND",description:"Horizontal bars with round corners",descriptionZh:"橫向圓角長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},pluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},h={name:"PRESET_BARS_HORIZONTAL_AND_THIN",description:"Horizontal thin bars",descriptionZh:"橫向細長長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},pluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},D={name:"PRESET_BARS_ROUND",description:"Rounded bars",descriptionZh:"圓角長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{Bars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectRadius:7}}},L={name:"PRESET_BARS_THIN",description:"Thin bars",descriptionZh:"細長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{Bars:{barWidth:20,barPadding:1,barGroupPadding:10},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14}}},b={name:"PRESET_GRID_BASIC",description:"Basic Grid",descriptionZh:"基本Grid",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{GridLegend:{placement:"bottom",padding:14}}},M={name:"PRESET_GRID_HORIZONTAL",description:"Horizontal Grid",descriptionZh:"橫向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:160}},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},pluginParams:{GridLegend:{placement:"bottom",padding:14}}},G={name:"PRESET_GRID_PN_SCALE_SIMPLE",description:"Simple positive negative scale",descriptionZh:"簡單正負值分向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:80,left:40}},dataFormatter:{valueAxis:{scaleDomain:["auto","auto"],scaleRange:[.05,.95]}},pluginParams:{GridLegend:{placement:"bottom",padding:7}}},O={name:"PRESET_GRID_PN_SCALE",description:"Positive negative scale",descriptionZh:"正負值分向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80}},dataFormatter:{valueAxis:{scaleDomain:["auto","auto"],scaleRange:[.05,.95]}},pluginParams:{GridLegend:{placement:"bottom",padding:14}}},N={name:"PRESET_GRID_ROTATE_AXIS_LABEL",description:"Rotate axis label",descriptionZh:"傾斜標籤",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:140,left:80}},pluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},U={name:"PRESET_GRID_SEPARATE_SERIES",description:"Separate Series",descriptionZh:"分開顯示Series",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:140,left:80}},dataFormatter:{separateSeries:!0},pluginParams:{GroupAux:{labelRotate:-30},GroupAxis:{tickPadding:15,tickTextRotate:-30},GridLegend:{placement:"bottom",padding:14}}},x={name:"PRESET_GRID_SIMPLE",description:"Simple Grid",descriptionZh:"簡單Grid",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:80,left:40}},dataFormatter:{valueAxis:{scaleRange:[0,.95]}},pluginParams:{GridLegend:{placement:"bottom",padding:7}}},v={name:"PRESET_LINE_AREAS_BASIC",description:"Basic LineArea",descriptionZh:"基本折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:80,bottom:100,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},pluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},Z={name:"PRESET_LINE_AREAS_CURVE",description:"Curve LineArea",descriptionZh:"弧線的折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:80,bottom:100,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},pluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},LineAreas:{lineCurve:"curveMonotoneX"},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},f={name:"PRESET_LINE_AREAS_HORIZONTAL",description:"Horizontal LineArea",descriptionZh:"橫向折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left",scalePadding:0}},pluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},H={name:"PRESET_LINE_AREAS_LOOSE_TICKS",description:"Loose Ticks LineArea",descriptionZh:"寬鬆標籤的折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:80,bottom:100,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},pluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},V={name:"PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",description:"Rotate Axis Label LineArea",descriptionZh:"傾斜標籤的折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:140,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0}},pluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},k={name:"PRESET_LINE_AREAS_SEPARATE_SERIES",description:"Separate Series LineArea",descriptionZh:"分開顯示Series的折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:140,left:80},highlightTarget:"series"},dataFormatter:{separateSeries:!0,groupAxis:{scalePadding:0}},pluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},y={name:"PRESET_LINE_AREAS_SIMPLE",description:"Simple LineArea",descriptionZh:"簡單折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:80,bottom:80,left:80},highlightTarget:"series"},dataFormatter:{groupAxis:{scalePadding:0},valueAxis:{scaleRange:[0,.95]}},pluginParams:{Lines:{},LineAreas:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:7,listRectHeight:2}}},W={name:"PRESET_LINES_BASIC",description:"Basic Line",descriptionZh:"基本折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80},highlightTarget:"series"},pluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},Y={name:"PRESET_LINES_CURVE",description:"Curve Line",descriptionZh:"弧線折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80},highlightTarget:"series"},pluginParams:{Lines:{lineCurve:"curveMonotoneX",lineWidth:3},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},w={name:"PRESET_LINES_HORIZONTAL",description:"Horizontal Line",descriptionZh:"橫向折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:160},highlightTarget:"series"},dataFormatter:{valueAxis:{position:"bottom"},groupAxis:{position:"left"}},pluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},X={name:"PRESET_LINES_LOOSE_TICKS",description:"Loose Ticks Line",descriptionZh:"寬鬆標籤的折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80},highlightTarget:"series"},pluginParams:{Lines:{},Dots:{},GroupAxis:{ticks:6},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},z={name:"PRESET_LINES_ROTATE_AXIS_LABEL",description:"Line chart with slanted labels",descriptionZh:"傾斜標籤的折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:140,left:80},highlightTarget:"series"},pluginParams:{Lines:{},Dots:{},GroupAxis:{tickPadding:15,tickTextRotate:-30},ValueAxis:{},GroupAux:{labelRotate:-30},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},K={name:"PRESET_LINES_SIMPLE",description:"Simple line",descriptionZh:"簡單折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:80,left:40},highlightTarget:"series"},dataFormatter:{valueAxis:{scaleRange:[0,.95]}},pluginParams:{Lines:{},Dots:{},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:7,listRectHeight:2}}},j={name:"PRESET_LINES_WITH_SOLID_DOTS",description:"Solid Dots Line",descriptionZh:"實心圓點的折線圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:100,left:80},highlightTarget:"series"},pluginParams:{Lines:{},Dots:{radius:3,fillColorType:"label",onlyShowHighlighted:!1},GroupAxis:{},ValueAxis:{},GroupAux:{},GridLegend:{placement:"bottom",padding:14,listRectHeight:2}}},q={name:"PRESET_MULTI_GRID_BASIC",description:"Basic MultiGrid",descriptionZh:"基本MultiGrid",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:100,left:80},highlightTarget:"series"},pluginParams:{MultiGridLegend:{placement:"bottom",padding:14,gridList:[{},{listRectHeight:2}]}}},J={name:"PRESET_MULTI_GRID_DIVERGING_SIMPLE",description:"Simple diverging Grid",descriptionZh:"簡單雙向Grid",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:60,left:40}},dataFormatter:{gridList:[{groupAxis:{position:"right"},valueAxis:{position:"bottom",scaleRange:[0,.95]}},{groupAxis:{position:"left"},valueAxis:{position:"bottom",scaleRange:[0,.95]}}],container:{gap:140,rowAmount:1,columnAmount:2},separateGrid:!0},pluginParams:{MultiGroupAxis:{tickPadding:10,gridIndexes:[0]},MultiValueAxis:{gridIndexes:[0,1]},MultiStackedValueAxis:{gridIndexes:[0,1]},MultiBars:{gridIndexes:[0,1]},MultiStackedBars:{gridIndexes:[0,1]},MultiBarsTriangle:{gridIndexes:[0,1]},MultiLines:{gridIndexes:[0,1]},MultiLineAreas:{gridIndexes:[0,1]},MultiDots:{gridIndexes:[0,1]},MultiGridLegend:{placement:"bottom",padding:7}}},Q={name:"PRESET_MULTI_GRID_DIVERGING",description:"Diverging Grid",descriptionZh:"雙向Grid",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:100,left:80}},dataFormatter:{gridList:[{groupAxis:{position:"right"},valueAxis:{position:"bottom"}},{groupAxis:{position:"left"},valueAxis:{position:"bottom"}}],container:{gap:160,rowAmount:1,columnAmount:2},separateGrid:!0},pluginParams:{MultiGroupAxis:{gridIndexes:[0]},MultiValueAxis:{gridIndexes:[0,1]},MultiStackedValueAxis:{gridIndexes:[0,1]},MultiBars:{gridIndexes:[0,1]},MultiStackedBars:{gridIndexes:[0,1]},MultiBarsTriangle:{gridIndexes:[0,1]},MultiLines:{gridIndexes:[0,1]},MultiLineAreas:{gridIndexes:[0,1]},MultiDots:{gridIndexes:[0,1]},MultiGridLegend:{placement:"bottom",padding:14}}},$={name:"PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE",description:"Simple MultiGrid with round style",descriptionZh:"簡單MultiGrid圓弧風格",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:60,left:80},highlightTarget:"series"},dataFormatter:{gridList:[{valueAxis:{scaleRange:[0,.95]}}]},pluginParams:{MultiBars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},MultiStackedBars:{},MultiDots:{},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectRadius:7},{listRectHeight:2}]},MultiGroupAxis:{},MultiLineAreas:{},MultiLines:{lineCurve:"curveMonotoneX",lineWidth:3},MultiValueAxis:{},MultiStackedValueAxis:{},OverlappingValueAxes:{},OverlappingStackedValueAxes:{}}},tt={name:"PRESET_MULTI_GRID_ROUND_STYLE",description:"MultiGrid with round style",descriptionZh:"MultiGrid圓弧風格",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:100,left:80},highlightTarget:"series"},pluginParams:{MultiBars:{barWidth:0,barPadding:1,barGroupPadding:10,barRadius:!0},MultiStackedBars:{},MultiDots:{},MultiGridLegend:{placement:"bottom",padding:14,gridList:[{listRectRadius:7},{listRectHeight:2}]},MultiGroupAxis:{},MultiLineAreas:{},MultiLines:{lineCurve:"curveMonotoneX",lineWidth:3},MultiValueAxis:{},MultiStackedValueAxis:{},OverlappingValueAxes:{},OverlappingStackedValueAxes:{}}},et={name:"PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE",description:"Simple separate grid",descriptionZh:"簡單的分開顯示Grid圖表",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:80,left:40}},dataFormatter:{gridList:[{valueAxis:{scaleRange:[0,.95]}}],separateGrid:!0,container:{gap:40}},pluginParams:{MultiGroupAxis:{gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBars:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:7}}},it={name:"PRESET_MULTI_GRID_SEPARATE_GRID",description:"Separate Grid",descriptionZh:"分開顯示Grid圖表",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:140,left:80}},dataFormatter:{separateGrid:!0},pluginParams:{MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBars:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:14}}},at={name:"PRESET_MULTI_GRID_SIMPLE",description:"Simple MultiGrid",descriptionZh:"簡單MultiGrid",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:80,left:40},highlightTarget:"series"},dataFormatter:{gridList:[{valueAxis:{scaleRange:[0,.95]}}]},pluginParams:{MultiGridLegend:{placement:"bottom",padding:7,gridList:[{},{listRectHeight:2}]}}},rt={name:"PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE",description:"Simple separate grid line areas",descriptionZh:"簡單的分開顯示Grid的折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:80,bottom:80,left:80}},dataFormatter:{gridList:[{groupAxis:{scalePadding:0},valueAxis:{scaleRange:[0,.95]}}],separateGrid:!0,container:{gap:160}},pluginParams:{MultiGroupAxis:{gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBars:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:7,gridList:[{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2}]}}},lt={name:"PRESET_MULTI_LINE_AREAS_SEPARATE_GRID",description:"Separate Grid line areas",descriptionZh:"分開顯示Grid的折線區域圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:140,left:80}},dataFormatter:{gridList:[{groupAxis:{scalePadding:0}},{groupAxis:{scalePadding:0}}],separateGrid:!0},pluginParams:{MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBars:{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}]}}},Et={name:"PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE",description:"Simple separate grid line",descriptionZh:"簡單的分開顯示Grid的折線圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:80,left:40}},dataFormatter:{gridList:[{valueAxis:{scaleRange:[0,.95]}}],separateGrid:!0,container:{gap:40}},pluginParams:{MultiGroupAxis:{gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBars:{gridIndexes:"all"},MultiBarsTriangle:{gridIndexes:"all"},MultiLines:{gridIndexes:"all"},MultiLineAreas:{gridIndexes:"all"},MultiDots:{gridIndexes:"all"},MultiGridLegend:{placement:"bottom",padding:7,gridList:[{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2},{listRectHeight:2}]}}},st={name:"PRESET_MULTI_LINES_SEPARATE_GRID",description:"Separate Grid line",descriptionZh:"分開顯示Grid的折線圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:140,left:80}},dataFormatter:{separateGrid:!0},pluginParams:{MultiGroupAxis:{tickTextRotate:-30,gridIndexes:"all"},MultiValueAxis:{gridIndexes:"all"},MultiStackedValueAxis:{gridIndexes:"all"},MultiBars:{gridIndexes:"all"},MultiStackedBars:{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}]}}},ot={name:"PRESET_MULTI_VALUE_BASIC",description:"Basic MultiValue",descriptionZh:"基本MultiValue參數",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:14}}},nt={name:"PRESET_MULTI_VALUE_SEPARATE_CATEGORY",description:"MultiValue separate category",descriptionZh:"MultiValue 分開顯示category",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:40,right:40,bottom:100,left:80}},dataFormatter:{separateCategory:!0},pluginParams:{XYAxes:{xAxis:{ticks:3},yAxis:{ticks:3}},MultiValueLegend:{placement:"bottom",padding:14}}},dt={name:"PRESET_MULTI_VALUE_SIMPLE",description:"Simple MultiValue",descriptionZh:"簡單MultiValue參數",chartParams:{colors:{light:{label:["#7DD3C4","#FFA0A0","#6CBAFF","#55D339","#F9B052","#FF6C6C","#8E6BC9","#0088FF","#904026","#C4C4C4"]}},padding:{top:40,right:40,bottom:60,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:7}}},St={name:"PRESET_RACING_BARS_ALL_ITEMS",description:"Racing bars for all items",descriptionZh:"顯示全部項目的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:60},transitionDuration:500},pluginParams:{RacingBars:{rankingAmount:"auto",autorun:!0},MultiValueLegend:{placement:"bottom",padding:14}}},_t={name:"PRESET_RACING_BARS_BASIC",description:"Basic racing bars",descriptionZh:"基本賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:60},transitionDuration:500},pluginParams:{RacingBars:{autorun:!0},MultiValueLegend:{placement:"bottom",padding:14}}},Rt={name:"PRESET_RACING_BARS_FAST",description:"Fast racing bars",descriptionZh:"快速的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:60},transitionDuration:250},pluginParams:{RacingBars:{autorun:!0},MultiValueLegend:{placement:"bottom",padding:14}}},At={name:"PRESET_RACING_BARS_FASTER",description:"Faster racing bars",descriptionZh:"更快速的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:60},transitionDuration:125},pluginParams:{RacingBars:{autorun:!0},MultiValueLegend:{placement:"bottom",padding:14}}},Bt={name:"PRESET_RACING_BARS_LOOP",description:"Looping racing bars",descriptionZh:"循環的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:60},transitionDuration:500},pluginParams:{RacingBars:{autorun:!0,loop:!0},MultiValueLegend:{placement:"bottom",padding:14}}},Ft={name:"PRESET_RACING_BARS_OUTSIDE_LABELS",description:"Racing bars with labels outside",descriptionZh:"標籤在外面的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:160},transitionDuration:500},pluginParams:{RacingBars:{barLabel:{position:"outside",colorType:"primary"},autorun:!0},MultiValueLegend:{placement:"bottom",padding:14}}},ct={name:"PRESET_RACING_BARS_SEPARATE_CATEGORY",description:"Racing bars with separate category",descriptionZh:"分開顯示category的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:40,right:40,bottom:60,left:140},transitionDuration:500},dataFormatter:{separateCategory:!0,container:{gap:80}},pluginParams:{RacingBars:{barLabel:{position:"outside",colorType:"primary",padding:10},valueLabel:{padding:10},autorun:!0},RacingValueAxis:{ticks:3},MultiValueLegend:{placement:"bottom",padding:14}}},gt={name:"PRESET_RACING_BARS_SIMPLE",description:"Simple racing bars",descriptionZh:"簡單賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:40,bottom:40,left:40},transitionDuration:500},pluginParams:{RacingBars:{autorun:!0},MultiValueLegend:{placement:"bottom",padding:7}}},ut={name:"PRESET_RACING_BARS_STOP",description:"Stopped racing bars",descriptionZh:"停止的賽跑長條圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}},padding:{top:60,right:60,bottom:100,left:60}},pluginParams:{RacingBars:{autorun:!1},MultiValueLegend:{placement:"bottom",padding:14}}},pt={name:"PRESET_SCATTER_BASIC",description:"Basic scatter",descriptionZh:"基本散布圖",chartParams:{colors:{light:{label:["#16B59B","#0088FF","#FF3232","#8E6BC9","#904026","#D117EA","#F38428","#6BDC51","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:14,listRectRadius:7}}},Ct={name:"PRESET_SCATTER_BUBBLES_BASIC",description:"Basic scatter bubbles",descriptionZh:"基本的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:14,listRectRadius:7}}},Pt={name:"PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS",description:"Scatter bubbles with radius scaling",descriptionZh:"以半徑尺寸為比例的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:14,listRectRadius:7},ScatterBubbles:{arcScaleType:"radius"}}},Tt={name:"PRESET_SCATTER_BUBBLES_LINEAR_OPACITY",description:"Scatter bubbles with linear opacity",descriptionZh:"漸變透明度的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:40,right:40,bottom:100,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:14,listRectRadius:7},ScatterBubbles:{valueLinearOpacity:[.6,.95]}}},mt={name:"PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY",description:"Scatter bubbles with separate category",descriptionZh:"分開顯示category的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:40,right:40,bottom:100,left:80}},dataFormatter:{separateCategory:!0},pluginParams:{MultiValueLegend:{placement:"bottom",padding:14,listRectRadius:7}}},It={name:"PRESET_SCATTER_BUBBLES_SIMPLE",description:"Simple scatter bubbles",descriptionZh:"簡單的散布泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}},padding:{top:40,right:40,bottom:60,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:7,listRectRadius:7}}},ht={name:"PRESET_SCATTER_SEPARATE_CATEGORY",description:"Scatter with separate category",descriptionZh:"分開顯示category的散布圖",chartParams:{colors:{light:{label:["#16B59B","#0088FF","#FF3232","#8E6BC9","#904026","#D117EA","#F38428","#6BDC51","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:100,left:80}},dataFormatter:{separateCategory:!0},pluginParams:{XYAxes:{xAxis:{ticks:3},yAxis:{ticks:3}},MultiValueLegend:{placement:"bottom",padding:14,listRectRadius:7}}},Dt={name:"PRESET_SCATTER_SIMPLE",description:"Simple scatter",descriptionZh:"簡單散布圖",chartParams:{colors:{light:{label:["#16B59B","#0088FF","#FF3232","#8E6BC9","#904026","#D117EA","#F38428","#6BDC51","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:60,left:80}},pluginParams:{MultiValueLegend:{placement:"bottom",padding:7,listRectRadius:7}}},Lt={name:"PRESET_FORCE_DIRECTED_BASIC",description:"Basic force directed chart",descriptionZh:"基本力導向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},pluginParams:{ForceDirected:{},RelationshipLegend:{listRectRadius:7}}},bt={name:"PRESET_FORCE_DIRECTED_BUBBLES_BASIC",description:"Basic force directed bubbles chart",descriptionZh:"基本力導向泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{ForceDirectedBubbles:{},RelationshipLegend:{listRectRadius:7}}},Mt={name:"PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH",description:"Force-directed bubble chart with fixed arrow width",descriptionZh:"固定箭頭寬度的力導向泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{ForceDirectedBubbles:{arrow:{strokeWidthMin:1.5,strokeWidthMax:1.5}},RelationshipLegend:{listRectRadius:7}}},Gt={name:"PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW",description:"Force-directed bubble chart without arrows",descriptionZh:"沒有箭頭的力導向泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{ForceDirectedBubbles:{arrow:{pointerWidth:0,pointerHeight:0}},RelationshipLegend:{listRectRadius:7}}},Ot={name:"PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM",description:"Force Directed bubbles chart without mouse drag and zoom control",descriptionZh:"無滑鼠托曳及縮放控制的力導向泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{ForceDirectedBubbles:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},Nt={name:"PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE",description:"Simple force directed bubbles chart",descriptionZh:"簡單力導向泡泡圖",chartParams:{colors:{light:{label:["#6CBAFF","#FF6C6C","#F9B052","#7DD3C4","#AA93D2","#0088FF","#FFBABA","#86DC72","#EF76FF","#C4C4C4"]}}},pluginParams:{ForceDirectedBubbles:{},RelationshipLegend:{listRectRadius:7,padding:7}}},Ut={name:"PRESET_FORCE_DIRECTED_NONE_ZOOM",description:"Force directed chart without mouse drag and zoom control",descriptionZh:"無滑鼠托曳及縮放控制的力導向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},pluginParams:{ForceDirected:{zoomable:!1},RelationshipLegend:{listRectRadius:7}}},xt={name:"PRESET_FORCE_DIRECTED_FIX_FONT_SIZE",description:"Force directed chart with fixed font size",descriptionZh:"固定字體大小的力導向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},pluginParams:{ForceDirected:{dotLabel:{sizeFixed:!0},arrowLabel:{sizeFixed:!0}},RelationshipLegend:{listRectRadius:7}}},vt={name:"PRESET_FORCE_DIRECTED_NONE_ARROW",description:"Force directed chart without arrows",descriptionZh:"沒有箭頭的力導向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},pluginParams:{ForceDirected:{arrow:{pointerWidth:0,pointerHeight:0}},RelationshipLegend:{listRectRadius:7}}},Zt={name:"PRESET_FORCE_DIRECTED_SIMPLE",description:"Simple force directed chart",descriptionZh:"簡單力導向圖",chartParams:{colors:{light:{label:["#4BABFF","#FFA0A0","#7DD3C4","#F9B052","#8454D4","#42C724","#FF4B4B","#904026","#4B25B3","#C50669"]}}},pluginParams:{ForceDirected:{},RelationshipLegend:{listRectRadius:7,padding:7}}},ft={name:"PRESET_TREE_MAP_BASIC",description:"Basic tree map",descriptionZh:"基本樹狀矩形圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:70,left:40}},pluginParams:{TreeMap:{},TreeLegend:{placement:"bottom",padding:14}}},Ht={name:"PRESET_TREE_MAP_SIMPLE",description:"Simple tree map",descriptionZh:"簡單樹狀矩形圖",chartParams:{colors:{light:{label:["#4BABFF","#94D6CB","#F9B052","#8454D4","#D58C75","#42C724","#FF8B8B","#904026","#C50669","#4B25B3"]}},padding:{top:40,right:40,bottom:40,left:40}},pluginParams:{TreeMap:{},TreeLegend:{placement:"bottom",padding:7}}};t.PRESET_BARS_HORIZONTAL_AND_ROUND=I,t.PRESET_BARS_HORIZONTAL_AND_THIN=h,t.PRESET_BARS_ROUND=D,t.PRESET_BARS_THIN=L,t.PRESET_BUBBLES_BASIC=a,t.PRESET_BUBBLES_SCALING_BY_RADIUS=C,t.PRESET_BUBBLES_SEPARATE_SERIES=P,t.PRESET_BUBBLES_SIMPLE=T,t.PRESET_BUBBLES_SUM_SERIES=r,t.PRESET_FORCE_DIRECTED_BASIC=Lt,t.PRESET_FORCE_DIRECTED_BUBBLES_BASIC=bt,t.PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH=Mt,t.PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW=Gt,t.PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM=Ot,t.PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE=Nt,t.PRESET_FORCE_DIRECTED_FIX_FONT_SIZE=xt,t.PRESET_FORCE_DIRECTED_NONE_ARROW=vt,t.PRESET_FORCE_DIRECTED_NONE_ZOOM=Ut,t.PRESET_FORCE_DIRECTED_SIMPLE=Zt,t.PRESET_GRID_BASIC=b,t.PRESET_GRID_HORIZONTAL=M,t.PRESET_GRID_PN_SCALE=O,t.PRESET_GRID_PN_SCALE_SIMPLE=G,t.PRESET_GRID_ROTATE_AXIS_LABEL=N,t.PRESET_GRID_SEPARATE_SERIES=U,t.PRESET_GRID_SIMPLE=x,t.PRESET_LINES_BASIC=W,t.PRESET_LINES_CURVE=Y,t.PRESET_LINES_HORIZONTAL=w,t.PRESET_LINES_LOOSE_TICKS=X,t.PRESET_LINES_ROTATE_AXIS_LABEL=z,t.PRESET_LINES_SIMPLE=K,t.PRESET_LINES_WITH_SOLID_DOTS=j,t.PRESET_LINE_AREAS_BASIC=v,t.PRESET_LINE_AREAS_CURVE=Z,t.PRESET_LINE_AREAS_HORIZONTAL=f,t.PRESET_LINE_AREAS_LOOSE_TICKS=H,t.PRESET_LINE_AREAS_ROTATE_AXIS_LABEL=V,t.PRESET_LINE_AREAS_SEPARATE_SERIES=k,t.PRESET_LINE_AREAS_SIMPLE=y,t.PRESET_MULTI_GRID_BASIC=q,t.PRESET_MULTI_GRID_DIVERGING=Q,t.PRESET_MULTI_GRID_DIVERGING_SIMPLE=J,t.PRESET_MULTI_GRID_ROUND_STYLE=tt,t.PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE=$,t.PRESET_MULTI_GRID_SEPARATE_GRID=it,t.PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE=et,t.PRESET_MULTI_GRID_SIMPLE=at,t.PRESET_MULTI_LINES_SEPARATE_GRID=st,t.PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE=Et,t.PRESET_MULTI_LINE_AREAS_SEPARATE_GRID=lt,t.PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE=rt,t.PRESET_MULTI_VALUE_BASIC=ot,t.PRESET_MULTI_VALUE_SEPARATE_CATEGORY=nt,t.PRESET_MULTI_VALUE_SIMPLE=dt,t.PRESET_PIE_BASIC=l,t.PRESET_PIE_DONUT=E,t.PRESET_PIE_HALF_DONUT=s,t.PRESET_PIE_SEPARATE_SERIES=n,t.PRESET_PIE_SIMPLE=d,t.PRESET_PIE_SUM_SERIES=S,t.PRESET_PIE_WITH_INNER_LABELS=o,t.PRESET_RACING_BARS_ALL_ITEMS=St,t.PRESET_RACING_BARS_BASIC=_t,t.PRESET_RACING_BARS_FAST=Rt,t.PRESET_RACING_BARS_FASTER=At,t.PRESET_RACING_BARS_LOOP=Bt,t.PRESET_RACING_BARS_OUTSIDE_LABELS=Ft,t.PRESET_RACING_BARS_SEPARATE_CATEGORY=ct,t.PRESET_RACING_BARS_SIMPLE=gt,t.PRESET_RACING_BARS_STOP=ut,t.PRESET_ROSE_BASIC=_,t.PRESET_ROSE_SCALING_BY_RADIUS=R,t.PRESET_ROSE_SEPARATE_SERIES=A,t.PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES=c,t.PRESET_ROSE_SIMPLE=B,t.PRESET_ROSE_SUM_SERIES=F,t.PRESET_SCATTER_BASIC=pt,t.PRESET_SCATTER_BUBBLES_BASIC=Ct,t.PRESET_SCATTER_BUBBLES_LINEAR_OPACITY=Tt,t.PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS=Pt,t.PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY=mt,t.PRESET_SCATTER_BUBBLES_SIMPLE=It,t.PRESET_SCATTER_SEPARATE_CATEGORY=ht,t.PRESET_SCATTER_SIMPLE=Dt,t.PRESET_SERIES_BASIC=m,t.PRESET_SERIES_SEPARATE_SERIES=u,t.PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES=g,t.PRESET_SERIES_SUM_SERIES=p,t.PRESET_TREE_MAP_BASIC=ft,t.PRESET_TREE_MAP_SIMPLE=Ht,Object.defineProperty(t,Symbol.toStringTag,{value:"Module"})});
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_GRID_PN_SCALE_SIMPLE: PresetPartial<'grid', Partial<PresetGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_GRID_SIMPLE: PresetPartial<'grid', Partial<PresetGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_LINES_SIMPLE: PresetPartial<'grid', Partial<PresetGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_LINE_AREAS_SIMPLE: PresetPartial<'grid', Partial<PresetGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -4,18 +4,22 @@ export { PRESET_BARS_ROUND } from './PRESET_BARS_ROUND';
4
4
  export { PRESET_BARS_THIN } from './PRESET_BARS_THIN';
5
5
  export { PRESET_GRID_BASIC } from './PRESET_GRID_BASIC';
6
6
  export { PRESET_GRID_HORIZONTAL } from './PRESET_GRID_HORIZONTAL';
7
+ export { PRESET_GRID_PN_SCALE_SIMPLE } from './PRESET_GRID_PN_SCALE_SIMPLE';
7
8
  export { PRESET_GRID_PN_SCALE } from './PRESET_GRID_PN_SCALE';
8
9
  export { PRESET_GRID_ROTATE_AXIS_LABEL } from './PRESET_GRID_ROTATE_AXIS_LABEL';
9
10
  export { PRESET_GRID_SEPARATE_SERIES } from './PRESET_GRID_SEPARATE_SERIES';
11
+ export { PRESET_GRID_SIMPLE } from './PRESET_GRID_SIMPLE';
10
12
  export { PRESET_LINE_AREAS_BASIC } from './PRESET_LINE_AREAS_BASIC';
11
13
  export { PRESET_LINE_AREAS_CURVE } from './PRESET_LINE_AREAS_CURVE';
12
14
  export { PRESET_LINE_AREAS_HORIZONTAL } from './PRESET_LINE_AREAS_HORIZONTAL';
13
15
  export { PRESET_LINE_AREAS_LOOSE_TICKS } from './PRESET_LINE_AREAS_LOOSE_TICKS';
14
16
  export { PRESET_LINE_AREAS_ROTATE_AXIS_LABEL } from './PRESET_LINE_AREAS_ROTATE_AXIS_LABEL';
15
17
  export { PRESET_LINE_AREAS_SEPARATE_SERIES } from './PRESET_LINE_AREAS_SEPARATE_SERIES';
18
+ export { PRESET_LINE_AREAS_SIMPLE } from './PRESET_LINE_AREAS_SIMPLE';
16
19
  export { PRESET_LINES_BASIC } from './PRESET_LINES_BASIC';
17
20
  export { PRESET_LINES_CURVE } from './PRESET_LINES_CURVE';
18
21
  export { PRESET_LINES_HORIZONTAL } from './PRESET_LINES_HORIZONTAL';
19
22
  export { PRESET_LINES_LOOSE_TICKS } from './PRESET_LINES_LOOSE_TICKS';
20
23
  export { PRESET_LINES_ROTATE_AXIS_LABEL } from './PRESET_LINES_ROTATE_AXIS_LABEL';
24
+ export { PRESET_LINES_SIMPLE } from './PRESET_LINES_SIMPLE';
21
25
  export { PRESET_LINES_WITH_SOLID_DOTS } from './PRESET_LINES_WITH_SOLID_DOTS';
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_MULTI_GRID_DIVERGING_SIMPLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -1,4 +1,6 @@
1
1
  import { PresetPartial } from '../../lib/core-types';
2
2
  import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
3
 
4
- export declare const PRESET_MULTI_GRID_ROUND_STYLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
4
+ type PresetMultiGridRoundPluginParams = Omit<PresetMultiGridPluginParams, 'MultiBarsTriangle'>;
5
+ export declare const PRESET_MULTI_GRID_ROUND_STYLE: PresetPartial<'multiGrid', Partial<PresetMultiGridRoundPluginParams> & Partial<PresetNoneDataPluginParams>>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ type PresetMultiGridRoundPluginParams = Omit<PresetMultiGridPluginParams, 'MultiBarsTriangle'>;
5
+ export declare const PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE: PresetPartial<'multiGrid', Partial<PresetMultiGridRoundPluginParams> & Partial<PresetNoneDataPluginParams>>;
6
+ export {};
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_MULTI_GRID_SIMPLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiGridPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE: PresetPartial<'multiGrid', Partial<PresetMultiGridPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -1,6 +1,12 @@
1
1
  export { PRESET_MULTI_GRID_BASIC } from './PRESET_MULTI_GRID_BASIC';
2
+ export { PRESET_MULTI_GRID_DIVERGING_SIMPLE } from './PRESET_MULTI_GRID_DIVERGING_SIMPLE';
2
3
  export { PRESET_MULTI_GRID_DIVERGING } from './PRESET_MULTI_GRID_DIVERGING';
4
+ export { PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE } from './PRESET_MULTI_GRID_ROUND_STYLE_SIMPLE';
3
5
  export { PRESET_MULTI_GRID_ROUND_STYLE } from './PRESET_MULTI_GRID_ROUND_STYLE';
6
+ export { PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE } from './PRESET_MULTI_GRID_SEPARATE_GRID_SIMPLE';
4
7
  export { PRESET_MULTI_GRID_SEPARATE_GRID } from './PRESET_MULTI_GRID_SEPARATE_GRID';
8
+ export { PRESET_MULTI_GRID_SIMPLE } from './PRESET_MULTI_GRID_SIMPLE';
9
+ export { PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE } from './PRESET_MULTI_LINE_AREAS_SEPARATE_GRID_SIMPLE';
5
10
  export { PRESET_MULTI_LINE_AREAS_SEPARATE_GRID } from './PRESET_MULTI_LINE_AREAS_SEPARATE_GRID';
11
+ export { PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE } from './PRESET_MULTI_LINES_SEPARATE_GRID_SIMPLE';
6
12
  export { PRESET_MULTI_LINES_SEPARATE_GRID } from './PRESET_MULTI_LINES_SEPARATE_GRID';
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_MULTI_VALUE_SIMPLE: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_ALL_ITEMS: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_BASIC: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_FAST: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_FASTER: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_LOOP: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_OUTSIDE_LABELS: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_SEPARATE_CATEGORY: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_SIMPLE: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_RACING_BARS_STOP: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_SCATTER_BUBBLES_SIMPLE: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetMultiValuePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_SCATTER_SIMPLE: PresetPartial<'multiValue', Partial<PresetMultiValuePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -1,8 +1,20 @@
1
1
  export { PRESET_MULTI_VALUE_BASIC } from './PRESET_MULTI_VALUE_BASIC';
2
2
  export { PRESET_MULTI_VALUE_SEPARATE_CATEGORY } from './PRESET_MULTI_VALUE_SEPARATE_CATEGORY';
3
+ export { PRESET_MULTI_VALUE_SIMPLE } from './PRESET_MULTI_VALUE_SIMPLE';
4
+ export { PRESET_RACING_BARS_ALL_ITEMS } from './PRESET_RACING_BARS_ALL_ITEMS';
5
+ export { PRESET_RACING_BARS_BASIC } from './PRESET_RACING_BARS_BASIC';
6
+ export { PRESET_RACING_BARS_FAST } from './PRESET_RACING_BARS_FAST';
7
+ export { PRESET_RACING_BARS_FASTER } from './PRESET_RACING_BARS_FASTER';
8
+ export { PRESET_RACING_BARS_LOOP } from './PRESET_RACING_BARS_LOOP';
9
+ export { PRESET_RACING_BARS_OUTSIDE_LABELS } from './PRESET_RACING_BARS_OUTSIDE_LABELS';
10
+ export { PRESET_RACING_BARS_SEPARATE_CATEGORY } from './PRESET_RACING_BARS_SEPARATE_CATEGORY';
11
+ export { PRESET_RACING_BARS_SIMPLE } from './PRESET_RACING_BARS_SIMPLE';
12
+ export { PRESET_RACING_BARS_STOP } from './PRESET_RACING_BARS_STOP';
3
13
  export { PRESET_SCATTER_BASIC } from './PRESET_SCATTER_BASIC';
4
- export { PRESET_SCATTER_SEPARATE_CATEGORY } from './PRESET_SCATTER_SEPARATE_CATEGORY';
5
14
  export { PRESET_SCATTER_BUBBLES_BASIC } from './PRESET_SCATTER_BUBBLES_BASIC';
6
15
  export { PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS } from './PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS';
7
16
  export { PRESET_SCATTER_BUBBLES_LINEAR_OPACITY } from './PRESET_SCATTER_BUBBLES_LINEAR_OPACITY';
8
17
  export { PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY } from './PRESET_SCATTER_BUBBLES_SEPARATE_CATEGORY';
18
+ export { PRESET_SCATTER_BUBBLES_SIMPLE } from './PRESET_SCATTER_BUBBLES_SIMPLE';
19
+ export { PRESET_SCATTER_SEPARATE_CATEGORY } from './PRESET_SCATTER_SEPARATE_CATEGORY';
20
+ export { PRESET_SCATTER_SIMPLE } from './PRESET_SCATTER_SIMPLE';
@@ -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_SIMPLE: 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_SIMPLE: PresetPartial<'relationship', Partial<PresetRelationshipPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -3,6 +3,8 @@ export { PRESET_FORCE_DIRECTED_BUBBLES_BASIC } from './PRESET_FORCE_DIRECTED_BUB
3
3
  export { PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH } from './PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH';
4
4
  export { PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW } from './PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW';
5
5
  export { PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM } from './PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM';
6
+ export { PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE } from './PRESET_FORCE_DIRECTED_BUBBLES_SIMPLE';
6
7
  export { PRESET_FORCE_DIRECTED_NONE_ZOOM } from './PRESET_FORCE_DIRECTED_NONE_ZOOM';
7
8
  export { PRESET_FORCE_DIRECTED_FIX_FONT_SIZE } from './PRESET_FORCE_DIRECTED_FIX_FONT_SIZE';
8
9
  export { PRESET_FORCE_DIRECTED_NONE_ARROW } from './PRESET_FORCE_DIRECTED_NONE_ARROW';
10
+ export { PRESET_FORCE_DIRECTED_SIMPLE } from './PRESET_FORCE_DIRECTED_SIMPLE';
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_BUBBLES_SIMPLE: PresetPartial<'series', Partial<PresetSeriesPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_PIE_SIMPLE: PresetPartial<'series', Partial<PresetSeriesPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_ROSE_SIMPLE: PresetPartial<'series', Partial<PresetSeriesPluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -1,16 +1,19 @@
1
1
  export { PRESET_BUBBLES_BASIC } from './PRESET_BUBBLES_BASIC';
2
2
  export { PRESET_BUBBLES_SCALING_BY_RADIUS } from './PRESET_BUBBLES_SCALING_BY_RADIUS';
3
3
  export { PRESET_BUBBLES_SEPARATE_SERIES } from './PRESET_BUBBLES_SEPARATE_SERIES';
4
+ export { PRESET_BUBBLES_SIMPLE } from './PRESET_BUBBLES_SIMPLE';
4
5
  export { PRESET_BUBBLES_SUM_SERIES } from './PRESET_BUBBLES_SUM_SERIES';
5
6
  export { PRESET_PIE_BASIC } from './PRESET_PIE_BASIC';
6
7
  export { PRESET_PIE_DONUT } from './PRESET_PIE_DONUT';
7
8
  export { PRESET_PIE_HALF_DONUT } from './PRESET_PIE_HALF_DONUT';
8
9
  export { PRESET_PIE_WITH_INNER_LABELS } from './PRESET_PIE_WITH_INNER_LABELS';
9
10
  export { PRESET_PIE_SEPARATE_SERIES } from './PRESET_PIE_SEPARATE_SERIES';
11
+ export { PRESET_PIE_SIMPLE } from './PRESET_PIE_SIMPLE';
10
12
  export { PRESET_PIE_SUM_SERIES } from './PRESET_PIE_SUM_SERIES';
11
13
  export { PRESET_ROSE_BASIC } from './PRESET_ROSE_BASIC';
12
14
  export { PRESET_ROSE_SCALING_BY_RADIUS } from './PRESET_ROSE_SCALING_BY_RADIUS';
13
15
  export { PRESET_ROSE_SEPARATE_SERIES } from './PRESET_ROSE_SEPARATE_SERIES';
16
+ export { PRESET_ROSE_SIMPLE } from './PRESET_ROSE_SIMPLE';
14
17
  export { PRESET_ROSE_SUM_SERIES } from './PRESET_ROSE_SUM_SERIES';
15
18
  export { PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES } from './PRESET_ROSE_SEPARATE_SERIES_AND_SUM_SERIES';
16
19
  export { PRESET_SERIES_BASIC } from './PRESET_SERIES_BASIC';
@@ -0,0 +1,4 @@
1
+ import { PresetPartial } from '../../lib/core-types';
2
+ import { PresetTreePluginParams, PresetNoneDataPluginParams } from '../types';
3
+
4
+ export declare const PRESET_TREE_MAP_SIMPLE: PresetPartial<'tree', Partial<PresetTreePluginParams> & Partial<PresetNoneDataPluginParams>>;
@@ -1 +1,2 @@
1
1
  export { PRESET_TREE_MAP_BASIC } from './PRESET_TREE_MAP_BASIC';
2
+ export { PRESET_TREE_MAP_SIMPLE } from './PRESET_TREE_MAP_SIMPLE';