@orbcharts/presets-basic 3.0.0-alpha.22 → 3.0.0-alpha.23

Sign up to get free protection for your applications and to get access to all the features.
Files changed (384) hide show
  1. package/dist/orbcharts-presets-basic.es.js +1617 -1103
  2. package/dist/orbcharts-presets-basic.umd.js +1 -1
  3. package/dist/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.d.ts +4 -0
  4. package/dist/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.d.ts +4 -0
  5. package/dist/src/grid/PRESET_BARS_ROUND.d.ts +4 -0
  6. package/dist/src/grid/PRESET_BARS_THIN.d.ts +4 -0
  7. package/dist/src/grid/PRESET_GRID_BASIC.d.ts +4 -0
  8. package/dist/src/grid/PRESET_GRID_HORIZONTAL.d.ts +4 -0
  9. package/dist/src/grid/PRESET_GRID_PN_SCALE.d.ts +4 -0
  10. package/dist/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.d.ts +4 -0
  11. package/dist/src/grid/PRESET_GRID_SEPARATE_SERIES.d.ts +4 -0
  12. package/dist/src/grid/PRESET_LINES_BASIC.d.ts +4 -0
  13. package/dist/src/grid/PRESET_LINES_CURVE.d.ts +4 -0
  14. package/dist/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.d.ts +4 -0
  15. package/dist/src/grid/PRESET_LINES_HORIZONTAL.d.ts +4 -0
  16. package/dist/src/grid/PRESET_LINES_LOOSE_TICKS.d.ts +4 -0
  17. package/dist/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.d.ts +4 -0
  18. package/dist/src/grid/PRESET_LINES_WITH_SOLID_DOTS.d.ts +4 -0
  19. package/dist/src/grid/PRESET_LINE_AREAS_BASIC.d.ts +4 -0
  20. package/dist/src/grid/PRESET_LINE_AREAS_CURVE.d.ts +4 -0
  21. package/dist/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.d.ts +4 -0
  22. package/dist/src/grid/PRESET_LINE_AREAS_HORIZONTAL.d.ts +4 -0
  23. package/dist/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.d.ts +4 -0
  24. package/dist/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.d.ts +4 -0
  25. package/dist/src/grid/PRESET_LINE_AREAS_SEPARATE_GRID.d.ts +4 -0
  26. package/dist/src/grid/index.d.ts +23 -0
  27. package/dist/src/index.d.ts +4 -47
  28. package/dist/src/multiGrid/PRESET_MULTI_GRID_2_GRID_SLOT.d.ts +4 -0
  29. package/dist/src/multiGrid/PRESET_MULTI_GRID_3_GRID_SLOT.d.ts +4 -0
  30. package/dist/src/multiGrid/PRESET_MULTI_GRID_4_GRID_SLOT.d.ts +4 -0
  31. package/dist/src/multiGrid/PRESET_MULTI_GRID_BASIC.d.ts +4 -0
  32. package/dist/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.d.ts +4 -0
  33. package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.d.ts +6 -0
  34. package/dist/src/multiGrid/PRESET_MULTI_LINES_2_GRID_SLOT.d.ts +4 -0
  35. package/dist/src/multiGrid/PRESET_MULTI_LINES_3_GRID_SLOT.d.ts +4 -0
  36. package/dist/src/multiGrid/PRESET_MULTI_LINES_4_GRID_SLOT.d.ts +4 -0
  37. package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_2_GRID_SLOT.d.ts +4 -0
  38. package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_3_GRID_SLOT.d.ts +4 -0
  39. package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_4_GRID_SLOT.d.ts +4 -0
  40. package/dist/src/multiGrid/index.d.ts +12 -0
  41. package/dist/src/params.d.ts +7 -0
  42. package/dist/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.d.ts +4 -0
  43. package/dist/src/series/PRESET_BUBBLES_SEPARATE_SERIES.d.ts +4 -0
  44. package/dist/src/series/PRESET_PIE_DONUT.d.ts +4 -0
  45. package/dist/src/series/PRESET_PIE_HALF_DONUT.d.ts +4 -0
  46. package/dist/src/series/PRESET_PIE_WITH_INNER_LABELS.d.ts +4 -0
  47. package/dist/src/series/PRESET_ROSE_SCALING_BY_RADIUS.d.ts +4 -0
  48. package/dist/src/series/PRESET_SERIES_BASIC.d.ts +4 -0
  49. package/dist/src/series/PRESET_SERIES_DESC.d.ts +4 -0
  50. package/dist/src/series/PRESET_SERIES_SEPARATE_SERIES.d.ts +4 -0
  51. package/dist/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.d.ts +4 -0
  52. package/dist/src/series/PRESET_SERIES_SUM_SERIES.d.ts +4 -0
  53. package/dist/src/series/index.d.ts +11 -0
  54. package/dist/src/tree/PRESET_TREE_BASIC.d.ts +4 -0
  55. package/dist/src/tree/index.d.ts +1 -0
  56. package/dist/src/types.d.ts +112 -37
  57. package/package.json +3 -3
  58. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +62 -0
  59. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +59 -0
  60. package/src/grid/PRESET_BARS_ROUND.ts +46 -0
  61. package/src/grid/PRESET_BARS_THIN.ts +43 -0
  62. package/src/grid/PRESET_GRID_BASIC.ts +25 -0
  63. package/src/grid/PRESET_GRID_HORIZONTAL.ts +42 -0
  64. package/src/grid/PRESET_GRID_PN_SCALE.ts +33 -0
  65. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +30 -0
  66. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +35 -0
  67. package/src/grid/PRESET_LINES_BASIC.ts +44 -0
  68. package/src/grid/PRESET_LINES_CURVE.ts +47 -0
  69. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +46 -0
  70. package/src/grid/PRESET_LINES_HORIZONTAL.ts +60 -0
  71. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +46 -0
  72. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +47 -0
  73. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +48 -0
  74. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +54 -0
  75. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +59 -0
  76. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +58 -0
  77. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +58 -0
  78. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +56 -0
  79. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +57 -0
  80. package/src/grid/PRESET_LINE_AREAS_SEPARATE_GRID.ts +59 -0
  81. package/src/grid/index.ts +23 -0
  82. package/src/index.ts +4 -404
  83. package/src/multiGrid/PRESET_MULTI_GRID_2_GRID_SLOT.ts +59 -0
  84. package/src/multiGrid/PRESET_MULTI_GRID_3_GRID_SLOT.ts +59 -0
  85. package/src/multiGrid/PRESET_MULTI_GRID_4_GRID_SLOT.ts +59 -0
  86. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +36 -0
  87. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +85 -0
  88. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +57 -0
  89. package/src/multiGrid/PRESET_MULTI_LINES_2_GRID_SLOT.ts +91 -0
  90. package/src/multiGrid/PRESET_MULTI_LINES_3_GRID_SLOT.ts +91 -0
  91. package/src/multiGrid/PRESET_MULTI_LINES_4_GRID_SLOT.ts +91 -0
  92. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_2_GRID_SLOT.ts +109 -0
  93. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_3_GRID_SLOT.ts +115 -0
  94. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_4_GRID_SLOT.ts +121 -0
  95. package/src/multiGrid/index.ts +12 -0
  96. package/src/params.ts +57 -0
  97. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +19 -0
  98. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +29 -0
  99. package/src/series/PRESET_PIE_DONUT.ts +23 -0
  100. package/src/series/PRESET_PIE_HALF_DONUT.ts +36 -0
  101. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +24 -0
  102. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +23 -0
  103. package/src/series/PRESET_SERIES_BASIC.ts +15 -0
  104. package/src/series/PRESET_SERIES_DESC.ts +15 -0
  105. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +15 -0
  106. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +16 -0
  107. package/src/series/PRESET_SERIES_SUM_SERIES.ts +15 -0
  108. package/src/series/index.ts +11 -0
  109. package/src/tree/PRESET_TREE_BASIC.ts +25 -0
  110. package/src/tree/index.ts +1 -0
  111. package/src/types.ts +237 -56
  112. package/tsconfig.json +1 -1
  113. package/dist/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING.d.ts +0 -3
  114. package/dist/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
  115. package/dist/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING.d.ts +0 -3
  116. package/dist/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
  117. package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING.d.ts +0 -3
  118. package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT.d.ts +0 -3
  119. package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
  120. package/dist/src/chartParamsFiles/CP_BOTTOM_SLIGHT_PADDING.d.ts +0 -3
  121. package/dist/src/chartParamsFiles/CP_LEFT_PADDING.d.ts +0 -3
  122. package/dist/src/chartParamsFiles/CP_LONG_PADDING.d.ts +0 -3
  123. package/dist/src/chartParamsFiles/CP_RIGHT_PADDING.d.ts +0 -3
  124. package/dist/src/chartParamsFiles/CP_TOP_AND_NO_BOTTOM_PADDING.d.ts +0 -3
  125. package/dist/src/chartParamsFiles/index.d.ts +0 -12
  126. package/dist/src/createPreset.d.ts +0 -9
  127. package/dist/src/gridDataFormatterFiles/DF_GRID_2_SERIES_SLOT.d.ts +0 -3
  128. package/dist/src/gridDataFormatterFiles/DF_GRID_3_SERIES_SLOT.d.ts +0 -3
  129. package/dist/src/gridDataFormatterFiles/DF_GRID_4_SERIES_SLOT.d.ts +0 -3
  130. package/dist/src/gridDataFormatterFiles/DF_GRID_BOTTOM_VALUE_AXIS.d.ts +0 -3
  131. package/dist/src/gridDataFormatterFiles/DF_GRID_BOTTOM_VALUE_AXIS_AND_NONE_GROUP_SCALE_PADDING.d.ts +0 -3
  132. package/dist/src/gridDataFormatterFiles/DF_GRID_NONE_GROUP_SCALE_PADDING.d.ts +0 -3
  133. package/dist/src/gridDataFormatterFiles/DF_GRID_PN_SCALE.d.ts +0 -3
  134. package/dist/src/gridDataFormatterFiles/DF_GRID_SEPARATE_SERIES.d.ts +0 -3
  135. package/dist/src/gridDataFormatterFiles/DF_LINE_AREAS_2_SERIES_SLOT.d.ts +0 -3
  136. package/dist/src/gridDataFormatterFiles/DF_LINE_AREAS_3_SERIES_SLOT.d.ts +0 -3
  137. package/dist/src/gridDataFormatterFiles/DF_LINE_AREAS_4_SERIES_SLOT.d.ts +0 -3
  138. package/dist/src/gridDataFormatterFiles/DF_LINE_AREAS_SEPARATE_SERIES.d.ts +0 -3
  139. package/dist/src/gridDataFormatterFiles/index.d.ts +0 -6
  140. package/dist/src/gridPluginParamsFiles/Bars/PP_BARS_ROUND.d.ts +0 -4
  141. package/dist/src/gridPluginParamsFiles/Bars/PP_BARS_THIN.d.ts +0 -4
  142. package/dist/src/gridPluginParamsFiles/Bars/index.d.ts +0 -2
  143. package/dist/src/gridPluginParamsFiles/Dots/PP_DOTS_ONLY_SHOW_HIGHLIGHTED.d.ts +0 -4
  144. package/dist/src/gridPluginParamsFiles/Dots/PP_DOTS_SOLID.d.ts +0 -4
  145. package/dist/src/gridPluginParamsFiles/Dots/index.d.ts +0 -2
  146. package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM.d.ts +0 -4
  147. package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.d.ts +0 -4
  148. package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST.d.ts +0 -4
  149. package/dist/src/gridPluginParamsFiles/GridLegend/index.d.ts +0 -3
  150. package/dist/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_LOOSE_TICKS.d.ts +0 -4
  151. package/dist/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_ROTATE_LABEL.d.ts +0 -4
  152. package/dist/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_TENSE_TICKS.d.ts +0 -4
  153. package/dist/src/gridPluginParamsFiles/GroupAxis/index.d.ts +0 -3
  154. package/dist/src/gridPluginParamsFiles/LineAreas/PP_LINE_AREAS_CURVE.d.ts +0 -4
  155. package/dist/src/gridPluginParamsFiles/LineAreas/index.d.ts +0 -1
  156. package/dist/src/gridPluginParamsFiles/Lines/PP_LINES_CURVE.d.ts +0 -4
  157. package/dist/src/gridPluginParamsFiles/Lines/index.d.ts +0 -1
  158. package/dist/src/gridPluginParamsFiles/index.d.ts +0 -6
  159. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_2_GRID_SLOT.d.ts +0 -3
  160. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_3_GRID_SLOT.d.ts +0 -3
  161. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_4_GRID_SLOT.d.ts +0 -3
  162. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_DIVERGING.d.ts +0 -3
  163. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_PN.d.ts +0 -3
  164. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_SEPARATE_GRID.d.ts +0 -3
  165. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_2_GRID_SLOT.d.ts +0 -3
  166. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_3_GRID_SLOT.d.ts +0 -3
  167. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_4_GRID_SLOT.d.ts +0 -3
  168. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_SEPARATE_GRID.d.ts +0 -3
  169. package/dist/src/multiGridDataFormatterFiles/index.d.ts +0 -3
  170. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_2_GRID_SLOT.d.ts +0 -4
  171. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_3_GRID_SLOT.d.ts +0 -4
  172. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_4_GRID_SLOT.d.ts +0 -4
  173. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/index.d.ts +0 -3
  174. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_2_GRID_SLOT.d.ts +0 -4
  175. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_3_GRID_SLOT.d.ts +0 -4
  176. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_4_GRID_SLOT.d.ts +0 -4
  177. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_ROUND.d.ts +0 -4
  178. package/dist/src/multiGridPluginParamsFiles/MultiBars/index.d.ts +0 -4
  179. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT.d.ts +0 -4
  180. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT.d.ts +0 -4
  181. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT.d.ts +0 -4
  182. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/index.d.ts +0 -3
  183. package/dist/src/multiGridPluginParamsFiles/MultiDots/PP_MULTI_DOTS_2_GRID_SLOT.d.ts +0 -4
  184. package/dist/src/multiGridPluginParamsFiles/MultiDots/PP_MULTI_DOTS_3_GRID_SLOT.d.ts +0 -4
  185. package/dist/src/multiGridPluginParamsFiles/MultiDots/PP_MULTI_DOTS_4_GRID_SLOT.d.ts +0 -4
  186. package/dist/src/multiGridPluginParamsFiles/MultiDots/index.d.ts +0 -3
  187. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM.d.ts +0 -4
  188. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.d.ts +0 -4
  189. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST.d.ts +0 -4
  190. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST.d.ts +0 -4
  191. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/index.d.ts +0 -4
  192. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_2_GRID_SLOT.d.ts +0 -4
  193. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_3_GRID_SLOT.d.ts +0 -4
  194. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_4_GRID_SLOT.d.ts +0 -4
  195. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_DIVERGING.d.ts +0 -4
  196. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/index.d.ts +0 -4
  197. package/dist/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_2_GRID_SLOT.d.ts +0 -4
  198. package/dist/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_3_GRID_SLOT.d.ts +0 -4
  199. package/dist/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_4_GRID_SLOT.d.ts +0 -4
  200. package/dist/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_CURVE.d.ts +0 -4
  201. package/dist/src/multiGridPluginParamsFiles/MultiLineAreas/index.d.ts +0 -4
  202. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_2_GRID_SLOT.d.ts +0 -4
  203. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_3_GRID_SLOT.d.ts +0 -4
  204. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_4_GRID_SLOT.d.ts +0 -4
  205. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_CURVE.d.ts +0 -4
  206. package/dist/src/multiGridPluginParamsFiles/MultiLines/index.d.ts +0 -4
  207. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_2_GRID_SLOT.d.ts +0 -4
  208. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_3_GRID_SLOT.d.ts +0 -4
  209. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_4_GRID_SLOT.d.ts +0 -4
  210. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_PN.d.ts +0 -0
  211. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/index.d.ts +0 -3
  212. package/dist/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_2_GRID_SLOT.d.ts +0 -4
  213. package/dist/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_3_GRID_SLOT.d.ts +0 -4
  214. package/dist/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_4_GRID_SLOT.d.ts +0 -4
  215. package/dist/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_PN.d.ts +0 -0
  216. package/dist/src/multiGridPluginParamsFiles/MultiValueStackAxis/index.d.ts +0 -3
  217. package/dist/src/multiGridPluginParamsFiles/index.d.ts +0 -10
  218. package/dist/src/multiValueDataFormatterFiles/index.d.ts +0 -1
  219. package/dist/src/multiValuePluginParamsFiles/index.d.ts +0 -1
  220. package/dist/src/relationshipDataFormatterFiles/index.d.ts +0 -1
  221. package/dist/src/relationshipPluginParamsFiles/index.d.ts +0 -1
  222. package/dist/src/seriesDataFormatterFiles/DF_SERIES_DESC.d.ts +0 -3
  223. package/dist/src/seriesDataFormatterFiles/DF_SERIES_SEPARATE_SERIES.d.ts +0 -3
  224. package/dist/src/seriesDataFormatterFiles/DF_SERIES_SEPARATE_SERIES_AND_DESC.d.ts +0 -3
  225. package/dist/src/seriesDataFormatterFiles/DF_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.d.ts +0 -3
  226. package/dist/src/seriesDataFormatterFiles/DF_SERIES_SUM_SERIES.d.ts +0 -3
  227. package/dist/src/seriesDataFormatterFiles/DF_SERIES_SUM_SERIES_AND_DESC.d.ts +0 -3
  228. package/dist/src/seriesDataFormatterFiles/index.d.ts +0 -6
  229. package/dist/src/seriesPluginParamsFiles/Bubbles/PP_BUBBLES_SCALING_BY_RADIUS.d.ts +0 -4
  230. package/dist/src/seriesPluginParamsFiles/Bubbles/index.d.ts +0 -1
  231. package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_BLACK_STROKE.d.ts +0 -0
  232. package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_DONUT.d.ts +0 -4
  233. package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_HALF_DONUT.d.ts +0 -4
  234. package/dist/src/seriesPluginParamsFiles/Pie/index.d.ts +0 -2
  235. package/dist/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_HALF_ANGLE.d.ts +0 -4
  236. package/dist/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_INNER.d.ts +0 -4
  237. package/dist/src/seriesPluginParamsFiles/PieLabels/index.d.ts +0 -2
  238. package/dist/src/seriesPluginParamsFiles/Rose/PP_ROSE_SCALING_BY_RADIUS.d.ts +0 -4
  239. package/dist/src/seriesPluginParamsFiles/Rose/index.d.ts +0 -1
  240. package/dist/src/seriesPluginParamsFiles/RoseLabels/PP_ROSE_LABELS_SCALING_BY_RADIUS.d.ts +0 -4
  241. package/dist/src/seriesPluginParamsFiles/RoseLabels/index.d.ts +0 -1
  242. package/dist/src/seriesPluginParamsFiles/SeriesLegend/PP_SERIES_LEGEND_ROUND.d.ts +0 -4
  243. package/dist/src/seriesPluginParamsFiles/SeriesLegend/index.d.ts +0 -1
  244. package/dist/src/seriesPluginParamsFiles/index.d.ts +0 -6
  245. package/dist/src/treeDataFormatterFiles/index.d.ts +0 -1
  246. package/dist/src/treePluginParamsFiles/TreeLegend/PP_TREE_LEGEND_BOTTOM.d.ts +0 -4
  247. package/dist/src/treePluginParamsFiles/TreeLegend/index.d.ts +0 -1
  248. package/dist/src/treePluginParamsFiles/index.d.ts +0 -1
  249. package/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING.ts +0 -14
  250. package/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
  251. package/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING.ts +0 -14
  252. package/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
  253. package/src/chartParamsFiles/CP_BOTTOM_PADDING.ts +0 -14
  254. package/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT.ts +0 -15
  255. package/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
  256. package/src/chartParamsFiles/CP_BOTTOM_SLIGHT_PADDING.ts +0 -14
  257. package/src/chartParamsFiles/CP_LEFT_PADDING.ts +0 -14
  258. package/src/chartParamsFiles/CP_LONG_PADDING.ts +0 -14
  259. package/src/chartParamsFiles/CP_RIGHT_PADDING.ts +0 -14
  260. package/src/chartParamsFiles/CP_TOP_AND_NO_BOTTOM_PADDING.ts +0 -14
  261. package/src/chartParamsFiles/index.ts +0 -13
  262. package/src/createPreset.ts +0 -88
  263. package/src/gridDataFormatterFiles/DF_GRID_2_SERIES_SLOT.ts +0 -17
  264. package/src/gridDataFormatterFiles/DF_GRID_3_SERIES_SLOT.ts +0 -17
  265. package/src/gridDataFormatterFiles/DF_GRID_4_SERIES_SLOT.ts +0 -17
  266. package/src/gridDataFormatterFiles/DF_GRID_BOTTOM_VALUE_AXIS.ts +0 -23
  267. package/src/gridDataFormatterFiles/DF_GRID_BOTTOM_VALUE_AXIS_AND_NONE_GROUP_SCALE_PADDING.ts +0 -18
  268. package/src/gridDataFormatterFiles/DF_GRID_NONE_GROUP_SCALE_PADDING.ts +0 -14
  269. package/src/gridDataFormatterFiles/DF_GRID_PN_SCALE.ts +0 -15
  270. package/src/gridDataFormatterFiles/DF_GRID_SEPARATE_SERIES.ts +0 -17
  271. package/src/gridDataFormatterFiles/DF_LINE_AREAS_2_SERIES_SLOT.ts +0 -20
  272. package/src/gridDataFormatterFiles/DF_LINE_AREAS_3_SERIES_SLOT.ts +0 -20
  273. package/src/gridDataFormatterFiles/DF_LINE_AREAS_4_SERIES_SLOT.ts +0 -20
  274. package/src/gridDataFormatterFiles/DF_LINE_AREAS_SEPARATE_SERIES.ts +0 -20
  275. package/src/gridDataFormatterFiles/index.ts +0 -12
  276. package/src/gridPluginParamsFiles/Bars/PP_BARS_ROUND.ts +0 -15
  277. package/src/gridPluginParamsFiles/Bars/PP_BARS_THIN.ts +0 -14
  278. package/src/gridPluginParamsFiles/Bars/index.ts +0 -2
  279. package/src/gridPluginParamsFiles/Dots/PP_DOTS_ONLY_SHOW_HIGHLIGHTED.ts +0 -12
  280. package/src/gridPluginParamsFiles/Dots/PP_DOTS_SOLID.ts +0 -14
  281. package/src/gridPluginParamsFiles/Dots/index.ts +0 -2
  282. package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM.ts +0 -14
  283. package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.ts +0 -15
  284. package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST.ts +0 -15
  285. package/src/gridPluginParamsFiles/GridLegend/index.ts +0 -3
  286. package/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_LOOSE_TICKS.ts +0 -12
  287. package/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_ROTATE_LABEL.ts +0 -13
  288. package/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_TENSE_TICKS.ts +0 -14
  289. package/src/gridPluginParamsFiles/GroupAxis/index.ts +0 -3
  290. package/src/gridPluginParamsFiles/LineAreas/PP_LINE_AREAS_CURVE.ts +0 -12
  291. package/src/gridPluginParamsFiles/LineAreas/index.ts +0 -1
  292. package/src/gridPluginParamsFiles/Lines/PP_LINES_CURVE.ts +0 -13
  293. package/src/gridPluginParamsFiles/Lines/index.ts +0 -1
  294. package/src/gridPluginParamsFiles/index.ts +0 -7
  295. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_2_GRID_SLOT.ts +0 -22
  296. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_3_GRID_SLOT.ts +0 -25
  297. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_4_GRID_SLOT.ts +0 -28
  298. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_DIVERGING.ts +0 -36
  299. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_PN.ts +0 -36
  300. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_SEPARATE_GRID.ts +0 -22
  301. package/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_2_GRID_SLOT.ts +0 -28
  302. package/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_3_GRID_SLOT.ts +0 -34
  303. package/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_4_GRID_SLOT.ts +0 -40
  304. package/src/multiGridDataFormatterFiles/DF_MULTI_LINE_AREAS_SEPARATE_GRID.ts +0 -28
  305. package/src/multiGridDataFormatterFiles/index.ts +0 -9
  306. package/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_2_GRID_SLOT.ts +0 -12
  307. package/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_3_GRID_SLOT.ts +0 -12
  308. package/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_4_GRID_SLOT.ts +0 -12
  309. package/src/multiGridPluginParamsFiles/MultiBarStack/index.ts +0 -4
  310. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_2_GRID_SLOT.ts +0 -12
  311. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_3_GRID_SLOT.ts +0 -12
  312. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_4_GRID_SLOT.ts +0 -12
  313. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_ROUND.ts +0 -15
  314. package/src/multiGridPluginParamsFiles/MultiBars/index.ts +0 -5
  315. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT.ts +0 -12
  316. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT.ts +0 -12
  317. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT.ts +0 -12
  318. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/index.ts +0 -3
  319. package/src/multiGridPluginParamsFiles/MultiDots/PP_MULTI_DOTS_2_GRID_SLOT.ts +0 -12
  320. package/src/multiGridPluginParamsFiles/MultiDots/PP_MULTI_DOTS_3_GRID_SLOT.ts +0 -12
  321. package/src/multiGridPluginParamsFiles/MultiDots/PP_MULTI_DOTS_4_GRID_SLOT.ts +0 -12
  322. package/src/multiGridPluginParamsFiles/MultiDots/index.ts +0 -3
  323. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM.ts +0 -14
  324. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.ts +0 -28
  325. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST.ts +0 -21
  326. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST.ts +0 -22
  327. package/src/multiGridPluginParamsFiles/MultiGridLegend/index.ts +0 -4
  328. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_2_GRID_SLOT.ts +0 -13
  329. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_3_GRID_SLOT.ts +0 -13
  330. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_4_GRID_SLOT.ts +0 -13
  331. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_DIVERGING.ts +0 -13
  332. package/src/multiGridPluginParamsFiles/MultiGroupAxis/index.ts +0 -4
  333. package/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_2_GRID_SLOT.ts +0 -12
  334. package/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_3_GRID_SLOT.ts +0 -12
  335. package/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_4_GRID_SLOT.ts +0 -12
  336. package/src/multiGridPluginParamsFiles/MultiLineAreas/PP_MULTI_LINE_AREAS_CURVE.ts +0 -12
  337. package/src/multiGridPluginParamsFiles/MultiLineAreas/index.ts +0 -4
  338. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_2_GRID_SLOT.ts +0 -12
  339. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_3_GRID_SLOT.ts +0 -12
  340. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_4_GRID_SLOT.ts +0 -12
  341. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_CURVE.ts +0 -13
  342. package/src/multiGridPluginParamsFiles/MultiLines/index.ts +0 -4
  343. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_2_GRID_SLOT.ts +0 -12
  344. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_3_GRID_SLOT.ts +0 -12
  345. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_4_GRID_SLOT.ts +0 -12
  346. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_PN.ts +0 -0
  347. package/src/multiGridPluginParamsFiles/MultiValueAxis/index.ts +0 -3
  348. package/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_2_GRID_SLOT.ts +0 -12
  349. package/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_3_GRID_SLOT.ts +0 -12
  350. package/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_4_GRID_SLOT.ts +0 -12
  351. package/src/multiGridPluginParamsFiles/MultiValueStackAxis/PP_MULTI_VALUE_STACK_AXIS_PN.ts +0 -0
  352. package/src/multiGridPluginParamsFiles/MultiValueStackAxis/index.ts +0 -3
  353. package/src/multiGridPluginParamsFiles/index.ts +0 -10
  354. package/src/multiValueDataFormatterFiles/index.ts +0 -1
  355. package/src/multiValuePluginParamsFiles/index.ts +0 -1
  356. package/src/relationshipDataFormatterFiles/index.ts +0 -1
  357. package/src/relationshipPluginParamsFiles/index.ts +0 -1
  358. package/src/seriesDataFormatterFiles/DF_SERIES_DESC.ts +0 -10
  359. package/src/seriesDataFormatterFiles/DF_SERIES_SEPARATE_SERIES.ts +0 -10
  360. package/src/seriesDataFormatterFiles/DF_SERIES_SEPARATE_SERIES_AND_DESC.ts +0 -11
  361. package/src/seriesDataFormatterFiles/DF_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +0 -11
  362. package/src/seriesDataFormatterFiles/DF_SERIES_SUM_SERIES.ts +0 -10
  363. package/src/seriesDataFormatterFiles/DF_SERIES_SUM_SERIES_AND_DESC.ts +0 -11
  364. package/src/seriesDataFormatterFiles/index.ts +0 -8
  365. package/src/seriesPluginParamsFiles/Bubbles/PP_BUBBLES_SCALING_BY_RADIUS.ts +0 -12
  366. package/src/seriesPluginParamsFiles/Bubbles/index.ts +0 -1
  367. package/src/seriesPluginParamsFiles/Pie/PP_PIE_BLACK_STROKE.ts +0 -0
  368. package/src/seriesPluginParamsFiles/Pie/PP_PIE_DONUT.ts +0 -12
  369. package/src/seriesPluginParamsFiles/Pie/PP_PIE_HALF_DONUT.ts +0 -14
  370. package/src/seriesPluginParamsFiles/Pie/index.ts +0 -2
  371. package/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_HALF_ANGLE.ts +0 -13
  372. package/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_INNER.ts +0 -13
  373. package/src/seriesPluginParamsFiles/PieLabels/index.ts +0 -2
  374. package/src/seriesPluginParamsFiles/Rose/PP_ROSE_SCALING_BY_RADIUS.ts +0 -12
  375. package/src/seriesPluginParamsFiles/Rose/index.ts +0 -2
  376. package/src/seriesPluginParamsFiles/RoseLabels/PP_ROSE_LABELS_SCALING_BY_RADIUS.ts +0 -12
  377. package/src/seriesPluginParamsFiles/RoseLabels/index.ts +0 -1
  378. package/src/seriesPluginParamsFiles/SeriesLegend/PP_SERIES_LEGEND_ROUND.ts +0 -12
  379. package/src/seriesPluginParamsFiles/SeriesLegend/index.ts +0 -1
  380. package/src/seriesPluginParamsFiles/index.ts +0 -6
  381. package/src/treeDataFormatterFiles/index.ts +0 -1
  382. package/src/treePluginParamsFiles/TreeLegend/PP_TREE_LEGEND_BOTTOM.ts +0 -14
  383. package/src/treePluginParamsFiles/TreeLegend/index.ts +0 -1
  384. package/src/treePluginParamsFiles/index.ts +0 -1
@@ -1,289 +1,383 @@
1
- const R = {
2
- id: "CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT",
3
- description: "間距下面及左邊留空",
4
- data: {
5
- padding: {
6
- top: 60,
7
- right: 60,
8
- bottom: 120,
9
- left: 160
1
+ const t = {
2
+ Bubbles: {},
3
+ Pie: {},
4
+ PieEventTexts: {},
5
+ PieLabels: {},
6
+ Rose: {},
7
+ RoseLabels: {},
8
+ SeriesLegend: {}
9
+ }, e = {
10
+ Bars: {},
11
+ BarsPN: {},
12
+ BarStack: {},
13
+ BarsTriangle: {},
14
+ Dots: {},
15
+ GridLegend: {},
16
+ GroupAux: {},
17
+ GroupAxis: {},
18
+ LineAreas: {},
19
+ Lines: {},
20
+ ScalingArea: {},
21
+ ValueAxis: {},
22
+ ValueStackAxis: {}
23
+ }, s = {
24
+ MultiBars: {},
25
+ MultiBarStack: {},
26
+ MultiBarsTriangle: {},
27
+ MultiDots: {},
28
+ MultiGridLegend: {},
29
+ MultiGroupAxis: {},
30
+ MultiLineAreas: {},
31
+ MultiLines: {},
32
+ MultiValueAxis: {},
33
+ MultiValueStackAxis: {},
34
+ OverlappingValueAxes: {},
35
+ OverlappingValueStackAxes: {}
36
+ }, i = {
37
+ Tooltip: {}
38
+ }, n = {
39
+ name: "PRESET_BUBBLES_SCALING_BY_RADIUS",
40
+ description: "以半徑尺寸為比例的泡泡圖",
41
+ allPluginParams: {
42
+ ...i,
43
+ Bubbles: {
44
+ arcScaleType: "radius"
10
45
  },
11
- highlightTarget: "series"
46
+ SeriesLegend: {
47
+ listRectRadius: 7
48
+ // 圓型圖例列點
49
+ }
12
50
  }
13
- }, D = {
14
- id: "CP_BOTTOM_AND_LEFT_PADDING",
15
- description: "間距下面及左邊留空",
16
- data: {
51
+ }, d = {
52
+ name: "PRESET_BUBBLES_SEPARATE_SERIES",
53
+ description: "分開顯示Series泡泡",
54
+ chartParams: {
55
+ // 加長留空
17
56
  padding: {
18
- top: 60,
19
- right: 60,
20
- bottom: 120,
57
+ top: 160,
58
+ right: 160,
59
+ bottom: 160,
21
60
  left: 160
22
61
  }
62
+ },
63
+ dataFormatter: {
64
+ separateSeries: !0
65
+ },
66
+ allPluginParams: {
67
+ ...i,
68
+ Bubbles: {},
69
+ SeriesLegend: {
70
+ listRectRadius: 7
71
+ // 圓型圖例列點
72
+ }
23
73
  }
24
- }, G = {
25
- id: "CP_BOTTOM_LONG_PADDING",
26
- description: "間距下面加長留空",
27
- data: {
74
+ }, o = {
75
+ name: "PRESET_PIE_DONUT",
76
+ description: "甜甜圈圖",
77
+ allPluginParams: {
78
+ ...i,
79
+ Pie: {
80
+ innerRadius: 0.5
81
+ },
82
+ PieLabels: {},
83
+ PieEventTexts: {},
84
+ SeriesLegend: {
85
+ listRectRadius: 7
86
+ // 圓型圖例列點
87
+ }
88
+ }
89
+ }, l = {
90
+ name: "PRESET_PIE_HALF_DONUT",
91
+ description: "半圓甜甜圈圖",
92
+ chartParams: {
28
93
  padding: {
29
- top: 60,
30
- right: 60,
31
- bottom: 160,
94
+ top: 120,
95
+ right: 120,
96
+ bottom: 0,
32
97
  left: 60
33
98
  }
99
+ },
100
+ allPluginParams: {
101
+ ...i,
102
+ Pie: {
103
+ innerRadius: 0.5,
104
+ startAngle: -Math.PI / 2,
105
+ endAngle: Math.PI / 2
106
+ },
107
+ PieLabels: {
108
+ startAngle: -Math.PI / 2,
109
+ endAngle: Math.PI / 2
110
+ },
111
+ PieEventTexts: {},
112
+ SeriesLegend: {
113
+ listRectRadius: 7
114
+ // 圓型圖例列點
115
+ }
34
116
  }
35
- }, O = {
36
- id: "CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT",
37
- description: "間距下面加長留空及highlight系列",
38
- data: {
117
+ }, g = {
118
+ name: "PRESET_PIE_WITH_INNER_LABELS",
119
+ description: "圓餅圖及內部資料標籤",
120
+ allPluginParams: {
121
+ ...i,
122
+ Pie: {},
123
+ PieLabels: {
124
+ labelCentroid: 1.3,
125
+ // 圖內資料標籤
126
+ labelColorType: "primary"
127
+ },
128
+ PieEventTexts: {},
129
+ SeriesLegend: {
130
+ listRectRadius: 7
131
+ // 圓型圖例列點
132
+ }
133
+ }
134
+ }, u = {
135
+ name: "PRESET_ROSE_SCALING_BY_RADIUS",
136
+ description: "以半徑尺寸為比例的玫瑰圖",
137
+ allPluginParams: {
138
+ ...i,
139
+ Rose: {
140
+ arcScaleType: "radius"
141
+ },
142
+ RoseLabels: {
143
+ arcScaleType: "radius"
144
+ },
145
+ SeriesLegend: {
146
+ listRectRadius: 7
147
+ // 圓型圖例列點
148
+ }
149
+ }
150
+ }, E = {
151
+ name: "PRESET_SERIES_BASIC",
152
+ description: "基本Series參數",
153
+ allPluginParams: {
154
+ ...t,
155
+ ...i,
156
+ SeriesLegend: {
157
+ listRectRadius: 7
158
+ // 圓型圖例列點
159
+ }
160
+ }
161
+ }, _ = {
162
+ name: "PRESET_SERIES_DESC",
163
+ description: "資料由大到小排序",
164
+ dataFormatter: {
165
+ sort: (a, r) => r.value - a.value
166
+ },
167
+ allPluginParams: {
168
+ ...t,
169
+ ...i
170
+ }
171
+ }, S = {
172
+ name: "PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
173
+ description: "分開顯示Series並合併Series資料",
174
+ dataFormatter: {
175
+ separateSeries: !0,
176
+ sumSeries: !0
177
+ },
178
+ allPluginParams: {
179
+ ...t,
180
+ ...i
181
+ }
182
+ }, R = {
183
+ name: "PRESET_SERIES_SEPARATE_SERIES",
184
+ description: "分開顯示Series",
185
+ dataFormatter: {
186
+ separateSeries: !0
187
+ },
188
+ allPluginParams: {
189
+ ...t,
190
+ ...i
191
+ }
192
+ }, p = {
193
+ name: "PRESET_SERIES_SUM_SERIES",
194
+ description: "合併Series資料",
195
+ dataFormatter: {
196
+ sumSeries: !0
197
+ },
198
+ allPluginParams: {
199
+ ...t,
200
+ ...i
201
+ }
202
+ }, P = {
203
+ name: "PRESET_BARS_HORIZONTAL_AND_ROUND",
204
+ description: "橫向圓角長條圖",
205
+ chartParams: {
39
206
  padding: {
40
207
  top: 60,
41
208
  right: 60,
42
- bottom: 160,
43
- left: 60
209
+ bottom: 120,
210
+ left: 160
211
+ }
212
+ },
213
+ dataFormatter: {
214
+ grid: {
215
+ valueAxis: {
216
+ position: "bottom"
217
+ // position: 'top'
218
+ // position: 'left'
219
+ // position: 'right'
220
+ },
221
+ groupAxis: {
222
+ position: "left"
223
+ // position: 'right'
224
+ // position: 'bottom'
225
+ // position: 'top'
226
+ }
227
+ }
228
+ },
229
+ allPluginParams: {
230
+ ...i,
231
+ Bars: {
232
+ barWidth: 0,
233
+ barPadding: 1,
234
+ barGroupPadding: 10,
235
+ barRadius: !0
44
236
  },
45
- highlightTarget: "series"
237
+ GroupAxis: {},
238
+ ValueAxis: {},
239
+ GroupAux: {},
240
+ GridLegend: {
241
+ // 底部圖例及圓弧列點
242
+ position: "bottom",
243
+ justify: "center",
244
+ padding: 14,
245
+ listRectRadius: 7
246
+ }
46
247
  }
47
- }, n = {
48
- id: "CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT",
49
- description: "間距下面留空及highlight群組",
50
- data: {
248
+ }, c = {
249
+ name: "PRESET_BARS_HORIZONTAL_AND_THIN",
250
+ description: "橫向細長長條圖",
251
+ chartParams: {
51
252
  padding: {
52
253
  top: 60,
53
254
  right: 60,
54
255
  bottom: 120,
55
- left: 60
256
+ left: 160
257
+ }
258
+ },
259
+ dataFormatter: {
260
+ grid: {
261
+ valueAxis: {
262
+ position: "bottom"
263
+ // position: 'top'
264
+ // position: 'left'
265
+ // position: 'right'
266
+ },
267
+ groupAxis: {
268
+ position: "left"
269
+ // position: 'right'
270
+ // position: 'bottom'
271
+ // position: 'top'
272
+ }
273
+ }
274
+ },
275
+ allPluginParams: {
276
+ ...i,
277
+ Bars: {
278
+ barWidth: 20,
279
+ barPadding: 1,
280
+ barGroupPadding: 10
56
281
  },
57
- highlightTarget: "group"
282
+ GroupAxis: {},
283
+ ValueAxis: {},
284
+ GroupAux: {},
285
+ GridLegend: {
286
+ position: "bottom",
287
+ justify: "center",
288
+ padding: 14
289
+ }
58
290
  }
59
291
  }, A = {
60
- id: "CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT",
61
- description: "間距下面留空及highlight系列",
62
- data: {
292
+ name: "PRESET_BARS_ROUND",
293
+ description: "圓角長條圖",
294
+ chartParams: {
63
295
  padding: {
64
296
  top: 60,
65
297
  right: 60,
66
298
  bottom: 120,
67
299
  left: 60
300
+ }
301
+ },
302
+ allPluginParams: {
303
+ ...i,
304
+ Bars: {
305
+ barWidth: 0,
306
+ barPadding: 1,
307
+ barGroupPadding: 10,
308
+ barRadius: !0
68
309
  },
69
- highlightTarget: "series"
310
+ GroupAxis: {},
311
+ ValueAxis: {},
312
+ GroupAux: {},
313
+ GridLegend: {
314
+ // 底部圖例及圓弧列點
315
+ position: "bottom",
316
+ justify: "center",
317
+ padding: 14,
318
+ listRectRadius: 7
319
+ }
70
320
  }
71
- }, o = {
72
- id: "CP_BOTTOM_PADDING",
73
- description: "間距下面留空",
74
- data: {
321
+ }, I = {
322
+ name: "PRESET_BARS_THIN",
323
+ description: "細長條圖",
324
+ chartParams: {
75
325
  padding: {
76
326
  top: 60,
77
327
  right: 60,
78
328
  bottom: 120,
79
329
  left: 60
80
330
  }
81
- }
82
- }, c = {
83
- id: "CP_BOTTOM_SLIGHT_PADDING",
84
- description: "間距下面些微留空",
85
- data: {
86
- padding: {
87
- top: 40,
88
- right: 40,
89
- bottom: 60,
90
- left: 40
331
+ },
332
+ allPluginParams: {
333
+ ...i,
334
+ Bars: {
335
+ barWidth: 20,
336
+ barPadding: 1,
337
+ barGroupPadding: 10
338
+ },
339
+ GroupAxis: {},
340
+ ValueAxis: {},
341
+ GroupAux: {},
342
+ GridLegend: {
343
+ position: "bottom",
344
+ justify: "center",
345
+ padding: 14
91
346
  }
92
347
  }
93
- }, l = {
94
- id: "CP_LEFT_PADDING",
95
- description: "間距左邊留空",
96
- data: {
348
+ }, L = {
349
+ name: "PRESET_GRID_BASIC",
350
+ description: "基本Grid參數",
351
+ chartParams: {
97
352
  padding: {
98
353
  top: 60,
99
354
  right: 60,
100
- bottom: 60,
101
- left: 160
102
- }
103
- }
104
- }, N = {
105
- id: "CP_TOP_AND_NO_BOTTOM_PADDING",
106
- description: "間距上面留空下面不留空",
107
- data: {
108
- padding: {
109
- top: 120,
110
- right: 120,
111
- bottom: 0,
355
+ bottom: 120,
112
356
  left: 60
113
357
  }
114
- }
115
- }, M = {
116
- id: "CP_RIGHT_PADDING",
117
- description: "間距右邊留空",
118
- data: {
119
- padding: {
120
- top: 60,
121
- right: 120,
122
- bottom: 60,
123
- left: 60
358
+ },
359
+ allPluginParams: {
360
+ ...e,
361
+ ...i,
362
+ GridLegend: {
363
+ position: "bottom",
364
+ justify: "center",
365
+ padding: 14
124
366
  }
125
367
  }
126
- }, p = {
127
- id: "CP_LONG_PADDING",
128
- description: "加長留空",
129
- data: {
368
+ }, T = {
369
+ name: "PRESET_GRID_HORIZONTAL",
370
+ description: "橫向圖",
371
+ chartParams: {
372
+ // 間距下面及左邊留空
130
373
  padding: {
131
- top: 160,
132
- right: 160,
133
- bottom: 160,
374
+ top: 60,
375
+ right: 60,
376
+ bottom: 120,
134
377
  left: 160
135
378
  }
136
- }
137
- }, U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
138
- __proto__: null,
139
- CP_BOTTOM_AND_LEFT_PADDING: D,
140
- CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT: R,
141
- CP_BOTTOM_LONG_PADDING: G,
142
- CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT: O,
143
- CP_BOTTOM_PADDING: o,
144
- CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT: n,
145
- CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT: A,
146
- CP_BOTTOM_SLIGHT_PADDING: c,
147
- CP_LEFT_PADDING: l,
148
- CP_LONG_PADDING: p,
149
- CP_RIGHT_PADDING: M,
150
- CP_TOP_AND_NO_BOTTOM_PADDING: N
151
- }, Symbol.toStringTag, { value: "Module" })), u = {
152
- id: "DF_SERIES_DESC",
153
- chartType: "series",
154
- description: "資料由大到小排序",
155
- data: {
156
- sort: (I, t) => t.value - I.value
157
- }
158
- }, g = {
159
- id: "DF_SERIES_SEPARATE_SERIES",
160
- chartType: "series",
161
- description: "分開顯示Series",
162
- data: {
163
- separateSeries: !0
164
- }
165
- }, m = {
166
- id: "DF_SERIES_SEPARATE_SERIES_AND_DESC",
167
- chartType: "series",
168
- description: "分開顯示Series並排序",
169
- data: {
170
- separateSeries: !0,
171
- sort: (I, t) => t.value - I.value
172
- }
173
- }, B = {
174
- id: "DF_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
175
- chartType: "series",
176
- description: "分開顯示Series並合併Series資料",
177
- data: {
178
- separateSeries: !0,
179
- sumSeries: !0
180
- }
181
- }, H = {
182
- id: "DF_SERIES_SUM_SERIES",
183
- chartType: "series",
184
- description: "合併Series資料",
185
- data: {
186
- sumSeries: !0
187
- }
188
- }, h = {
189
- id: "DF_SERIES_SUM_SERIES_AND_DESC",
190
- chartType: "series",
191
- description: "合併Series資料並排序",
192
- data: {
193
- sumSeries: !0,
194
- sort: (I, t) => t.value - I.value
195
- }
196
- }, C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
197
- __proto__: null,
198
- DF_SERIES_DESC: u,
199
- DF_SERIES_SEPARATE_SERIES: g,
200
- DF_SERIES_SEPARATE_SERIES_AND_DESC: m,
201
- DF_SERIES_SEPARATE_SERIES_AND_SUM_SERIES: B,
202
- DF_SERIES_SUM_SERIES: H,
203
- DF_SERIES_SUM_SERIES_AND_DESC: h
204
- }, Symbol.toStringTag, { value: "Module" })), F = {
205
- id: "PP_BUBBLES_SCALING_BY_RADIUS",
206
- chartType: "series",
207
- pluginName: "Bubbles",
208
- description: "以半徑尺寸為比例的泡泡圖",
209
- data: {
210
- arcScaleType: "radius"
211
- }
212
- }, y = {
213
- id: "PP_PIE_DONUT",
214
- chartType: "series",
215
- pluginName: "Pie",
216
- description: "甜甜圈圖",
217
- data: {
218
- innerRadius: 0.5
219
- }
220
- }, b = {
221
- id: "PP_PIE_HALF_DONUT",
222
- chartType: "series",
223
- pluginName: "Pie",
224
- description: "半圓甜甜圈圖",
225
- data: {
226
- innerRadius: 0.5,
227
- startAngle: -Math.PI / 2,
228
- endAngle: Math.PI / 2
229
- }
230
- }, X = {
231
- id: "PP_PIE_LABELS_HALF_ANGLE",
232
- chartType: "series",
233
- pluginName: "PieLabels",
234
- description: "半圓甜甜圈資料標籤",
235
- data: {
236
- startAngle: -Math.PI / 2,
237
- endAngle: Math.PI / 2
238
- }
239
- }, W = {
240
- id: "PP_PIE_LABELS_INNER",
241
- chartType: "series",
242
- pluginName: "PieLabels",
243
- description: "圖內資料標籤",
244
- data: {
245
- labelCentroid: 1.3,
246
- labelColorType: "primary"
247
- }
248
- }, V = {
249
- id: "PP_ROSE_SCALING_BY_RADIUS",
250
- chartType: "series",
251
- pluginName: "Rose",
252
- description: "以半徑尺寸為比例的玫瑰圖",
253
- data: {
254
- arcScaleType: "radius"
255
- }
256
- }, x = {
257
- id: "PP_ROSE_LABELS_SCALING_BY_RADIUS",
258
- chartType: "series",
259
- pluginName: "RoseLabels",
260
- description: "以半徑尺寸為比例的玫瑰圖標籤",
261
- data: {
262
- arcScaleType: "radius"
263
- }
264
- }, f = {
265
- id: "PP_SERIES_LEGEND_BOTTOM",
266
- chartType: "series",
267
- pluginName: "SeriesLegend",
268
- description: "圓型圖例列點",
269
- data: {
270
- listRectRadius: 7
271
- }
272
- }, j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
273
- __proto__: null,
274
- PP_BUBBLES_SCALING_BY_RADIUS: F,
275
- PP_PIE_DONUT: y,
276
- PP_PIE_HALF_DONUT: b,
277
- PP_PIE_LABELS_HALF_ANGLE: X,
278
- PP_PIE_LABELS_INNER: W,
279
- PP_ROSE_LABELS_SCALING_BY_RADIUS: x,
280
- PP_ROSE_SCALING_BY_RADIUS: V,
281
- PP_SERIES_LEGEND_ROUND: f
282
- }, Symbol.toStringTag, { value: "Module" })), v = {
283
- id: "DF_GRID_BOTTOM_VALUE_AXIS",
284
- chartType: "grid",
285
- description: "底部橫向資料圖軸",
286
- data: {
379
+ },
380
+ dataFormatter: {
287
381
  grid: {
288
382
  valueAxis: {
289
383
  position: "bottom"
@@ -298,218 +392,584 @@ const R = {
298
392
  // position: 'top'
299
393
  }
300
394
  }
395
+ },
396
+ allPluginParams: {
397
+ ...e,
398
+ ...i,
399
+ GridLegend: {
400
+ position: "bottom",
401
+ justify: "center",
402
+ padding: 14
403
+ }
301
404
  }
302
- }, K = {
303
- id: "DF_GRID_BOTTOM_VALUE_AXIS_AND_NONE_GROUP_SCALE_PADDING",
304
- chartType: "grid",
305
- description: "底部橫向資料圖軸及無群組圖軸的左右間距",
306
- data: {
405
+ }, m = {
406
+ name: "PRESET_GRID_PN_SCALE",
407
+ description: "正負值分向圖",
408
+ chartParams: {
409
+ padding: {
410
+ top: 60,
411
+ right: 60,
412
+ bottom: 120,
413
+ left: 60
414
+ }
415
+ },
416
+ dataFormatter: {
307
417
  grid: {
308
418
  valueAxis: {
309
- position: "bottom"
310
- },
311
- groupAxis: {
312
- position: "left",
313
- scalePadding: 0
419
+ scaleDomain: ["auto", "auto"],
420
+ scaleRange: [0.05, 0.95]
314
421
  }
315
422
  }
423
+ },
424
+ allPluginParams: {
425
+ ...e,
426
+ ...i,
427
+ GridLegend: {
428
+ position: "bottom",
429
+ justify: "center",
430
+ padding: 14
431
+ }
316
432
  }
317
- }, k = {
318
- id: "DF_GRID_SEPARATE_SERIES",
319
- chartType: "grid",
433
+ }, x = {
434
+ name: "PRESET_GRID_ROTATE_AXIS_LABEL",
435
+ description: "傾斜標籤",
436
+ chartParams: {
437
+ // 間距下面加長留空
438
+ padding: {
439
+ top: 60,
440
+ right: 60,
441
+ bottom: 160,
442
+ left: 60
443
+ }
444
+ },
445
+ allPluginParams: {
446
+ ...e,
447
+ ...i,
448
+ GroupAxis: {
449
+ tickPadding: 15,
450
+ tickTextRotate: -30
451
+ },
452
+ GridLegend: {
453
+ position: "bottom",
454
+ justify: "center",
455
+ padding: 14
456
+ }
457
+ }
458
+ }, h = {
459
+ name: "PRESET_GRID_SEPARATE_SERIES",
320
460
  description: "分開顯示Series",
321
- data: {
461
+ chartParams: {
462
+ padding: {
463
+ top: 60,
464
+ right: 60,
465
+ bottom: 160,
466
+ left: 60
467
+ }
468
+ },
469
+ dataFormatter: {
322
470
  grid: {
323
471
  // seriesSlotIndexes: [0, 1],
324
472
  separateSeries: !0
325
473
  }
326
- // container: {
327
- // rowAmount: 1,
328
- // columnAmount: 2,
329
- // }
330
- }
331
- }, Y = {
332
- id: "DF_GRID_PN_SCALE",
333
- chartType: "grid",
334
- description: "分向資料圖軸",
335
- data: {
336
- grid: {
337
- valueAxis: {
338
- scaleDomain: ["auto", "auto"],
339
- scaleRange: [0.05, 0.95]
340
- }
474
+ },
475
+ allPluginParams: {
476
+ ...e,
477
+ ...i,
478
+ GroupAxis: {
479
+ tickPadding: 15,
480
+ tickTextRotate: -30
481
+ },
482
+ GridLegend: {
483
+ position: "bottom",
484
+ justify: "center",
485
+ padding: 14
341
486
  }
342
487
  }
343
- }, z = {
344
- id: "DF_GRID_NONE_GROUP_SCALE_PADDING",
345
- chartType: "grid",
346
- description: "無群組圖軸的左右間距",
347
- data: {
488
+ }, G = {
489
+ name: "PRESET_LINE_AREAS_BASIC",
490
+ description: "基本LineArea參數",
491
+ chartParams: {
492
+ padding: {
493
+ top: 60,
494
+ right: 60,
495
+ bottom: 120,
496
+ left: 60
497
+ },
498
+ highlightTarget: "series"
499
+ },
500
+ dataFormatter: {
348
501
  grid: {
349
502
  groupAxis: {
350
503
  scalePadding: 0
351
504
  }
352
505
  }
506
+ },
507
+ allPluginParams: {
508
+ ...i,
509
+ Lines: {},
510
+ LineAreas: {},
511
+ Dots: {},
512
+ GroupAxis: {},
513
+ ValueAxis: {},
514
+ GroupAux: {},
515
+ GridLegend: {
516
+ position: "bottom",
517
+ justify: "center",
518
+ padding: 14,
519
+ listRectHeight: 2
520
+ }
353
521
  }
354
- }, Z = {
355
- id: "DF_LINE_AREAS_SEPARATE_SERIES",
356
- chartType: "grid",
357
- description: "LineAreas 分開顯示Series",
358
- data: {
522
+ }, M = {
523
+ name: "PRESET_LINE_AREAS_CURVE",
524
+ description: "弧線折線圖",
525
+ chartParams: {
526
+ padding: {
527
+ top: 60,
528
+ right: 60,
529
+ bottom: 120,
530
+ left: 60
531
+ },
532
+ highlightTarget: "series"
533
+ },
534
+ dataFormatter: {
359
535
  grid: {
360
- // seriesSlotIndexes: [0, 1],
361
- separateSeries: !0,
362
536
  groupAxis: {
363
537
  scalePadding: 0
364
538
  }
365
539
  }
366
- // container: {
367
- // rowAmount: 1,
368
- // columnAmount: 2,
369
- // }
540
+ },
541
+ allPluginParams: {
542
+ ...i,
543
+ Lines: {
544
+ lineCurve: "curveMonotoneX",
545
+ lineWidth: 3
546
+ },
547
+ LineAreas: {
548
+ lineCurve: "curveMonotoneX"
549
+ },
550
+ Dots: {},
551
+ GroupAxis: {},
552
+ ValueAxis: {},
553
+ GroupAux: {},
554
+ GridLegend: {
555
+ position: "bottom",
556
+ justify: "center",
557
+ padding: 14,
558
+ listRectHeight: 2
559
+ }
370
560
  }
371
- }, $ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
372
- __proto__: null,
373
- DF_GRID_BOTTOM_VALUE_AXIS: v,
374
- DF_GRID_BOTTOM_VALUE_AXIS_AND_NONE_GROUP_SCALE_PADDING: K,
375
- DF_GRID_NONE_GROUP_SCALE_PADDING: z,
376
- DF_GRID_PN_SCALE: Y,
377
- DF_GRID_SEPARATE_SERIES: k,
378
- DF_LINE_AREAS_SEPARATE_SERIES: Z
379
- }, Symbol.toStringTag, { value: "Module" })), w = {
380
- id: "PP_BARS_ROUND",
381
- chartType: "grid",
382
- pluginName: "Bars",
383
- description: "圓角長條圖",
384
- data: {
385
- barWidth: 0,
386
- barPadding: 1,
387
- barGroupPadding: 10,
388
- barRadius: !0
561
+ }, b = {
562
+ name: "PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS",
563
+ description: "折線圖及Highlight Group圓點",
564
+ chartParams: {
565
+ padding: {
566
+ top: 60,
567
+ right: 60,
568
+ bottom: 120,
569
+ left: 60
570
+ },
571
+ highlightTarget: "group"
572
+ },
573
+ dataFormatter: {
574
+ grid: {
575
+ groupAxis: {
576
+ scalePadding: 0
577
+ }
578
+ }
579
+ },
580
+ allPluginParams: {
581
+ ...i,
582
+ Lines: {
583
+ lineWidth: 3
584
+ },
585
+ LineAreas: {},
586
+ Dots: {
587
+ onlyShowHighlighted: !1
588
+ },
589
+ GroupAxis: {},
590
+ ValueAxis: {},
591
+ GroupAux: {},
592
+ GridLegend: {
593
+ position: "bottom",
594
+ justify: "center",
595
+ padding: 14,
596
+ listRectHeight: 2
597
+ }
389
598
  }
390
- }, q = {
391
- id: "PP_BARS_THIN",
392
- chartType: "grid",
393
- pluginName: "Bars",
394
- description: "圓角長條圖",
395
- data: {
396
- barWidth: 20,
397
- barPadding: 1,
398
- barGroupPadding: 10
599
+ }, D = {
600
+ name: "PRESET_LINE_AREAS_HORIZONTAL",
601
+ description: "橫向折線圖",
602
+ chartParams: {
603
+ padding: {
604
+ top: 60,
605
+ right: 60,
606
+ bottom: 120,
607
+ left: 160
608
+ },
609
+ highlightTarget: "series"
610
+ },
611
+ dataFormatter: {
612
+ grid: {
613
+ valueAxis: {
614
+ position: "bottom"
615
+ },
616
+ groupAxis: {
617
+ position: "left",
618
+ scalePadding: 0
619
+ }
620
+ }
621
+ },
622
+ allPluginParams: {
623
+ ...i,
624
+ Lines: {},
625
+ LineAreas: {},
626
+ Dots: {},
627
+ GroupAxis: {},
628
+ ValueAxis: {},
629
+ GroupAux: {},
630
+ GridLegend: {
631
+ position: "bottom",
632
+ justify: "center",
633
+ padding: 14,
634
+ listRectHeight: 2
635
+ }
399
636
  }
400
- }, J = {
401
- id: "PP_DOTS_ONLY_SHOW_HIGHLIGHTED",
402
- chartType: "grid",
403
- pluginName: "Dots",
404
- description: "顯示highlight圓點",
405
- data: {
406
- onlyShowHighlighted: !1
637
+ }, B = {
638
+ name: "PRESET_LINE_AREAS_LOOSE_TICKS",
639
+ description: "寬鬆標籤",
640
+ chartParams: {
641
+ padding: {
642
+ top: 60,
643
+ right: 60,
644
+ bottom: 120,
645
+ left: 60
646
+ },
647
+ highlightTarget: "series"
648
+ },
649
+ dataFormatter: {
650
+ grid: {
651
+ groupAxis: {
652
+ scalePadding: 0
653
+ }
654
+ }
655
+ },
656
+ allPluginParams: {
657
+ ...i,
658
+ Lines: {},
659
+ LineAreas: {},
660
+ Dots: {},
661
+ GroupAxis: {
662
+ ticks: 6
663
+ },
664
+ ValueAxis: {},
665
+ GroupAux: {},
666
+ GridLegend: {
667
+ position: "bottom",
668
+ justify: "center",
669
+ padding: 14,
670
+ listRectHeight: 2
671
+ }
407
672
  }
408
- }, Q = {
409
- id: "PP_DOTS_SOLID",
410
- chartType: "grid",
411
- pluginName: "Dots",
412
- description: "實心圓點",
413
- data: {
414
- radius: 3,
415
- fillColorType: "series",
416
- onlyShowHighlighted: !1
673
+ }, N = {
674
+ name: "PRESET_LINE_AREAS_ROTATE_AXIS_LABEL",
675
+ description: "傾斜標籤",
676
+ chartParams: {
677
+ padding: {
678
+ top: 60,
679
+ right: 60,
680
+ bottom: 160,
681
+ left: 60
682
+ },
683
+ highlightTarget: "series"
684
+ },
685
+ dataFormatter: {
686
+ grid: {
687
+ groupAxis: {
688
+ scalePadding: 0
689
+ }
690
+ }
691
+ },
692
+ allPluginParams: {
693
+ ...i,
694
+ Lines: {},
695
+ LineAreas: {},
696
+ Dots: {},
697
+ GroupAxis: {
698
+ tickPadding: 15,
699
+ tickTextRotate: -30
700
+ },
701
+ ValueAxis: {},
702
+ GroupAux: {},
703
+ GridLegend: {
704
+ position: "bottom",
705
+ justify: "center",
706
+ padding: 14,
707
+ listRectHeight: 2
708
+ }
417
709
  }
418
- }, __ = {
419
- id: "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST",
420
- chartType: "grid",
421
- pluginName: "GridLegend",
422
- description: "底部圖例及線條列點",
423
- data: {
424
- position: "bottom",
425
- justify: "center",
426
- padding: 14,
427
- listRectHeight: 2
710
+ }, f = {
711
+ name: "PRESET_LINE_AREAS_SEPARATE_GRID",
712
+ description: "LineAreas 分開顯示Series",
713
+ chartParams: {
714
+ padding: {
715
+ top: 60,
716
+ right: 60,
717
+ bottom: 160,
718
+ left: 60
719
+ },
720
+ highlightTarget: "series"
721
+ },
722
+ dataFormatter: {
723
+ grid: {
724
+ // seriesSlotIndexes: [0, 1],
725
+ separateSeries: !0,
726
+ groupAxis: {
727
+ scalePadding: 0
728
+ }
729
+ }
730
+ },
731
+ allPluginParams: {
732
+ ...i,
733
+ Lines: {},
734
+ LineAreas: {},
735
+ Dots: {},
736
+ GroupAxis: {
737
+ tickPadding: 15,
738
+ tickTextRotate: -30
739
+ },
740
+ ValueAxis: {},
741
+ GroupAux: {},
742
+ GridLegend: {
743
+ position: "bottom",
744
+ justify: "center",
745
+ padding: 14,
746
+ listRectHeight: 2
747
+ }
428
748
  }
429
- }, I_ = {
430
- id: "PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST",
431
- chartType: "grid",
432
- pluginName: "GridLegend",
433
- description: "底部圖例及圓弧列點",
434
- data: {
435
- position: "bottom",
436
- justify: "center",
437
- padding: 14,
438
- listRectRadius: 7
749
+ }, O = {
750
+ name: "PRESET_LINES_BASIC",
751
+ description: "基本Lines參數",
752
+ chartParams: {
753
+ padding: {
754
+ top: 60,
755
+ right: 60,
756
+ bottom: 120,
757
+ left: 60
758
+ },
759
+ highlightTarget: "series"
760
+ },
761
+ allPluginParams: {
762
+ ...i,
763
+ Lines: {},
764
+ Dots: {},
765
+ GroupAxis: {},
766
+ ValueAxis: {},
767
+ GroupAux: {},
768
+ GridLegend: {
769
+ position: "bottom",
770
+ justify: "center",
771
+ padding: 14,
772
+ listRectHeight: 2
773
+ }
439
774
  }
440
- }, t_ = {
441
- id: "PP_GRID_LEGEND_BOTTOM",
442
- chartType: "grid",
443
- pluginName: "GridLegend",
444
- description: "底部圖例",
445
- data: {
446
- position: "bottom",
447
- justify: "center",
448
- padding: 14
775
+ }, H = {
776
+ name: "PRESET_LINES_CURVE",
777
+ description: "弧線折線圖",
778
+ chartParams: {
779
+ padding: {
780
+ top: 60,
781
+ right: 60,
782
+ bottom: 120,
783
+ left: 60
784
+ },
785
+ highlightTarget: "series"
786
+ },
787
+ allPluginParams: {
788
+ ...i,
789
+ Lines: {
790
+ lineCurve: "curveMonotoneX",
791
+ lineWidth: 3
792
+ },
793
+ Dots: {},
794
+ GroupAxis: {},
795
+ ValueAxis: {},
796
+ GroupAux: {},
797
+ GridLegend: {
798
+ position: "bottom",
799
+ justify: "center",
800
+ padding: 14,
801
+ listRectHeight: 2
802
+ }
449
803
  }
450
- }, T_ = {
451
- id: "PP_GROUP_AXIS_ROTATE_LABEL",
452
- chartType: "grid",
453
- pluginName: "GroupAxis",
454
- description: "群組圖軸標籤文字傾斜",
455
- data: {
456
- tickPadding: 15,
457
- tickTextRotate: -30
804
+ }, U = {
805
+ name: "PRESET_LINES_HIGHLIGHT_GROUP_DOTS",
806
+ description: "折線圖及Highlight Group圓點",
807
+ chartParams: {
808
+ padding: {
809
+ top: 60,
810
+ right: 60,
811
+ bottom: 120,
812
+ left: 60
813
+ },
814
+ highlightTarget: "group"
815
+ },
816
+ allPluginParams: {
817
+ ...i,
818
+ Lines: {},
819
+ Dots: {
820
+ onlyShowHighlighted: !1
821
+ },
822
+ GroupAxis: {},
823
+ ValueAxis: {},
824
+ GroupAux: {},
825
+ GridLegend: {
826
+ position: "bottom",
827
+ justify: "center",
828
+ padding: 14,
829
+ listRectHeight: 2
830
+ }
458
831
  }
459
- }, P_ = {
460
- id: "PP_GROUP_AXIS_TENSE_TICKS",
461
- chartType: "grid",
462
- pluginName: "GroupAxis",
463
- description: "密集標籤",
464
- data: {
465
- ticks: 12,
466
- tickPadding: 15,
467
- tickTextRotate: -30
832
+ }, V = {
833
+ name: "PRESET_LINES_HORIZONTAL",
834
+ description: "橫向折線圖",
835
+ chartParams: {
836
+ padding: {
837
+ top: 60,
838
+ right: 60,
839
+ bottom: 120,
840
+ left: 160
841
+ },
842
+ highlightTarget: "series"
843
+ },
844
+ dataFormatter: {
845
+ grid: {
846
+ valueAxis: {
847
+ position: "bottom"
848
+ // position: 'top'
849
+ // position: 'left'
850
+ // position: 'right'
851
+ },
852
+ groupAxis: {
853
+ position: "left"
854
+ // position: 'right'
855
+ // position: 'bottom'
856
+ // position: 'top'
857
+ }
858
+ }
859
+ },
860
+ allPluginParams: {
861
+ ...i,
862
+ Lines: {},
863
+ Dots: {},
864
+ GroupAxis: {},
865
+ ValueAxis: {},
866
+ GroupAux: {},
867
+ GridLegend: {
868
+ position: "bottom",
869
+ justify: "center",
870
+ padding: 14,
871
+ listRectHeight: 2
872
+ }
468
873
  }
469
- }, i_ = {
470
- id: "PP_GROUP_AXIS_LOOSE_TICKS",
471
- chartType: "grid",
472
- pluginName: "GroupAxis",
874
+ }, k = {
875
+ name: "PRESET_LINES_LOOSE_TICKS",
473
876
  description: "寬鬆標籤",
474
- data: {
475
- ticks: 6
877
+ chartParams: {
878
+ padding: {
879
+ top: 60,
880
+ right: 60,
881
+ bottom: 120,
882
+ left: 60
883
+ },
884
+ highlightTarget: "series"
885
+ },
886
+ allPluginParams: {
887
+ ...i,
888
+ Lines: {},
889
+ Dots: {},
890
+ GroupAxis: {
891
+ ticks: 6
892
+ },
893
+ ValueAxis: {},
894
+ GroupAux: {},
895
+ GridLegend: {
896
+ position: "bottom",
897
+ justify: "center",
898
+ padding: 14,
899
+ listRectHeight: 2
900
+ }
476
901
  }
477
- }, a_ = {
478
- id: "PP_LINES_CURVE",
479
- chartType: "grid",
480
- pluginName: "Lines",
481
- description: "圓弧折線圖",
482
- data: {
483
- lineCurve: "curveMonotoneX",
484
- lineWidth: 3
902
+ }, y = {
903
+ name: "PRESET_LINES_ROTATE_AXIS_LABEL",
904
+ description: "傾斜標籤",
905
+ chartParams: {
906
+ padding: {
907
+ top: 60,
908
+ right: 60,
909
+ bottom: 160,
910
+ left: 60
911
+ },
912
+ highlightTarget: "series"
913
+ },
914
+ allPluginParams: {
915
+ ...i,
916
+ Lines: {},
917
+ Dots: {},
918
+ GroupAxis: {
919
+ tickPadding: 15,
920
+ tickTextRotate: -30
921
+ },
922
+ ValueAxis: {},
923
+ GroupAux: {},
924
+ GridLegend: {
925
+ position: "bottom",
926
+ justify: "center",
927
+ padding: 14,
928
+ listRectHeight: 2
929
+ }
485
930
  }
486
- }, e_ = {
487
- id: "PP_LINE_AREAS_CURVE",
488
- chartType: "grid",
489
- pluginName: "LineAreas",
490
- description: "圓弧折線圖",
491
- data: {
492
- lineCurve: "curveMonotoneX"
931
+ }, j = {
932
+ name: "PRESET_LINES_WITH_SOLID_DOTS",
933
+ description: "折線圖及實心圓點",
934
+ chartParams: {
935
+ padding: {
936
+ top: 60,
937
+ right: 60,
938
+ bottom: 120,
939
+ left: 60
940
+ },
941
+ highlightTarget: "series"
942
+ },
943
+ allPluginParams: {
944
+ ...i,
945
+ Lines: {},
946
+ Dots: {
947
+ radius: 3,
948
+ fillColorType: "series",
949
+ onlyShowHighlighted: !1
950
+ },
951
+ GroupAxis: {},
952
+ ValueAxis: {},
953
+ GroupAux: {},
954
+ GridLegend: {
955
+ position: "bottom",
956
+ justify: "center",
957
+ padding: 14,
958
+ listRectHeight: 2
959
+ }
493
960
  }
494
- }, S_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
495
- __proto__: null,
496
- PP_BARS_ROUND: w,
497
- PP_BARS_THIN: q,
498
- PP_DOTS_ONLY_SHOW_HIGHLIGHTED: J,
499
- PP_DOTS_SOLID: Q,
500
- PP_GRID_LEGEND_BOTTOM: t_,
501
- PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST: __,
502
- PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST: I_,
503
- PP_GROUP_AXIS_LOOSE_TICKS: i_,
504
- PP_GROUP_AXIS_ROTATE_LABEL: T_,
505
- PP_GROUP_AXIS_TENSE_TICKS: P_,
506
- PP_LINES_CURVE: a_,
507
- PP_LINE_AREAS_CURVE: e_
508
- }, Symbol.toStringTag, { value: "Module" })), r_ = {
509
- id: "DF_MULTI_GRID_DIVERGING",
510
- chartType: "multiGrid",
511
- description: "分向Gird",
512
- data: {
961
+ }, C = {
962
+ name: "PRESET_MULTI_GRID_DIVERGING",
963
+ description: "雙向折線圖",
964
+ chartParams: {
965
+ padding: {
966
+ top: 60,
967
+ right: 60,
968
+ bottom: 160,
969
+ left: 60
970
+ }
971
+ },
972
+ dataFormatter: {
513
973
  gridList: [
514
974
  // 第一個grid
515
975
  {
@@ -538,31 +998,280 @@ const R = {
538
998
  },
539
999
  separateGrid: !0
540
1000
  // 將兩個grid拆分
1001
+ },
1002
+ allPluginParams: {
1003
+ ...i,
1004
+ MultiGroupAxis: {
1005
+ tickPadding: 60,
1006
+ // 加長間距
1007
+ gridIndexes: [0]
1008
+ // 只顯示一個
1009
+ },
1010
+ MultiValueAxis: {
1011
+ gridIndexes: [0, 1]
1012
+ },
1013
+ MultiValueStackAxis: {
1014
+ gridIndexes: [0, 1]
1015
+ },
1016
+ MultiBars: {
1017
+ gridIndexes: [0, 1]
1018
+ },
1019
+ MultiBarStack: {
1020
+ gridIndexes: [0, 1]
1021
+ },
1022
+ MultiBarsTriangle: {
1023
+ gridIndexes: [0, 1]
1024
+ },
1025
+ MultiLines: {
1026
+ gridIndexes: [0, 1]
1027
+ },
1028
+ MultiLineAreas: {
1029
+ gridIndexes: [0, 1]
1030
+ },
1031
+ MultiDots: {
1032
+ gridIndexes: [0, 1]
1033
+ },
1034
+ MultiGridLegend: {
1035
+ position: "bottom",
1036
+ justify: "center",
1037
+ padding: 14
1038
+ }
541
1039
  }
542
- }, L_ = {
543
- id: "DF_MULTI_GRID_SEPARATE_GRID",
544
- chartType: "multiGrid",
545
- description: "分開顯示Gird",
546
- data: {
547
- // gridList: [
548
- // {
549
- // // slotIndex: 0
550
- // },
551
- // {
552
- // slotIndex: 1
553
- // }
554
- // ],
1040
+ }, F = {
1041
+ name: "PRESET_MULTI_GRID_2_GRID_SLOT",
1042
+ description: "2組Grid圖表",
1043
+ chartParams: {
1044
+ padding: {
1045
+ top: 60,
1046
+ right: 60,
1047
+ bottom: 160,
1048
+ left: 60
1049
+ }
1050
+ },
1051
+ dataFormatter: {
555
1052
  separateGrid: !0
556
- // container: {
557
- // rowAmount: 1,
558
- // columnAmount: 2,
559
- // }
1053
+ },
1054
+ allPluginParams: {
1055
+ ...i,
1056
+ MultiGroupAxis: {
1057
+ tickTextRotate: -30,
1058
+ gridIndexes: [0, 1]
1059
+ },
1060
+ MultiValueAxis: {
1061
+ gridIndexes: [0, 1]
1062
+ },
1063
+ MultiValueStackAxis: {
1064
+ gridIndexes: [0, 1]
1065
+ },
1066
+ MultiBars: {
1067
+ gridIndexes: [0, 1]
1068
+ },
1069
+ MultiBarStack: {
1070
+ gridIndexes: [0, 1]
1071
+ },
1072
+ MultiBarsTriangle: {
1073
+ gridIndexes: [0, 1]
1074
+ },
1075
+ MultiLines: {
1076
+ gridIndexes: [0, 1]
1077
+ },
1078
+ MultiLineAreas: {
1079
+ gridIndexes: [0, 1]
1080
+ },
1081
+ MultiDots: {
1082
+ gridIndexes: [0, 1]
1083
+ },
1084
+ MultiGridLegend: {
1085
+ position: "bottom",
1086
+ justify: "center",
1087
+ padding: 14
1088
+ }
1089
+ }
1090
+ }, v = {
1091
+ name: "PRESET_MULTI_GRID_3_GRID_SLOT",
1092
+ description: "3組Grid圖表",
1093
+ chartParams: {
1094
+ padding: {
1095
+ top: 60,
1096
+ right: 60,
1097
+ bottom: 160,
1098
+ left: 60
1099
+ }
1100
+ },
1101
+ dataFormatter: {
1102
+ separateGrid: !0
1103
+ },
1104
+ allPluginParams: {
1105
+ ...i,
1106
+ MultiGroupAxis: {
1107
+ tickTextRotate: -30,
1108
+ gridIndexes: [0, 1, 2]
1109
+ },
1110
+ MultiValueAxis: {
1111
+ gridIndexes: [0, 1, 2]
1112
+ },
1113
+ MultiValueStackAxis: {
1114
+ gridIndexes: [0, 1, 2]
1115
+ },
1116
+ MultiBars: {
1117
+ gridIndexes: [0, 1, 2]
1118
+ },
1119
+ MultiBarStack: {
1120
+ gridIndexes: [0, 1, 2]
1121
+ },
1122
+ MultiBarsTriangle: {
1123
+ gridIndexes: [0, 1, 2]
1124
+ },
1125
+ MultiLines: {
1126
+ gridIndexes: [0, 1, 2]
1127
+ },
1128
+ MultiLineAreas: {
1129
+ gridIndexes: [0, 1, 2]
1130
+ },
1131
+ MultiDots: {
1132
+ gridIndexes: [0, 1, 2]
1133
+ },
1134
+ MultiGridLegend: {
1135
+ position: "bottom",
1136
+ justify: "center",
1137
+ padding: 14
1138
+ }
1139
+ }
1140
+ }, W = {
1141
+ name: "PRESET_MULTI_GRID_4_GRID_SLOT",
1142
+ description: "4組Grid圖表",
1143
+ chartParams: {
1144
+ padding: {
1145
+ top: 60,
1146
+ right: 60,
1147
+ bottom: 160,
1148
+ left: 60
1149
+ }
1150
+ },
1151
+ dataFormatter: {
1152
+ separateGrid: !0
1153
+ },
1154
+ allPluginParams: {
1155
+ ...i,
1156
+ MultiGroupAxis: {
1157
+ tickTextRotate: -30,
1158
+ gridIndexes: [0, 1, 2, 3]
1159
+ },
1160
+ MultiValueAxis: {
1161
+ gridIndexes: [0, 1, 2, 3]
1162
+ },
1163
+ MultiValueStackAxis: {
1164
+ gridIndexes: [0, 1, 2, 3]
1165
+ },
1166
+ MultiBars: {
1167
+ gridIndexes: [0, 1, 2, 3]
1168
+ },
1169
+ MultiBarStack: {
1170
+ gridIndexes: [0, 1, 2, 3]
1171
+ },
1172
+ MultiBarsTriangle: {
1173
+ gridIndexes: [0, 1, 2, 3]
1174
+ },
1175
+ MultiLines: {
1176
+ gridIndexes: [0, 1, 2, 3]
1177
+ },
1178
+ MultiLineAreas: {
1179
+ gridIndexes: [0, 1, 2, 3]
1180
+ },
1181
+ MultiDots: {
1182
+ gridIndexes: [0, 1, 2, 3]
1183
+ },
1184
+ MultiGridLegend: {
1185
+ position: "bottom",
1186
+ justify: "center",
1187
+ padding: 14
1188
+ }
1189
+ }
1190
+ }, X = {
1191
+ name: "PRESET_MULTI_GRID_BASIC",
1192
+ description: "基本MultiGrid參數",
1193
+ chartParams: {
1194
+ padding: {
1195
+ top: 60,
1196
+ right: 60,
1197
+ bottom: 120,
1198
+ left: 60
1199
+ },
1200
+ highlightTarget: "series"
1201
+ },
1202
+ allPluginParams: {
1203
+ ...s,
1204
+ ...i,
1205
+ MultiGridLegend: {
1206
+ position: "bottom",
1207
+ justify: "center",
1208
+ padding: 14,
1209
+ gridList: [
1210
+ {},
1211
+ {
1212
+ listRectHeight: 2
1213
+ }
1214
+ ]
1215
+ }
1216
+ }
1217
+ }, Z = {
1218
+ name: "PRESET_MULTI_GRID_ROUND_STYLE",
1219
+ description: "MultiGrid圓弧風格",
1220
+ chartParams: {
1221
+ padding: {
1222
+ top: 60,
1223
+ right: 60,
1224
+ bottom: 120,
1225
+ left: 60
1226
+ },
1227
+ highlightTarget: "series"
1228
+ },
1229
+ allPluginParams: {
1230
+ ...i,
1231
+ MultiBars: {
1232
+ barWidth: 0,
1233
+ barPadding: 1,
1234
+ barGroupPadding: 10,
1235
+ barRadius: !0
1236
+ },
1237
+ MultiBarStack: {},
1238
+ MultiDots: {},
1239
+ MultiGridLegend: {
1240
+ position: "bottom",
1241
+ justify: "center",
1242
+ padding: 14,
1243
+ gridList: [
1244
+ {
1245
+ listRectRadius: 7
1246
+ },
1247
+ {
1248
+ listRectHeight: 2
1249
+ }
1250
+ ]
1251
+ },
1252
+ MultiGroupAxis: {},
1253
+ MultiLineAreas: {},
1254
+ MultiLines: {
1255
+ lineCurve: "curveMonotoneX",
1256
+ lineWidth: 3
1257
+ },
1258
+ MultiValueAxis: {},
1259
+ MultiValueStackAxis: {},
1260
+ OverlappingValueAxes: {},
1261
+ OverlappingValueStackAxes: {}
560
1262
  }
561
- }, E_ = {
562
- id: "DF_MULTI_LINE_AREAS_SEPARATE_GRID",
563
- chartType: "multiGrid",
564
- description: "MultiLineAreas 分開顯示Gird",
565
- data: {
1263
+ }, Y = {
1264
+ name: "PRESET_MULTI_LINE_AREAS_2_GRID_SLOT",
1265
+ description: "2組區域圖表",
1266
+ chartParams: {
1267
+ padding: {
1268
+ top: 60,
1269
+ right: 60,
1270
+ bottom: 160,
1271
+ left: 60
1272
+ }
1273
+ },
1274
+ dataFormatter: {
566
1275
  gridList: [
567
1276
  {
568
1277
  // slotIndex: 0
@@ -582,693 +1291,498 @@ const R = {
582
1291
  // rowAmount: 1,
583
1292
  // columnAmount: 2,
584
1293
  // }
1294
+ },
1295
+ allPluginParams: {
1296
+ ...i,
1297
+ MultiGroupAxis: {
1298
+ tickTextRotate: -30,
1299
+ gridIndexes: [0, 1]
1300
+ },
1301
+ MultiValueAxis: {
1302
+ gridIndexes: [0, 1]
1303
+ },
1304
+ MultiValueStackAxis: {
1305
+ gridIndexes: [0, 1]
1306
+ },
1307
+ MultiBars: {
1308
+ gridIndexes: [0, 1]
1309
+ },
1310
+ MultiBarStack: {
1311
+ gridIndexes: [0, 1]
1312
+ },
1313
+ MultiBarsTriangle: {
1314
+ gridIndexes: [0, 1]
1315
+ },
1316
+ MultiLines: {
1317
+ gridIndexes: [0, 1]
1318
+ },
1319
+ MultiLineAreas: {
1320
+ gridIndexes: [0, 1]
1321
+ },
1322
+ MultiDots: {
1323
+ gridIndexes: [0, 1]
1324
+ },
1325
+ MultiGridLegend: {
1326
+ position: "bottom",
1327
+ justify: "center",
1328
+ padding: 14,
1329
+ gridList: [
1330
+ {
1331
+ listRectHeight: 2
1332
+ },
1333
+ {
1334
+ listRectHeight: 2
1335
+ },
1336
+ {
1337
+ listRectHeight: 2
1338
+ },
1339
+ {
1340
+ listRectHeight: 2
1341
+ }
1342
+ ]
1343
+ }
585
1344
  }
586
- }, d_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
587
- __proto__: null,
588
- DF_MULTI_GRID_DIVERGING: r_,
589
- DF_MULTI_GRID_SEPARATE_GRID: L_,
590
- DF_MULTI_LINE_AREAS_SEPARATE_GRID: E_
591
- }, Symbol.toStringTag, { value: "Module" })), s_ = {
592
- id: "PP_MULTI_BARS_2_GRID_SLOT",
593
- chartType: "multiGrid",
594
- pluginName: "MultiBars",
595
- description: "2組群組長條圖",
596
- data: {
597
- gridIndexes: [0, 1]
598
- }
599
- }, R_ = {
600
- id: "PP_MULTI_BARS_3_GRID_SLOT",
601
- chartType: "multiGrid",
602
- pluginName: "MultiBars",
603
- description: "3組群組長條圖",
604
- data: {
605
- gridIndexes: [0, 1, 2]
606
- }
607
- }, D_ = {
608
- id: "PP_MULTI_BARS_4_GRID_SLOT",
609
- chartType: "multiGrid",
610
- pluginName: "MultiBars",
611
- description: "4組群組長條圖",
612
- data: {
613
- gridIndexes: [0, 1, 2, 3]
614
- }
615
- }, G_ = {
616
- id: "PP_MULTI_BARS_ROUND",
617
- chartType: "multiGrid",
618
- pluginName: "MultiBars",
619
- description: "圓角長條圖",
620
- data: {
621
- barWidth: 0,
622
- barPadding: 1,
623
- barGroupPadding: 10,
624
- barRadius: !0
625
- }
626
- }, O_ = {
627
- id: "PP_MULTI_BAR_STACK_2_GRID_SLOT",
628
- chartType: "multiGrid",
629
- pluginName: "MultiBarStack",
630
- description: "2組堆疊長條圖",
631
- data: {
632
- gridIndexes: [0, 1]
633
- }
634
- }, n_ = {
635
- id: "PP_MULTI_BAR_STACK_3_GRID_SLOT",
636
- chartType: "multiGrid",
637
- pluginName: "MultiBarStack",
638
- description: "3組堆疊長條圖",
639
- data: {
640
- gridIndexes: [0, 1, 2]
641
- }
642
- }, A_ = {
643
- id: "PP_MULTI_BAR_STACK_4_GRID_SLOT",
644
- chartType: "multiGrid",
645
- pluginName: "MultiBarStack",
646
- description: "4組堆疊長條圖",
647
- data: {
648
- gridIndexes: [0, 1, 2, 3]
649
- }
650
- }, o_ = {
651
- id: "PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT",
652
- chartType: "multiGrid",
653
- pluginName: "MultiBarsTriangle",
654
- description: "2組群組三角長條圖",
655
- data: {
656
- gridIndexes: [0, 1]
657
- }
658
- }, c_ = {
659
- id: "PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT",
660
- chartType: "multiGrid",
661
- pluginName: "MultiBarsTriangle",
662
- description: "3組群組三角長條圖",
663
- data: {
664
- gridIndexes: [0, 1, 2]
665
- }
666
- }, l_ = {
667
- id: "PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT",
668
- chartType: "multiGrid",
669
- pluginName: "MultiBarsTriangle",
670
- description: "4組群組三角長條圖",
671
- data: {
672
- gridIndexes: [0, 1, 2, 3]
673
- }
674
- }, N_ = {
675
- id: "PP_MULTI_DOTS_2_GRID_SLOT",
676
- chartType: "multiGrid",
677
- pluginName: "MultiDots",
678
- description: "2組圓點",
679
- data: {
680
- gridIndexes: [0, 1]
681
- }
682
- }, M_ = {
683
- id: "PP_MULTI_DOTS_3_GRID_SLOT",
684
- chartType: "multiGrid",
685
- pluginName: "MultiDots",
686
- description: "3組圓點",
687
- data: {
688
- gridIndexes: [0, 1, 2]
689
- }
690
- }, p_ = {
691
- id: "PP_MULTI_DOTS_4_GRID_SLOT",
692
- chartType: "multiGrid",
693
- pluginName: "MultiDots",
694
- description: "4組圓點",
695
- data: {
696
- gridIndexes: [0, 1, 2, 3]
697
- }
698
- }, U_ = {
699
- id: "PP_MULTI_LINES_2_GRID_SLOT",
700
- chartType: "multiGrid",
701
- pluginName: "MultiLines",
702
- description: "2組折線圖",
703
- data: {
704
- gridIndexes: [0, 1]
705
- }
706
- }, u_ = {
707
- id: "PP_MULTI_LINES_3_GRID_SLOT",
708
- chartType: "multiGrid",
709
- pluginName: "MultiLines",
710
- description: "3組折線圖",
711
- data: {
712
- gridIndexes: [0, 1, 2]
713
- }
714
- }, g_ = {
715
- id: "PP_MULTI_LINES_4_GRID_SLOT",
716
- chartType: "multiGrid",
717
- pluginName: "MultiLines",
718
- description: "4組折線圖",
719
- data: {
720
- gridIndexes: [0, 1, 2, 3]
721
- }
722
- }, m_ = {
723
- id: "PP_MULTI_LINES_CURVE",
724
- chartType: "multiGrid",
725
- pluginName: "MultiLines",
726
- description: "圓弧折線圖",
727
- data: {
728
- lineCurve: "curveMonotoneX",
729
- lineWidth: 3
730
- }
731
- }, B_ = {
732
- id: "PP_MULTI_LINE_AREAS_2_GRID_SLOT",
733
- chartType: "multiGrid",
734
- pluginName: "MultiLineAreas",
735
- description: "2組折線圖",
736
- data: {
737
- gridIndexes: [0, 1]
738
- }
739
- }, H_ = {
740
- id: "PP_MULTI_LINE_AREAS_3_GRID_SLOT",
741
- chartType: "multiGrid",
742
- pluginName: "MultiLineAreas",
743
- description: "3組折線圖",
744
- data: {
745
- gridIndexes: [0, 1, 2]
746
- }
747
- }, h_ = {
748
- id: "PP_MULTI_LINE_AREAS_4_GRID_SLOT",
749
- chartType: "multiGrid",
750
- pluginName: "MultiLineAreas",
751
- description: "4組折線圖",
752
- data: {
753
- gridIndexes: [0, 1, 2, 3]
754
- }
755
- }, C_ = {
756
- id: "PP_MULTI_LINE_AREAS_CURVE",
757
- chartType: "multiGrid",
758
- pluginName: "MultiLineAreas",
759
- description: "圓弧折線圖",
760
- data: {
761
- lineCurve: "curveMonotoneX"
762
- }
763
- }, F_ = {
764
- id: "PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST",
765
- chartType: "multiGrid",
766
- pluginName: "MultiGridLegend",
767
- description: "底部圖例線條列點",
768
- data: {
769
- position: "bottom",
770
- justify: "center",
771
- padding: 14,
1345
+ }, w = {
1346
+ name: "PRESET_MULTI_LINE_AREAS_3_GRID_SLOT",
1347
+ description: "3組區域圖表",
1348
+ chartParams: {
1349
+ padding: {
1350
+ top: 60,
1351
+ right: 60,
1352
+ bottom: 160,
1353
+ left: 60
1354
+ }
1355
+ },
1356
+ dataFormatter: {
772
1357
  gridList: [
773
1358
  {
774
- listRectHeight: 2
775
- },
776
- {
777
- listRectHeight: 2
1359
+ // slotIndex: 0
1360
+ groupAxis: {
1361
+ scalePadding: 0
1362
+ }
778
1363
  },
779
1364
  {
780
- listRectHeight: 2
1365
+ // slotIndex: 1,
1366
+ groupAxis: {
1367
+ scalePadding: 0
1368
+ }
781
1369
  },
782
1370
  {
783
- listRectHeight: 2
1371
+ // slotIndex: 2,
1372
+ groupAxis: {
1373
+ scalePadding: 0
1374
+ }
784
1375
  }
785
- ]
1376
+ ],
1377
+ separateGrid: !0
1378
+ // container: {
1379
+ // rowAmount: 1,
1380
+ // columnAmount: 3,
1381
+ // }
1382
+ },
1383
+ allPluginParams: {
1384
+ ...i,
1385
+ MultiGroupAxis: {
1386
+ tickTextRotate: -30,
1387
+ gridIndexes: [0, 1, 2]
1388
+ },
1389
+ MultiValueAxis: {
1390
+ gridIndexes: [0, 1, 2]
1391
+ },
1392
+ MultiValueStackAxis: {
1393
+ gridIndexes: [0, 1, 2]
1394
+ },
1395
+ MultiBars: {
1396
+ gridIndexes: [0, 1, 2]
1397
+ },
1398
+ MultiBarStack: {
1399
+ gridIndexes: [0, 1, 2]
1400
+ },
1401
+ MultiBarsTriangle: {
1402
+ gridIndexes: [0, 1, 2]
1403
+ },
1404
+ MultiLines: {
1405
+ gridIndexes: [0, 1, 2]
1406
+ },
1407
+ MultiLineAreas: {
1408
+ gridIndexes: [0, 1, 2]
1409
+ },
1410
+ MultiDots: {
1411
+ gridIndexes: [0, 1, 2]
1412
+ },
1413
+ MultiGridLegend: {
1414
+ position: "bottom",
1415
+ justify: "center",
1416
+ padding: 14,
1417
+ gridList: [
1418
+ {
1419
+ listRectHeight: 2
1420
+ },
1421
+ {
1422
+ listRectHeight: 2
1423
+ },
1424
+ {
1425
+ listRectHeight: 2
1426
+ },
1427
+ {
1428
+ listRectHeight: 2
1429
+ }
1430
+ ]
1431
+ }
786
1432
  }
787
- }, y_ = {
788
- id: "PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST",
789
- chartType: "multiGrid",
790
- pluginName: "MultiGridLegend",
791
- description: "底部圖例矩型及線條列點",
792
- data: {
793
- position: "bottom",
794
- justify: "center",
795
- padding: 14,
1433
+ }, K = {
1434
+ name: "PRESET_MULTI_LINE_AREAS_4_GRID_SLOT",
1435
+ description: "4組區域圖表",
1436
+ chartParams: {
1437
+ padding: {
1438
+ top: 60,
1439
+ right: 60,
1440
+ bottom: 160,
1441
+ left: 60
1442
+ }
1443
+ },
1444
+ dataFormatter: {
796
1445
  gridList: [
797
- {},
798
1446
  {
799
- listRectHeight: 2
800
- }
801
- ]
802
- }
803
- }, b_ = {
804
- id: "PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST",
805
- chartType: "multiGrid",
806
- pluginName: "MultiGridLegend",
807
- description: "底部圖例圓型及線條列點",
808
- data: {
809
- position: "bottom",
810
- justify: "center",
811
- padding: 14,
812
- gridList: [
1447
+ // slotIndex: 0
1448
+ groupAxis: {
1449
+ scalePadding: 0
1450
+ }
1451
+ },
813
1452
  {
814
- listRectRadius: 7
1453
+ // slotIndex: 1,
1454
+ groupAxis: {
1455
+ scalePadding: 0
1456
+ }
815
1457
  },
816
1458
  {
817
- listRectHeight: 2
1459
+ // slotIndex: 2,
1460
+ groupAxis: {
1461
+ scalePadding: 0
1462
+ }
1463
+ },
1464
+ {
1465
+ // slotIndex: 2,
1466
+ groupAxis: {
1467
+ scalePadding: 0
1468
+ }
818
1469
  }
819
- ]
820
- }
821
- }, X_ = {
822
- id: "PP_MULTI_GRID_LEGEND_BOTTOM",
823
- chartType: "multiGrid",
824
- pluginName: "MultiGridLegend",
825
- description: "底部圖例",
826
- data: {
827
- position: "bottom",
828
- justify: "center",
829
- padding: 14
830
- }
831
- }, W_ = {
832
- id: "PP_MULTI_GROUP_AXIS_2_GRID_SLOT",
833
- chartType: "multiGrid",
834
- pluginName: "MultiGroupAxis",
835
- description: "2個群組圖軸",
836
- data: {
837
- tickTextRotate: -30,
838
- gridIndexes: [0, 1]
839
- }
840
- }, V_ = {
841
- id: "PP_MULTI_GROUP_AXIS_3_GRID_SLOT",
842
- chartType: "multiGrid",
843
- pluginName: "MultiGroupAxis",
844
- description: "3個群組圖軸",
845
- data: {
846
- tickTextRotate: -30,
847
- gridIndexes: [0, 1, 2]
848
- }
849
- }, x_ = {
850
- id: "PP_MULTI_GROUP_AXIS_4_GRID_SLOT",
851
- chartType: "multiGrid",
852
- pluginName: "MultiGroupAxis",
853
- description: "4個群組圖軸",
854
- data: {
855
- tickTextRotate: -30,
856
- gridIndexes: [0, 1, 2, 3]
857
- }
858
- }, f_ = {
859
- id: "PP_MULTI_GROUP_AXIS_DIVERGING",
860
- chartType: "multiGrid",
861
- pluginName: "MultiGroupAxis",
862
- description: "分向Gird群組圖軸",
863
- data: {
864
- tickPadding: 60,
865
- // 加長間距
866
- gridIndexes: [0]
867
- // 只顯示一個
868
- }
869
- }, j_ = {
870
- id: "PP_MULTI_VALUE_AXIS_2_GRID_SLOT",
871
- chartType: "multiGrid",
872
- pluginName: "MultiValueAxis",
873
- description: "2個資料圖軸",
874
- data: {
875
- gridIndexes: [0, 1]
876
- }
877
- }, v_ = {
878
- id: "PP_MULTI_VALUE_AXIS_3_GRID_SLOT",
879
- chartType: "multiGrid",
880
- pluginName: "MultiValueAxis",
881
- description: "3個資料圖軸",
882
- data: {
883
- gridIndexes: [0, 1, 2]
884
- }
885
- }, K_ = {
886
- id: "PP_MULTI_VALUE_AXIS_4_GRID_SLOT",
887
- chartType: "multiGrid",
888
- pluginName: "MultiValueAxis",
889
- description: "4個資料圖軸",
890
- data: {
891
- gridIndexes: [0, 1, 2, 3]
1470
+ ],
1471
+ separateGrid: !0
1472
+ // container: {
1473
+ // rowAmount: 2,
1474
+ // columnAmount: 2,
1475
+ // }
1476
+ },
1477
+ allPluginParams: {
1478
+ ...i,
1479
+ MultiGroupAxis: {
1480
+ tickTextRotate: -30,
1481
+ gridIndexes: [0, 1, 2, 3]
1482
+ },
1483
+ MultiValueAxis: {
1484
+ gridIndexes: [0, 1, 2, 3]
1485
+ },
1486
+ MultiValueStackAxis: {
1487
+ gridIndexes: [0, 1, 2, 3]
1488
+ },
1489
+ MultiBars: {
1490
+ gridIndexes: [0, 1, 2, 3]
1491
+ },
1492
+ MultiBarStack: {
1493
+ gridIndexes: [0, 1, 2, 3]
1494
+ },
1495
+ MultiBarsTriangle: {
1496
+ gridIndexes: [0, 1, 2, 3]
1497
+ },
1498
+ MultiLines: {
1499
+ gridIndexes: [0, 1, 2, 3]
1500
+ },
1501
+ MultiLineAreas: {
1502
+ gridIndexes: [0, 1, 2, 3]
1503
+ },
1504
+ MultiDots: {
1505
+ gridIndexes: [0, 1, 2, 3]
1506
+ },
1507
+ MultiGridLegend: {
1508
+ position: "bottom",
1509
+ justify: "center",
1510
+ padding: 14,
1511
+ gridList: [
1512
+ {
1513
+ listRectHeight: 2
1514
+ },
1515
+ {
1516
+ listRectHeight: 2
1517
+ },
1518
+ {
1519
+ listRectHeight: 2
1520
+ },
1521
+ {
1522
+ listRectHeight: 2
1523
+ }
1524
+ ]
1525
+ }
892
1526
  }
893
- }, k_ = {
894
- id: "PP_MULTI_VALUE_STACK_AXIS_2_GRID_SLOT",
895
- chartType: "multiGrid",
896
- pluginName: "MultiValueStackAxis",
897
- description: "2個資料堆疊圖軸",
898
- data: {
899
- gridIndexes: [0, 1]
1527
+ }, q = {
1528
+ name: "PRESET_MULTI_LINES_2_GRID_SLOT",
1529
+ description: "2組折線圖表",
1530
+ chartParams: {
1531
+ padding: {
1532
+ top: 60,
1533
+ right: 60,
1534
+ bottom: 160,
1535
+ left: 60
1536
+ }
1537
+ },
1538
+ dataFormatter: {
1539
+ separateGrid: !0
1540
+ },
1541
+ allPluginParams: {
1542
+ ...i,
1543
+ MultiGroupAxis: {
1544
+ tickTextRotate: -30,
1545
+ gridIndexes: [0, 1]
1546
+ },
1547
+ MultiValueAxis: {
1548
+ gridIndexes: [0, 1]
1549
+ },
1550
+ MultiValueStackAxis: {
1551
+ gridIndexes: [0, 1]
1552
+ },
1553
+ MultiBars: {
1554
+ gridIndexes: [0, 1]
1555
+ },
1556
+ MultiBarStack: {
1557
+ gridIndexes: [0, 1]
1558
+ },
1559
+ MultiBarsTriangle: {
1560
+ gridIndexes: [0, 1]
1561
+ },
1562
+ MultiLines: {
1563
+ gridIndexes: [0, 1]
1564
+ },
1565
+ MultiLineAreas: {
1566
+ gridIndexes: [0, 1]
1567
+ },
1568
+ MultiDots: {
1569
+ gridIndexes: [0, 1]
1570
+ },
1571
+ MultiGridLegend: {
1572
+ position: "bottom",
1573
+ justify: "center",
1574
+ padding: 14,
1575
+ gridList: [
1576
+ {
1577
+ listRectHeight: 2
1578
+ },
1579
+ {
1580
+ listRectHeight: 2
1581
+ },
1582
+ {
1583
+ listRectHeight: 2
1584
+ },
1585
+ {
1586
+ listRectHeight: 2
1587
+ }
1588
+ ]
1589
+ }
900
1590
  }
901
- }, Y_ = {
902
- id: "PP_MULTI_VALUE_STACK_AXIS_3_GRID_SLOT",
903
- chartType: "multiGrid",
904
- pluginName: "MultiValueStackAxis",
905
- description: "3個資料堆疊圖軸",
906
- data: {
907
- gridIndexes: [0, 1, 2]
1591
+ }, z = {
1592
+ name: "PRESET_MULTI_LINES_3_GRID_SLOT",
1593
+ description: "3組折線圖表",
1594
+ chartParams: {
1595
+ padding: {
1596
+ top: 60,
1597
+ right: 60,
1598
+ bottom: 160,
1599
+ left: 60
1600
+ }
1601
+ },
1602
+ dataFormatter: {
1603
+ separateGrid: !0
1604
+ },
1605
+ allPluginParams: {
1606
+ ...i,
1607
+ MultiGroupAxis: {
1608
+ tickTextRotate: -30,
1609
+ gridIndexes: [0, 1, 2]
1610
+ },
1611
+ MultiValueAxis: {
1612
+ gridIndexes: [0, 1, 2]
1613
+ },
1614
+ MultiValueStackAxis: {
1615
+ gridIndexes: [0, 1, 2]
1616
+ },
1617
+ MultiBars: {
1618
+ gridIndexes: [0, 1, 2]
1619
+ },
1620
+ MultiBarStack: {
1621
+ gridIndexes: [0, 1, 2]
1622
+ },
1623
+ MultiBarsTriangle: {
1624
+ gridIndexes: [0, 1, 2]
1625
+ },
1626
+ MultiLines: {
1627
+ gridIndexes: [0, 1, 2]
1628
+ },
1629
+ MultiLineAreas: {
1630
+ gridIndexes: [0, 1, 2]
1631
+ },
1632
+ MultiDots: {
1633
+ gridIndexes: [0, 1, 2]
1634
+ },
1635
+ MultiGridLegend: {
1636
+ position: "bottom",
1637
+ justify: "center",
1638
+ padding: 14,
1639
+ gridList: [
1640
+ {
1641
+ listRectHeight: 2
1642
+ },
1643
+ {
1644
+ listRectHeight: 2
1645
+ },
1646
+ {
1647
+ listRectHeight: 2
1648
+ },
1649
+ {
1650
+ listRectHeight: 2
1651
+ }
1652
+ ]
1653
+ }
908
1654
  }
909
- }, z_ = {
910
- id: "PP_MULTI_VALUE_STACK_AXIS_4_GRID_SLOT",
911
- chartType: "multiGrid",
912
- pluginName: "MultiValueStackAxis",
913
- description: "4個資料堆疊圖軸",
914
- data: {
915
- gridIndexes: [0, 1, 2, 3]
1655
+ }, J = {
1656
+ name: "PRESET_MULTI_LINES_4_GRID_SLOT",
1657
+ description: "4組折線圖表",
1658
+ chartParams: {
1659
+ padding: {
1660
+ top: 60,
1661
+ right: 60,
1662
+ bottom: 160,
1663
+ left: 60
1664
+ }
1665
+ },
1666
+ dataFormatter: {
1667
+ separateGrid: !0
1668
+ },
1669
+ allPluginParams: {
1670
+ ...i,
1671
+ MultiGroupAxis: {
1672
+ tickTextRotate: -30,
1673
+ gridIndexes: [0, 1, 2, 3]
1674
+ },
1675
+ MultiValueAxis: {
1676
+ gridIndexes: [0, 1, 2, 3]
1677
+ },
1678
+ MultiValueStackAxis: {
1679
+ gridIndexes: [0, 1, 2, 3]
1680
+ },
1681
+ MultiBars: {
1682
+ gridIndexes: [0, 1, 2, 3]
1683
+ },
1684
+ MultiBarStack: {
1685
+ gridIndexes: [0, 1, 2, 3]
1686
+ },
1687
+ MultiBarsTriangle: {
1688
+ gridIndexes: [0, 1, 2, 3]
1689
+ },
1690
+ MultiLines: {
1691
+ gridIndexes: [0, 1, 2, 3]
1692
+ },
1693
+ MultiLineAreas: {
1694
+ gridIndexes: [0, 1, 2, 3]
1695
+ },
1696
+ MultiDots: {
1697
+ gridIndexes: [0, 1, 2, 3]
1698
+ },
1699
+ MultiGridLegend: {
1700
+ position: "bottom",
1701
+ justify: "center",
1702
+ padding: 14,
1703
+ gridList: [
1704
+ {
1705
+ listRectHeight: 2
1706
+ },
1707
+ {
1708
+ listRectHeight: 2
1709
+ },
1710
+ {
1711
+ listRectHeight: 2
1712
+ },
1713
+ {
1714
+ listRectHeight: 2
1715
+ }
1716
+ ]
1717
+ }
916
1718
  }
917
- }, Z_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
918
- __proto__: null,
919
- PP_MULTI_BARS_2_GRID_SLOT: s_,
920
- PP_MULTI_BARS_3_GRID_SLOT: R_,
921
- PP_MULTI_BARS_4_GRID_SLOT: D_,
922
- PP_MULTI_BARS_ROUND: G_,
923
- PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT: o_,
924
- PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT: c_,
925
- PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT: l_,
926
- PP_MULTI_BAR_STACK_2_GRID_SLOT: O_,
927
- PP_MULTI_BAR_STACK_3_GRID_SLOT: n_,
928
- PP_MULTI_BAR_STACK_4_GRID_SLOT: A_,
929
- PP_MULTI_DOTS_2_GRID_SLOT: N_,
930
- PP_MULTI_DOTS_3_GRID_SLOT: M_,
931
- PP_MULTI_DOTS_4_GRID_SLOT: p_,
932
- PP_MULTI_GRID_LEGEND_BOTTOM: X_,
933
- PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST: F_,
934
- PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST: y_,
935
- PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST: b_,
936
- PP_MULTI_GROUP_AXIS_2_GRID_SLOT: W_,
937
- PP_MULTI_GROUP_AXIS_3_GRID_SLOT: V_,
938
- PP_MULTI_GROUP_AXIS_4_GRID_SLOT: x_,
939
- PP_MULTI_GROUP_AXIS_DIVERGING: f_,
940
- PP_MULTI_LINES_2_GRID_SLOT: U_,
941
- PP_MULTI_LINES_3_GRID_SLOT: u_,
942
- PP_MULTI_LINES_4_GRID_SLOT: g_,
943
- PP_MULTI_LINES_CURVE: m_,
944
- PP_MULTI_LINE_AREAS_2_GRID_SLOT: B_,
945
- PP_MULTI_LINE_AREAS_3_GRID_SLOT: H_,
946
- PP_MULTI_LINE_AREAS_4_GRID_SLOT: h_,
947
- PP_MULTI_LINE_AREAS_CURVE: C_,
948
- PP_MULTI_VALUE_AXIS_2_GRID_SLOT: j_,
949
- PP_MULTI_VALUE_AXIS_3_GRID_SLOT: v_,
950
- PP_MULTI_VALUE_AXIS_4_GRID_SLOT: K_,
951
- PP_MULTI_VALUE_STACK_AXIS_2_GRID_SLOT: k_,
952
- PP_MULTI_VALUE_STACK_AXIS_3_GRID_SLOT: Y_,
953
- PP_MULTI_VALUE_STACK_AXIS_4_GRID_SLOT: z_
954
- }, Symbol.toStringTag, { value: "Module" })), $_ = {}, w_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
955
- __proto__: null,
956
- temp: $_
957
- }, Symbol.toStringTag, { value: "Module" })), q_ = {}, J_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
958
- __proto__: null,
959
- temp: q_
960
- }, Symbol.toStringTag, { value: "Module" })), Q_ = {}, _I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
961
- __proto__: null,
962
- temp: Q_
963
- }, Symbol.toStringTag, { value: "Module" })), II = {}, tI = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
964
- __proto__: null,
965
- temp: II
966
- }, Symbol.toStringTag, { value: "Module" })), TI = {}, PI = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
967
- __proto__: null,
968
- temp: TI
969
- }, Symbol.toStringTag, { value: "Module" })), iI = {
970
- id: "PP_TREE_LEGEND_BOTTOM",
971
- chartType: "tree",
972
- pluginName: "TreeLegend",
973
- description: "底部圖例",
974
- data: {
975
- position: "bottom",
976
- justify: "center",
977
- padding: 14
1719
+ }, Q = {
1720
+ name: "PRESET_TREE_BASIC",
1721
+ description: "基本Tree參數",
1722
+ chartParams: {
1723
+ padding: {
1724
+ top: 40,
1725
+ right: 40,
1726
+ bottom: 60,
1727
+ left: 40
1728
+ }
1729
+ },
1730
+ allPluginParams: {
1731
+ ...i,
1732
+ TreeMap: {},
1733
+ TreeLegend: {
1734
+ position: "bottom",
1735
+ justify: "center",
1736
+ padding: 14
1737
+ }
978
1738
  }
979
- }, aI = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
980
- __proto__: null,
981
- PP_TREE_LEGEND_BOTTOM: iI
982
- }, Symbol.toStringTag, { value: "Module" })), r = {
983
- series: C,
984
- grid: $,
985
- multiGrid: d_,
986
- multiValue: w_,
987
- relationship: _I,
988
- tree: PI
989
- }, e = {
990
- series: j,
991
- grid: S_,
992
- multiGrid: Z_,
993
- multiValue: J_,
994
- relationship: tI,
995
- tree: aI
996
- }, i = (I, t) => {
997
- const L = t.chartParamsId ? U[t.chartParamsId].data : void 0, E = r[I][t.dataFormatterId] ? r[I][t.dataFormatterId].data : void 0, d = t.allPluginParamsIds ? t.allPluginParamsIds.reduce((S, a) => {
998
- if (e[I][a]) {
999
- const s = e[I][a].pluginName;
1000
- S[s] = e[I][a].data;
1001
- }
1002
- return S;
1003
- }, {}) : void 0;
1004
- return {
1005
- chartParams: L,
1006
- dataFormatter: E,
1007
- allPluginParams: d
1008
- };
1009
- }, P = (I) => i("series", I), _ = (I) => i("grid", I), T = (I) => i("multiGrid", I), eI = (I) => i("tree", I), SI = P({
1010
- // chartParamsId: 'CP_RIGHT_PADDING',
1011
- allPluginParamsIds: ["PP_SERIES_LEGEND_ROUND"],
1012
- description: "基本Series參數"
1013
- }), rI = P({
1014
- // chartParamsId: 'CP_RIGHT_PADDING',
1015
- dataFormatterId: "DF_SERIES_DESC",
1016
- allPluginParamsIds: [],
1017
- description: "資料由大到小排序"
1018
- }), LI = P({
1019
- // chartParamsId: 'CP_RIGHT_PADDING',
1020
- dataFormatterId: "DF_SERIES_SEPARATE_SERIES",
1021
- allPluginParamsIds: [],
1022
- description: "分開顯示Series"
1023
- }), EI = P({
1024
- // chartParamsId: 'CP_RIGHT_PADDING',
1025
- dataFormatterId: "DF_SERIES_SUM_SERIES",
1026
- allPluginParamsIds: [],
1027
- description: "合併Series資料"
1028
- }), dI = P({
1029
- // chartParamsId: 'CP_RIGHT_PADDING',
1030
- dataFormatterId: "DF_SERIES_SEPARATE_SERIES_AND_SUM_SERIES",
1031
- allPluginParamsIds: [],
1032
- description: "分開顯示Series並合併Series資料"
1033
- }), sI = P({
1034
- // chartParamsId: 'CP_RIGHT_PADDING',
1035
- allPluginParamsIds: ["PP_BUBBLES_SCALING_BY_RADIUS", "PP_SERIES_LEGEND_ROUND"],
1036
- description: "以半徑尺寸為比例的泡泡圖"
1037
- }), RI = P({
1038
- chartParamsId: "CP_LONG_PADDING",
1039
- dataFormatterId: "DF_SERIES_SEPARATE_SERIES",
1040
- allPluginParamsIds: [],
1041
- description: "分開顯示Series泡泡"
1042
- }), DI = P({
1043
- // chartParamsId: 'CP_RIGHT_PADDING',
1044
- allPluginParamsIds: ["PP_PIE_LABELS_INNER", "PP_SERIES_LEGEND_ROUND"],
1045
- description: "圓餅圖及內部資料標籤"
1046
- }), GI = P({
1047
- // chartParamsId: 'CP_RIGHT_PADDING',
1048
- allPluginParamsIds: ["PP_PIE_DONUT", "PP_SERIES_LEGEND_ROUND"],
1049
- description: "甜甜圈圖"
1050
- }), OI = P({
1051
- chartParamsId: "CP_TOP_AND_NO_BOTTOM_PADDING",
1052
- allPluginParamsIds: ["PP_PIE_HALF_DONUT", "PP_PIE_LABELS_HALF_ANGLE", "PP_SERIES_LEGEND_ROUND"],
1053
- description: "半圓甜甜圈圖"
1054
- }), nI = P({
1055
- chartParamsId: "CP_RIGHT_PADDING",
1056
- allPluginParamsIds: ["PP_ROSE_SCALING_BY_RADIUS", "PP_ROSE_LABELS_SCALING_BY_RADIUS", "PP_SERIES_LEGEND_ROUND"],
1057
- description: "以半徑尺寸為比例的玫瑰圖"
1058
- }), AI = _({
1059
- chartParamsId: "CP_BOTTOM_PADDING",
1060
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM"],
1061
- description: "基本Grid參數"
1062
- }), oI = _({
1063
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1064
- allPluginParamsIds: ["PP_GROUP_AXIS_ROTATE_LABEL", "PP_GRID_LEGEND_BOTTOM"],
1065
- description: "傾斜標籤"
1066
- }), cI = _({
1067
- chartParamsId: "CP_BOTTOM_AND_LEFT_PADDING",
1068
- dataFormatterId: "DF_GRID_BOTTOM_VALUE_AXIS",
1069
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM"],
1070
- description: "橫向圖"
1071
- }), lI = _({
1072
- chartParamsId: "CP_BOTTOM_PADDING",
1073
- dataFormatterId: "DF_GRID_PN_SCALE",
1074
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM"],
1075
- description: "正負值分向圖"
1076
- }), NI = _({
1077
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1078
- dataFormatterId: "DF_GRID_SEPARATE_SERIES",
1079
- allPluginParamsIds: ["PP_GROUP_AXIS_ROTATE_LABEL", "PP_GRID_LEGEND_BOTTOM"],
1080
- description: "分開顯示Series"
1081
- }), MI = _({
1082
- chartParamsId: "CP_BOTTOM_PADDING",
1083
- allPluginParamsIds: ["PP_BARS_ROUND", "PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST"],
1084
- description: "圓角長條圖"
1085
- }), pI = _({
1086
- chartParamsId: "CP_BOTTOM_AND_LEFT_PADDING",
1087
- dataFormatterId: "DF_GRID_BOTTOM_VALUE_AXIS",
1088
- allPluginParamsIds: ["PP_BARS_ROUND", "PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST"],
1089
- description: "橫向圓角長條圖"
1090
- }), UI = _({
1091
- chartParamsId: "CP_BOTTOM_PADDING",
1092
- allPluginParamsIds: ["PP_BARS_THIN", "PP_GRID_LEGEND_BOTTOM"],
1093
- description: "細長條圖"
1094
- }), uI = _({
1095
- chartParamsId: "CP_BOTTOM_AND_LEFT_PADDING",
1096
- dataFormatterId: "DF_GRID_BOTTOM_VALUE_AXIS",
1097
- allPluginParamsIds: ["PP_BARS_ROUND", "PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST"],
1098
- description: "橫向圓角長條圖"
1099
- }), gI = _({
1100
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1101
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1102
- description: "基本Grid參數"
1103
- }), mI = _({
1104
- chartParamsId: "CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT",
1105
- allPluginParamsIds: ["PP_GROUP_AXIS_ROTATE_LABEL", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1106
- description: "傾斜標籤"
1107
- }), BI = _({
1108
- chartParamsId: "CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT",
1109
- allPluginParamsIds: ["PP_GROUP_AXIS_LOOSE_TICKS", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1110
- description: "寬鬆標籤"
1111
- }), HI = _({
1112
- chartParamsId: "CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT",
1113
- dataFormatterId: "DF_GRID_BOTTOM_VALUE_AXIS",
1114
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1115
- description: "橫向折線圖"
1116
- }), hI = _({
1117
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1118
- allPluginParamsIds: ["PP_DOTS_SOLID", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1119
- description: "折線圖及實心圓點"
1120
- }), CI = _({
1121
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1122
- allPluginParamsIds: ["PP_LINES_CURVE", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1123
- description: "弧線折線圖"
1124
- }), FI = _({
1125
- chartParamsId: "CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT",
1126
- allPluginParamsIds: ["PP_DOTS_ONLY_SHOW_HIGHLIGHTED", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1127
- description: "折線圖及Highlight Group圓點"
1128
- }), yI = _({
1129
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1130
- dataFormatterId: "DF_GRID_NONE_GROUP_SCALE_PADDING",
1131
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1132
- description: "基本Grid參數"
1133
- }), bI = _({
1134
- chartParamsId: "CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT",
1135
- dataFormatterId: "DF_GRID_NONE_GROUP_SCALE_PADDING",
1136
- allPluginParamsIds: ["PP_GROUP_AXIS_ROTATE_LABEL", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1137
- description: "傾斜標籤"
1138
- }), XI = _({
1139
- chartParamsId: "CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT",
1140
- dataFormatterId: "DF_GRID_NONE_GROUP_SCALE_PADDING",
1141
- allPluginParamsIds: ["PP_GROUP_AXIS_LOOSE_TICKS", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1142
- description: "寬鬆標籤"
1143
- }), WI = _({
1144
- chartParamsId: "CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT",
1145
- dataFormatterId: "DF_GRID_BOTTOM_VALUE_AXIS_AND_NONE_GROUP_SCALE_PADDING",
1146
- allPluginParamsIds: ["PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1147
- description: "橫向折線圖"
1148
- }), VI = _({
1149
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1150
- dataFormatterId: "DF_GRID_NONE_GROUP_SCALE_PADDING",
1151
- allPluginParamsIds: ["PP_LINES_CURVE", "PP_LINE_AREAS_CURVE", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1152
- description: "弧線折線圖"
1153
- }), xI = _({
1154
- chartParamsId: "CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT",
1155
- dataFormatterId: "DF_GRID_NONE_GROUP_SCALE_PADDING",
1156
- allPluginParamsIds: ["PP_DOTS_ONLY_SHOW_HIGHLIGHTED", "PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST"],
1157
- description: "折線圖及Highlight Group圓點"
1158
- }), fI = _({
1159
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1160
- dataFormatterId: "DF_LINE_AREAS_SEPARATE_SERIES",
1161
- allPluginParamsIds: ["PP_GROUP_AXIS_ROTATE_LABEL", "PP_GRID_LEGEND_BOTTOM"],
1162
- description: "LineAreas 分開顯示Series"
1163
- }), jI = T({
1164
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1165
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST"],
1166
- description: "基本MultiGrid參數"
1167
- }), vI = T({
1168
- chartParamsId: "CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT",
1169
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST", "PP_MULTI_BARS_ROUND", "PP_MULTI_LINES_CURVE"],
1170
- description: "MultiGrid圓弧風格"
1171
- }), KI = T({
1172
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1173
- dataFormatterId: "DF_MULTI_GRID_SEPARATE_GRID",
1174
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM", "PP_MULTI_GROUP_AXIS_2_GRID_SLOT", "PP_MULTI_VALUE_AXIS_2_GRID_SLOT", "PP_MULTI_VALUE_STACK_AXIS_2_GRID_SLOT", "PP_MULTI_BARS_2_GRID_SLOT", "PP_MULTI_BAR_STACK_2_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT", "PP_MULTI_LINES_2_GRID_SLOT", "PP_MULTI_LINE_AREAS_2_GRID_SLOT", "PP_MULTI_DOTS_2_GRID_SLOT"],
1175
- description: "2組Grid圖表"
1176
- }), kI = T({
1177
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1178
- dataFormatterId: "DF_MULTI_GRID_SEPARATE_GRID",
1179
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM", "PP_MULTI_GROUP_AXIS_3_GRID_SLOT", "PP_MULTI_VALUE_AXIS_3_GRID_SLOT", "PP_MULTI_VALUE_STACK_AXIS_3_GRID_SLOT", "PP_MULTI_BARS_3_GRID_SLOT", "PP_MULTI_BAR_STACK_3_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT", "PP_MULTI_LINES_3_GRID_SLOT", "PP_MULTI_LINE_AREAS_3_GRID_SLOT", "PP_MULTI_DOTS_3_GRID_SLOT"],
1180
- description: "3組Grid圖表"
1181
- }), YI = T({
1182
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1183
- dataFormatterId: "DF_MULTI_GRID_SEPARATE_GRID",
1184
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM", "PP_MULTI_GROUP_AXIS_4_GRID_SLOT", "PP_MULTI_VALUE_AXIS_4_GRID_SLOT", "PP_MULTI_VALUE_STACK_AXIS_4_GRID_SLOT", "PP_MULTI_BARS_4_GRID_SLOT", "PP_MULTI_BAR_STACK_4_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT", "PP_MULTI_LINES_4_GRID_SLOT", "PP_MULTI_LINE_AREAS_4_GRID_SLOT", "PP_MULTI_DOTS_4_GRID_SLOT"],
1185
- description: "4組Grid圖表"
1186
- }), zI = T({
1187
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1188
- dataFormatterId: "DF_MULTI_GRID_DIVERGING",
1189
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM", "PP_MULTI_GROUP_AXIS_DIVERGING", "PP_MULTI_VALUE_AXIS_2_GRID_SLOT", "PP_MULTI_BARS_2_GRID_SLOT", "PP_MULTI_BAR_STACK_2_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT", "PP_MULTI_LINES_2_GRID_SLOT", "PP_MULTI_LINE_AREAS_2_GRID_SLOT", "PP_MULTI_DOTS_2_GRID_SLOT"],
1190
- description: "正負值折線圖"
1191
- }), ZI = T({
1192
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1193
- dataFormatterId: "DF_MULTI_GRID_SEPARATE_GRID",
1194
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST", "PP_MULTI_GROUP_AXIS_2_GRID_SLOT", "PP_MULTI_VALUE_AXIS_2_GRID_SLOT", "PP_MULTI_BARS_2_GRID_SLOT", "PP_MULTI_BAR_STACK_2_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT", "PP_MULTI_LINES_2_GRID_SLOT", "PP_MULTI_LINE_AREAS_2_GRID_SLOT", "PP_MULTI_DOTS_2_GRID_SLOT"],
1195
- description: "2組折線圖表"
1196
- }), $I = T({
1197
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1198
- dataFormatterId: "DF_MULTI_GRID_SEPARATE_GRID",
1199
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST", "PP_MULTI_GROUP_AXIS_3_GRID_SLOT", "PP_MULTI_VALUE_AXIS_3_GRID_SLOT", "PP_MULTI_BARS_3_GRID_SLOT", "PP_MULTI_BAR_STACK_3_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT", "PP_MULTI_LINES_3_GRID_SLOT", "PP_MULTI_LINE_AREAS_3_GRID_SLOT", "PP_MULTI_DOTS_3_GRID_SLOT"],
1200
- description: "3組折線圖表"
1201
- }), wI = T({
1202
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1203
- dataFormatterId: "DF_MULTI_GRID_SEPARATE_GRID",
1204
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST", "PP_MULTI_GROUP_AXIS_4_GRID_SLOT", "PP_MULTI_VALUE_AXIS_4_GRID_SLOT", "PP_MULTI_BARS_4_GRID_SLOT", "PP_MULTI_BAR_STACK_4_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT", "PP_MULTI_LINES_4_GRID_SLOT", "PP_MULTI_LINE_AREAS_4_GRID_SLOT", "PP_MULTI_DOTS_4_GRID_SLOT"],
1205
- description: "4組折線圖表"
1206
- }), qI = T({
1207
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1208
- dataFormatterId: "DF_MULTI_LINE_AREAS_SEPARATE_GRID",
1209
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST", "PP_MULTI_GROUP_AXIS_2_GRID_SLOT", "PP_MULTI_VALUE_AXIS_2_GRID_SLOT", "PP_MULTI_BARS_2_GRID_SLOT", "PP_MULTI_BAR_STACK_2_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT", "PP_MULTI_LINES_2_GRID_SLOT", "PP_MULTI_LINE_AREAS_2_GRID_SLOT", "PP_MULTI_DOTS_2_GRID_SLOT"],
1210
- description: "2組折線圖表"
1211
- }), JI = T({
1212
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1213
- dataFormatterId: "DF_MULTI_LINE_AREAS_SEPARATE_GRID",
1214
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST", "PP_MULTI_GROUP_AXIS_3_GRID_SLOT", "PP_MULTI_VALUE_AXIS_3_GRID_SLOT", "PP_MULTI_BARS_3_GRID_SLOT", "PP_MULTI_BAR_STACK_3_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT", "PP_MULTI_LINES_3_GRID_SLOT", "PP_MULTI_LINE_AREAS_3_GRID_SLOT", "PP_MULTI_DOTS_3_GRID_SLOT"],
1215
- description: "3組折線圖表"
1216
- }), QI = T({
1217
- chartParamsId: "CP_BOTTOM_LONG_PADDING",
1218
- dataFormatterId: "DF_MULTI_LINE_AREAS_SEPARATE_GRID",
1219
- allPluginParamsIds: ["PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST", "PP_MULTI_GROUP_AXIS_4_GRID_SLOT", "PP_MULTI_VALUE_AXIS_4_GRID_SLOT", "PP_MULTI_BARS_4_GRID_SLOT", "PP_MULTI_BAR_STACK_4_GRID_SLOT", "PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT", "PP_MULTI_LINES_4_GRID_SLOT", "PP_MULTI_LINE_AREAS_4_GRID_SLOT", "PP_MULTI_DOTS_4_GRID_SLOT"],
1220
- description: "4組折線圖表"
1221
- }), _t = eI({
1222
- chartParamsId: "CP_BOTTOM_SLIGHT_PADDING",
1223
- allPluginParamsIds: ["PP_TREE_LEGEND_BOTTOM"],
1224
- description: "基本Tree參數"
1225
- });
1739
+ };
1226
1740
  export {
1227
- pI as PRESET_BARS_HORIZONTAL_AND_ROUND,
1228
- uI as PRESET_BARS_HORIZONTAL_AND_THIN,
1229
- MI as PRESET_BARS_ROUND,
1230
- UI as PRESET_BARS_THIN,
1231
- sI as PRESET_BUBBLES_SCALING_BY_RADIUS,
1232
- RI as PRESET_BUBBLES_SEPARATE_SERIES,
1233
- AI as PRESET_GRID_BASIC,
1234
- cI as PRESET_GRID_HORIZONTAL,
1235
- lI as PRESET_GRID_PN_SCALE,
1236
- oI as PRESET_GRID_ROTATE_AXIS_LABEL,
1237
- NI as PRESET_GRID_SEPARATE_SERIES,
1238
- gI as PRESET_LINES_BASIC,
1239
- CI as PRESET_LINES_CURVE,
1240
- FI as PRESET_LINES_HIGHLIGHT_GROUP_DOTS,
1241
- HI as PRESET_LINES_HORIZONTAL,
1242
- BI as PRESET_LINES_LOOSE_TICKS,
1243
- mI as PRESET_LINES_ROTATE_AXIS_LABEL,
1244
- hI as PRESET_LINES_WITH_SOLID_DOTS,
1245
- yI as PRESET_LINE_AREAS_BASIC,
1246
- VI as PRESET_LINE_AREAS_CURVE,
1247
- xI as PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS,
1248
- WI as PRESET_LINE_AREAS_HORIZONTAL,
1249
- XI as PRESET_LINE_AREAS_LOOSE_TICKS,
1250
- bI as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
1251
- fI as PRESET_LINE_AREAS_SEPARATE_GRID,
1252
- zI as PRESET_MULTI_BARS_DIVERGING,
1253
- KI as PRESET_MULTI_GRID_2_GRID_SLOT,
1254
- kI as PRESET_MULTI_GRID_3_GRID_SLOT,
1255
- YI as PRESET_MULTI_GRID_4_GRID_SLOT,
1256
- jI as PRESET_MULTI_GRID_BASIC,
1257
- vI as PRESET_MULTI_GRID_ROUND_STYLE,
1258
- ZI as PRESET_MULTI_LINES_2_GRID_SLOT,
1259
- $I as PRESET_MULTI_LINES_3_GRID_SLOT,
1260
- wI as PRESET_MULTI_LINES_4_GRID_SLOT,
1261
- qI as PRESET_MULTI_LINE_AREAS_2_GRID_SLOT,
1262
- JI as PRESET_MULTI_LINE_AREAS_3_GRID_SLOT,
1263
- QI as PRESET_MULTI_LINE_AREAS_4_GRID_SLOT,
1264
- GI as PRESET_PIE_DONUT,
1265
- OI as PRESET_PIE_HALF_DONUT,
1266
- DI as PRESET_PIE_WITH_INNER_LABELS,
1267
- nI as PRESET_ROSE_SCALING_BY_RADIUS,
1268
- SI as PRESET_SERIES_BASIC,
1269
- rI as PRESET_SERIES_DESC,
1270
- LI as PRESET_SERIES_SEPARATE_SERIES,
1271
- dI as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
1272
- EI as PRESET_SERIES_SUM_SERIES,
1273
- _t as PRESET_TREE_BASIC
1741
+ P as PRESET_BARS_HORIZONTAL_AND_ROUND,
1742
+ c as PRESET_BARS_HORIZONTAL_AND_THIN,
1743
+ A as PRESET_BARS_ROUND,
1744
+ I as PRESET_BARS_THIN,
1745
+ n as PRESET_BUBBLES_SCALING_BY_RADIUS,
1746
+ d as PRESET_BUBBLES_SEPARATE_SERIES,
1747
+ L as PRESET_GRID_BASIC,
1748
+ T as PRESET_GRID_HORIZONTAL,
1749
+ m as PRESET_GRID_PN_SCALE,
1750
+ x as PRESET_GRID_ROTATE_AXIS_LABEL,
1751
+ h as PRESET_GRID_SEPARATE_SERIES,
1752
+ O as PRESET_LINES_BASIC,
1753
+ H as PRESET_LINES_CURVE,
1754
+ U as PRESET_LINES_HIGHLIGHT_GROUP_DOTS,
1755
+ V as PRESET_LINES_HORIZONTAL,
1756
+ k as PRESET_LINES_LOOSE_TICKS,
1757
+ y as PRESET_LINES_ROTATE_AXIS_LABEL,
1758
+ j as PRESET_LINES_WITH_SOLID_DOTS,
1759
+ G as PRESET_LINE_AREAS_BASIC,
1760
+ M as PRESET_LINE_AREAS_CURVE,
1761
+ b as PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS,
1762
+ D as PRESET_LINE_AREAS_HORIZONTAL,
1763
+ B as PRESET_LINE_AREAS_LOOSE_TICKS,
1764
+ N as PRESET_LINE_AREAS_ROTATE_AXIS_LABEL,
1765
+ f as PRESET_LINE_AREAS_SEPARATE_GRID,
1766
+ F as PRESET_MULTI_GRID_2_GRID_SLOT,
1767
+ v as PRESET_MULTI_GRID_3_GRID_SLOT,
1768
+ W as PRESET_MULTI_GRID_4_GRID_SLOT,
1769
+ X as PRESET_MULTI_GRID_BASIC,
1770
+ C as PRESET_MULTI_GRID_DIVERGING,
1771
+ Z as PRESET_MULTI_GRID_ROUND_STYLE,
1772
+ q as PRESET_MULTI_LINES_2_GRID_SLOT,
1773
+ z as PRESET_MULTI_LINES_3_GRID_SLOT,
1774
+ J as PRESET_MULTI_LINES_4_GRID_SLOT,
1775
+ Y as PRESET_MULTI_LINE_AREAS_2_GRID_SLOT,
1776
+ w as PRESET_MULTI_LINE_AREAS_3_GRID_SLOT,
1777
+ K as PRESET_MULTI_LINE_AREAS_4_GRID_SLOT,
1778
+ o as PRESET_PIE_DONUT,
1779
+ l as PRESET_PIE_HALF_DONUT,
1780
+ g as PRESET_PIE_WITH_INNER_LABELS,
1781
+ u as PRESET_ROSE_SCALING_BY_RADIUS,
1782
+ E as PRESET_SERIES_BASIC,
1783
+ _ as PRESET_SERIES_DESC,
1784
+ R as PRESET_SERIES_SEPARATE_SERIES,
1785
+ S as PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES,
1786
+ p as PRESET_SERIES_SUM_SERIES,
1787
+ Q as PRESET_TREE_BASIC
1274
1788
  };