@orbcharts/presets-basic 3.0.0-alpha.8 → 3.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. package/dist/lib/core-types.d.ts +1 -0
  2. package/dist/lib/plugins-basic-types.d.ts +1 -0
  3. package/dist/orbcharts-presets-basic.es.js +1270 -779
  4. package/dist/orbcharts-presets-basic.umd.js +1 -1
  5. package/dist/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.d.ts +4 -0
  6. package/dist/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.d.ts +4 -0
  7. package/dist/src/grid/PRESET_BARS_ROUND.d.ts +4 -0
  8. package/dist/src/grid/PRESET_BARS_THIN.d.ts +4 -0
  9. package/dist/src/grid/PRESET_GRID_BASIC.d.ts +4 -0
  10. package/dist/src/grid/PRESET_GRID_HORIZONTAL.d.ts +4 -0
  11. package/dist/src/grid/PRESET_GRID_PN_SCALE.d.ts +4 -0
  12. package/dist/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.d.ts +4 -0
  13. package/dist/src/grid/PRESET_GRID_SEPARATE_SERIES.d.ts +4 -0
  14. package/dist/src/grid/PRESET_LINES_BASIC.d.ts +4 -0
  15. package/dist/src/grid/PRESET_LINES_CURVE.d.ts +4 -0
  16. package/dist/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.d.ts +4 -0
  17. package/dist/src/grid/PRESET_LINES_HORIZONTAL.d.ts +4 -0
  18. package/dist/src/grid/PRESET_LINES_LOOSE_TICKS.d.ts +4 -0
  19. package/dist/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.d.ts +4 -0
  20. package/dist/src/grid/PRESET_LINES_WITH_SOLID_DOTS.d.ts +4 -0
  21. package/dist/src/grid/PRESET_LINE_AREAS_BASIC.d.ts +4 -0
  22. package/dist/src/grid/PRESET_LINE_AREAS_CURVE.d.ts +4 -0
  23. package/dist/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.d.ts +4 -0
  24. package/dist/src/grid/PRESET_LINE_AREAS_HORIZONTAL.d.ts +4 -0
  25. package/dist/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.d.ts +4 -0
  26. package/dist/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.d.ts +4 -0
  27. package/dist/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.d.ts +4 -0
  28. package/dist/src/grid/index.d.ts +21 -0
  29. package/dist/src/index.d.ts +4 -30
  30. package/dist/src/multiGrid/PRESET_MULTI_GRID_BASIC.d.ts +4 -0
  31. package/dist/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.d.ts +4 -0
  32. package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.d.ts +4 -0
  33. package/dist/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.d.ts +4 -0
  34. package/dist/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.d.ts +4 -0
  35. package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.d.ts +4 -0
  36. package/dist/src/multiGrid/index.d.ts +6 -0
  37. package/dist/src/params.d.ts +7 -0
  38. package/dist/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.d.ts +4 -0
  39. package/dist/src/series/PRESET_BUBBLES_SEPARATE_SERIES.d.ts +4 -0
  40. package/dist/src/series/PRESET_PIE_BASIC.d.ts +4 -0
  41. package/dist/src/series/PRESET_PIE_DONUT.d.ts +4 -0
  42. package/dist/src/series/PRESET_PIE_HALF_DONUT.d.ts +4 -0
  43. package/dist/src/series/PRESET_PIE_WITH_INNER_LABELS.d.ts +4 -0
  44. package/dist/src/series/PRESET_ROSE_BASIC.d.ts +4 -0
  45. package/dist/src/series/PRESET_ROSE_SCALING_BY_RADIUS.d.ts +4 -0
  46. package/dist/src/series/PRESET_SERIES_BASIC.d.ts +4 -0
  47. package/dist/src/series/PRESET_SERIES_SEPARATE_SERIES.d.ts +4 -0
  48. package/dist/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.d.ts +4 -0
  49. package/dist/src/series/PRESET_SERIES_SUM_SERIES.d.ts +4 -0
  50. package/dist/src/series/index.d.ts +12 -0
  51. package/dist/src/tree/PRESET_TREE_BASIC.d.ts +4 -0
  52. package/dist/src/tree/index.d.ts +1 -0
  53. package/dist/src/types.d.ts +121 -37
  54. package/dist/vite.config.d.ts +1 -1
  55. package/lib/core-types.ts +7 -0
  56. package/lib/plugins-basic-types.ts +6 -0
  57. package/package.json +5 -6
  58. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +56 -0
  59. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +52 -0
  60. package/src/grid/PRESET_BARS_ROUND.ts +39 -0
  61. package/src/grid/PRESET_BARS_THIN.ts +36 -0
  62. package/src/grid/PRESET_GRID_BASIC.ts +27 -0
  63. package/src/grid/PRESET_GRID_HORIZONTAL.ts +44 -0
  64. package/src/grid/PRESET_GRID_PN_SCALE.ts +35 -0
  65. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +35 -0
  66. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +40 -0
  67. package/src/grid/PRESET_LINES_BASIC.ts +35 -0
  68. package/src/grid/PRESET_LINES_CURVE.ts +38 -0
  69. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +37 -0
  70. package/src/grid/PRESET_LINES_HORIZONTAL.ts +51 -0
  71. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +37 -0
  72. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +40 -0
  73. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +39 -0
  74. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +43 -0
  75. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +48 -0
  76. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +47 -0
  77. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +47 -0
  78. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +45 -0
  79. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +48 -0
  80. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +50 -0
  81. package/src/grid/index.ts +23 -0
  82. package/src/index.ts +4 -218
  83. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +38 -0
  84. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +86 -0
  85. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +58 -0
  86. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +60 -0
  87. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +86 -0
  88. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +104 -0
  89. package/src/multiGrid/index.ts +6 -0
  90. package/src/params.ts +61 -0
  91. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +18 -0
  92. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +29 -0
  93. package/src/series/PRESET_PIE_BASIC.ts +19 -0
  94. package/src/series/PRESET_PIE_DONUT.ts +24 -0
  95. package/src/series/PRESET_PIE_HALF_DONUT.ts +37 -0
  96. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +25 -0
  97. package/src/series/PRESET_ROSE_BASIC.ts +20 -0
  98. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +25 -0
  99. package/src/series/PRESET_SERIES_BASIC.ts +16 -0
  100. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +18 -0
  101. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +19 -0
  102. package/src/series/PRESET_SERIES_SUM_SERIES.ts +18 -0
  103. package/src/series/index.ts +13 -0
  104. package/src/tree/PRESET_TREE_BASIC.ts +27 -0
  105. package/src/tree/index.ts +1 -0
  106. package/src/types.ts +263 -56
  107. package/{tsconfig.prod.json → tsconfig.base.json} +1 -1
  108. package/tsconfig.json +1 -12
  109. package/vite.config.js +17 -39
  110. package/dist/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING.d.ts +0 -3
  111. package/dist/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
  112. package/dist/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING.d.ts +0 -3
  113. package/dist/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
  114. package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING.d.ts +0 -3
  115. package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT.d.ts +0 -3
  116. package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
  117. package/dist/src/chartParamsFiles/CP_LEFT_PADDING.d.ts +0 -3
  118. package/dist/src/chartParamsFiles/CP_RIGHT_PADDING.d.ts +0 -3
  119. package/dist/src/chartParamsFiles/CP_TOP_AND_NO_BOTTOM_PADDING.d.ts +0 -3
  120. package/dist/src/chartParamsFiles/index.d.ts +0 -10
  121. package/dist/src/createPreset.d.ts +0 -9
  122. package/dist/src/gridDataFormatterFiles/DF_GRID_2_SERIES_SLOT.d.ts +0 -3
  123. package/dist/src/gridDataFormatterFiles/DF_GRID_3_SERIES_SLOT.d.ts +0 -3
  124. package/dist/src/gridDataFormatterFiles/DF_GRID_4_SERIES_SLOT.d.ts +0 -3
  125. package/dist/src/gridDataFormatterFiles/DF_GRID_BOTTOM_VALUE_AXIS.d.ts +0 -3
  126. package/dist/src/gridDataFormatterFiles/index.d.ts +0 -4
  127. package/dist/src/gridPluginParamsFiles/Bars/PP_BARS_ROUND.d.ts +0 -4
  128. package/dist/src/gridPluginParamsFiles/Bars/PP_BARS_THIN.d.ts +0 -4
  129. package/dist/src/gridPluginParamsFiles/Bars/index.d.ts +0 -2
  130. package/dist/src/gridPluginParamsFiles/Dots/PP_DOTS_ONLY_SHOW_HIGHLIGHTED.d.ts +0 -4
  131. package/dist/src/gridPluginParamsFiles/Dots/PP_DOTS_SOLID.d.ts +0 -4
  132. package/dist/src/gridPluginParamsFiles/Dots/index.d.ts +0 -2
  133. package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM.d.ts +0 -4
  134. package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.d.ts +0 -4
  135. package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST.d.ts +0 -4
  136. package/dist/src/gridPluginParamsFiles/GridLegend/index.d.ts +0 -3
  137. package/dist/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_ROTATE_LABEL.d.ts +0 -4
  138. package/dist/src/gridPluginParamsFiles/GroupAxis/index.d.ts +0 -1
  139. package/dist/src/gridPluginParamsFiles/Lines/PP_LINES_CURVE.d.ts +0 -4
  140. package/dist/src/gridPluginParamsFiles/Lines/index.d.ts +0 -1
  141. package/dist/src/gridPluginParamsFiles/index.d.ts +0 -5
  142. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_2_GRID_SLOT.d.ts +0 -3
  143. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_3_GRID_SLOT.d.ts +0 -3
  144. package/dist/src/multiGridDataFormatterFiles/DF_MULTI_GRID_4_GRID_SLOT.d.ts +0 -3
  145. package/dist/src/multiGridDataFormatterFiles/index.d.ts +0 -3
  146. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_2_GRID_SLOT.d.ts +0 -4
  147. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_3_GRID_SLOT.d.ts +0 -4
  148. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_4_GRID_SLOT.d.ts +0 -4
  149. package/dist/src/multiGridPluginParamsFiles/MultiBarStack/index.d.ts +0 -3
  150. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_2_GRID_SLOT.d.ts +0 -4
  151. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_3_GRID_SLOT.d.ts +0 -4
  152. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_4_GRID_SLOT.d.ts +0 -4
  153. package/dist/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_ROUND.d.ts +0 -4
  154. package/dist/src/multiGridPluginParamsFiles/MultiBars/index.d.ts +0 -4
  155. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT.d.ts +0 -4
  156. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT.d.ts +0 -4
  157. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT.d.ts +0 -4
  158. package/dist/src/multiGridPluginParamsFiles/MultiBarsTriangle/index.d.ts +0 -3
  159. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM.d.ts +0 -4
  160. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.d.ts +0 -4
  161. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST.d.ts +0 -4
  162. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST.d.ts +0 -4
  163. package/dist/src/multiGridPluginParamsFiles/MultiGridLegend/index.d.ts +0 -4
  164. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_2_GRID_SLOT.d.ts +0 -4
  165. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_3_GRID_SLOT.d.ts +0 -4
  166. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_4_GRID_SLOT.d.ts +0 -4
  167. package/dist/src/multiGridPluginParamsFiles/MultiGroupAxis/index.d.ts +0 -3
  168. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_2_GRID_SLOT.d.ts +0 -4
  169. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_3_GRID_SLOT.d.ts +0 -4
  170. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_4_GRID_SLOT.d.ts +0 -4
  171. package/dist/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_CURVE.d.ts +0 -4
  172. package/dist/src/multiGridPluginParamsFiles/MultiLines/index.d.ts +0 -4
  173. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_2_GRID_SLOT.d.ts +0 -4
  174. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_3_GRID_SLOT.d.ts +0 -4
  175. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_4_GRID_SLOT.d.ts +0 -4
  176. package/dist/src/multiGridPluginParamsFiles/MultiValueAxis/index.d.ts +0 -3
  177. package/dist/src/multiGridPluginParamsFiles/index.d.ts +0 -7
  178. package/dist/src/multiValueDataFormatterFiles/index.d.ts +0 -1
  179. package/dist/src/multiValuePluginParamsFiles/index.d.ts +0 -1
  180. package/dist/src/relationshipDataFormatterFiles/index.d.ts +0 -1
  181. package/dist/src/relationshipPluginParamsFiles/index.d.ts +0 -1
  182. package/dist/src/seriesDataFormatterFiles/index.d.ts +0 -1
  183. package/dist/src/seriesPluginParamsFiles/Bubbles/PP_BUBBLES_SCALING_BY_RADIUS.d.ts +0 -4
  184. package/dist/src/seriesPluginParamsFiles/Bubbles/index.d.ts +0 -1
  185. package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_BLACK_STROKE.d.ts +0 -0
  186. package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_DONUT.d.ts +0 -4
  187. package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_HALF_DONUT.d.ts +0 -4
  188. package/dist/src/seriesPluginParamsFiles/Pie/index.d.ts +0 -2
  189. package/dist/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_HALF_ANGLE.d.ts +0 -4
  190. package/dist/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_INNER.d.ts +0 -4
  191. package/dist/src/seriesPluginParamsFiles/PieLabels/index.d.ts +0 -2
  192. package/dist/src/seriesPluginParamsFiles/SeriesLegend/PP_SERIES_LEGEND_ROUND.d.ts +0 -4
  193. package/dist/src/seriesPluginParamsFiles/SeriesLegend/index.d.ts +0 -1
  194. package/dist/src/seriesPluginParamsFiles/index.d.ts +0 -4
  195. package/dist/src/treeDataFormatterFiles/index.d.ts +0 -1
  196. package/dist/src/treePluginParamsFiles/index.d.ts +0 -1
  197. package/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING.ts +0 -14
  198. package/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
  199. package/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING.ts +0 -14
  200. package/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
  201. package/src/chartParamsFiles/CP_BOTTOM_PADDING.ts +0 -14
  202. package/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT.ts +0 -15
  203. package/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
  204. package/src/chartParamsFiles/CP_LEFT_PADDING.ts +0 -14
  205. package/src/chartParamsFiles/CP_RIGHT_PADDING.ts +0 -14
  206. package/src/chartParamsFiles/CP_TOP_AND_NO_BOTTOM_PADDING.ts +0 -14
  207. package/src/chartParamsFiles/index.ts +0 -10
  208. package/src/createPreset.ts +0 -88
  209. package/src/gridDataFormatterFiles/DF_GRID_2_SERIES_SLOT.ts +0 -16
  210. package/src/gridDataFormatterFiles/DF_GRID_3_SERIES_SLOT.ts +0 -16
  211. package/src/gridDataFormatterFiles/DF_GRID_4_SERIES_SLOT.ts +0 -16
  212. package/src/gridDataFormatterFiles/DF_GRID_BOTTOM_VALUE_AXIS.ts +0 -23
  213. package/src/gridDataFormatterFiles/DF_GRID_DIVERGING_SCALE.ts +0 -15
  214. package/src/gridDataFormatterFiles/index.ts +0 -5
  215. package/src/gridPluginParamsFiles/Bars/PP_BARS_ROUND.ts +0 -15
  216. package/src/gridPluginParamsFiles/Bars/PP_BARS_THIN.ts +0 -14
  217. package/src/gridPluginParamsFiles/Bars/index.ts +0 -2
  218. package/src/gridPluginParamsFiles/Dots/PP_DOTS_ONLY_SHOW_HIGHLIGHTED.ts +0 -12
  219. package/src/gridPluginParamsFiles/Dots/PP_DOTS_SOLID.ts +0 -14
  220. package/src/gridPluginParamsFiles/Dots/index.ts +0 -2
  221. package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM.ts +0 -14
  222. package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.ts +0 -15
  223. package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_ROUND_LIST.ts +0 -15
  224. package/src/gridPluginParamsFiles/GridLegend/index.ts +0 -3
  225. package/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_ROTATE_LABEL.ts +0 -13
  226. package/src/gridPluginParamsFiles/GroupAxis/index.ts +0 -1
  227. package/src/gridPluginParamsFiles/Lines/PP_LINES_CURVE.ts +0 -13
  228. package/src/gridPluginParamsFiles/Lines/index.ts +0 -1
  229. package/src/gridPluginParamsFiles/index.ts +0 -6
  230. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_2_GRID_SLOT.ts +0 -21
  231. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_3_GRID_SLOT.ts +0 -24
  232. package/src/multiGridDataFormatterFiles/DF_MULTI_GRID_4_GRID_SLOT.ts +0 -27
  233. package/src/multiGridDataFormatterFiles/index.ts +0 -3
  234. package/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_2_GRID_SLOT.ts +0 -12
  235. package/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_3_GRID_SLOT.ts +0 -12
  236. package/src/multiGridPluginParamsFiles/MultiBarStack/PP_MULTI_BAR_STACK_4_GRID_SLOT.ts +0 -12
  237. package/src/multiGridPluginParamsFiles/MultiBarStack/index.ts +0 -4
  238. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_2_GRID_SLOT.ts +0 -12
  239. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_3_GRID_SLOT.ts +0 -12
  240. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_4_GRID_SLOT.ts +0 -12
  241. package/src/multiGridPluginParamsFiles/MultiBars/PP_MULTI_BARS_ROUND.ts +0 -15
  242. package/src/multiGridPluginParamsFiles/MultiBars/index.ts +0 -5
  243. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_2_GRID_SLOT.ts +0 -12
  244. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_3_GRID_SLOT.ts +0 -12
  245. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/PP_MULTI_BARS_TRIANGLE_4_GRID_SLOT.ts +0 -12
  246. package/src/multiGridPluginParamsFiles/MultiBarsTriangle/index.ts +0 -3
  247. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM.ts +0 -14
  248. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.ts +0 -28
  249. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_RECT_AND_LINE_LIST.ts +0 -21
  250. package/src/multiGridPluginParamsFiles/MultiGridLegend/PP_MULTI_GRID_LEGEND_BOTTOM_WITH_ROUND_AND_LINE_LIST.ts +0 -22
  251. package/src/multiGridPluginParamsFiles/MultiGridLegend/index.ts +0 -4
  252. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_2_GRID_SLOT.ts +0 -13
  253. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_3_GRID_SLOT.ts +0 -13
  254. package/src/multiGridPluginParamsFiles/MultiGroupAxis/PP_MULTI_GROUP_AXIS_4_GRID_SLOT.ts +0 -13
  255. package/src/multiGridPluginParamsFiles/MultiGroupAxis/index.ts +0 -3
  256. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_2_GRID_SLOT.ts +0 -12
  257. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_3_GRID_SLOT.ts +0 -12
  258. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_4_GRID_SLOT.ts +0 -12
  259. package/src/multiGridPluginParamsFiles/MultiLines/PP_MULTI_LINES_CURVE.ts +0 -13
  260. package/src/multiGridPluginParamsFiles/MultiLines/index.ts +0 -4
  261. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_2_GRID_SLOT.ts +0 -12
  262. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_3_GRID_SLOT.ts +0 -12
  263. package/src/multiGridPluginParamsFiles/MultiValueAxis/PP_MULTI_VALUE_AXIS_4_GRID_SLOT.ts +0 -12
  264. package/src/multiGridPluginParamsFiles/MultiValueAxis/index.ts +0 -3
  265. package/src/multiGridPluginParamsFiles/index.ts +0 -7
  266. package/src/multiValueDataFormatterFiles/index.ts +0 -1
  267. package/src/multiValuePluginParamsFiles/index.ts +0 -1
  268. package/src/relationshipDataFormatterFiles/index.ts +0 -1
  269. package/src/relationshipPluginParamsFiles/index.ts +0 -1
  270. package/src/seriesDataFormatterFiles/index.ts +0 -1
  271. package/src/seriesPluginParamsFiles/Bubbles/PP_BUBBLES_SCALING_BY_RADIUS.ts +0 -12
  272. package/src/seriesPluginParamsFiles/Bubbles/index.ts +0 -1
  273. package/src/seriesPluginParamsFiles/Pie/PP_PIE_BLACK_STROKE.ts +0 -0
  274. package/src/seriesPluginParamsFiles/Pie/PP_PIE_DONUT.ts +0 -12
  275. package/src/seriesPluginParamsFiles/Pie/PP_PIE_HALF_DONUT.ts +0 -14
  276. package/src/seriesPluginParamsFiles/Pie/index.ts +0 -2
  277. package/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_HALF_ANGLE.ts +0 -13
  278. package/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_INNER.ts +0 -13
  279. package/src/seriesPluginParamsFiles/PieLabels/index.ts +0 -2
  280. package/src/seriesPluginParamsFiles/SeriesLegend/PP_SERIES_LEGEND_ROUND.ts +0 -12
  281. package/src/seriesPluginParamsFiles/SeriesLegend/index.ts +0 -1
  282. package/src/seriesPluginParamsFiles/index.ts +0 -4
  283. package/src/treeDataFormatterFiles/index.ts +0 -1
  284. package/src/treePluginParamsFiles/index.ts +0 -1
  285. package/tsconfig.dev.json +0 -18
@@ -0,0 +1,37 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINES_HIGHLIGHT_GROUP_DOTS: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINES_HIGHLIGHT_GROUP_DOTS',
10
+ description: '折線圖及Highlight Group圓點',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'group'
19
+ },
20
+ allPluginParams: {
21
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
22
+ Lines: {},
23
+ Dots: {
24
+ onlyShowHighlighted: false
25
+ },
26
+ GroupAxis: {},
27
+ ValueAxis: {},
28
+ GroupAux: {},
29
+ GridLegend: {
30
+ // position: 'bottom',
31
+ // justify: 'center',
32
+ placement: 'bottom',
33
+ padding: 14,
34
+ listRectHeight: 2
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,51 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINES_HORIZONTAL: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINES_HORIZONTAL',
10
+ description: '橫向折線圖',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 160
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ valueAxis: {
23
+ position: 'bottom'
24
+ // position: 'top'
25
+ // position: 'left'
26
+ // position: 'right'
27
+ },
28
+ groupAxis: {
29
+ position: 'left'
30
+ // position: 'right'
31
+ // position: 'bottom'
32
+ // position: 'top'
33
+ },
34
+ }
35
+ },
36
+ allPluginParams: {
37
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
38
+ Lines: {},
39
+ Dots: {},
40
+ GroupAxis: {},
41
+ ValueAxis: {},
42
+ GroupAux: {},
43
+ GridLegend: {
44
+ // position: 'bottom',
45
+ // justify: 'center',
46
+ placement: 'bottom',
47
+ padding: 14,
48
+ listRectHeight: 2
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,37 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINES_LOOSE_TICKS: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINES_LOOSE_TICKS',
10
+ description: '寬鬆標籤',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ allPluginParams: {
21
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
22
+ Lines: {},
23
+ Dots: {},
24
+ GroupAxis: {
25
+ ticks: 6
26
+ },
27
+ ValueAxis: {},
28
+ GroupAux: {},
29
+ GridLegend: {
30
+ // position: 'bottom',
31
+ // justify: 'center',
32
+ placement: 'bottom',
33
+ padding: 14,
34
+ listRectHeight: 2
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,40 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINES_ROTATE_AXIS_LABEL: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINES_ROTATE_AXIS_LABEL',
10
+ description: '傾斜標籤',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 160,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ allPluginParams: {
21
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
22
+ Lines: {},
23
+ Dots: {},
24
+ GroupAxis: {
25
+ tickPadding: 15,
26
+ tickTextRotate: -30
27
+ },
28
+ ValueAxis: {},
29
+ GroupAux: {
30
+ labelRotate: -30
31
+ },
32
+ GridLegend: {
33
+ // position: 'bottom',
34
+ // justify: 'center',
35
+ placement: 'bottom',
36
+ padding: 14,
37
+ listRectHeight: 2
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,39 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINES_WITH_SOLID_DOTS: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINES_WITH_SOLID_DOTS',
10
+ description: '折線圖及實心圓點',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ allPluginParams: {
21
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
22
+ Lines: {},
23
+ Dots: {
24
+ radius: 3,
25
+ fillColorType: 'series',
26
+ onlyShowHighlighted: false
27
+ },
28
+ GroupAxis: {},
29
+ ValueAxis: {},
30
+ GroupAux: {},
31
+ GridLegend: {
32
+ // position: 'bottom',
33
+ // justify: 'center',
34
+ placement: 'bottom',
35
+ padding: 14,
36
+ listRectHeight: 2
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,43 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_BASIC: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_BASIC',
10
+ description: '基本LineArea參數',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ groupAxis: {
23
+ scalePadding: 0
24
+ }
25
+ }
26
+ },
27
+ allPluginParams: {
28
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
29
+ Lines: {},
30
+ LineAreas: {},
31
+ Dots: {},
32
+ GroupAxis: {},
33
+ ValueAxis: {},
34
+ GroupAux: {},
35
+ GridLegend: {
36
+ // position: 'bottom',
37
+ // justify: 'center',
38
+ placement: 'bottom',
39
+ padding: 14,
40
+ listRectHeight: 2
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,48 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_CURVE: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_CURVE',
10
+ description: '弧線折線圖',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ groupAxis: {
23
+ scalePadding: 0
24
+ }
25
+ }
26
+ },
27
+ allPluginParams: {
28
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
29
+ Lines: {
30
+ lineCurve: 'curveMonotoneX',
31
+ lineWidth: 3
32
+ },
33
+ LineAreas: {
34
+ lineCurve: 'curveMonotoneX',
35
+ },
36
+ Dots: {},
37
+ GroupAxis: {},
38
+ ValueAxis: {},
39
+ GroupAux: {},
40
+ GridLegend: {
41
+ // position: 'bottom',
42
+ // justify: 'center',
43
+ placement: 'bottom',
44
+ padding: 14,
45
+ listRectHeight: 2
46
+ }
47
+ }
48
+ }
@@ -0,0 +1,47 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS',
10
+ description: '折線圖及Highlight Group圓點',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'group'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ groupAxis: {
23
+ scalePadding: 0
24
+ }
25
+ }
26
+ },
27
+ allPluginParams: {
28
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
29
+ Lines: {
30
+ lineWidth: 3
31
+ },
32
+ LineAreas: {},
33
+ Dots: {
34
+ onlyShowHighlighted: false
35
+ },
36
+ GroupAxis: {},
37
+ ValueAxis: {},
38
+ GroupAux: {},
39
+ GridLegend: {
40
+ // position: 'bottom',
41
+ // justify: 'center',
42
+ placement: 'bottom',
43
+ padding: 14,
44
+ listRectHeight: 2
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_HORIZONTAL: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_HORIZONTAL',
10
+ description: '橫向折線圖',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 160
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ valueAxis: {
23
+ position: 'bottom'
24
+ },
25
+ groupAxis: {
26
+ position: 'left',
27
+ scalePadding: 0
28
+ },
29
+ }
30
+ },
31
+ allPluginParams: {
32
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
33
+ Lines: {},
34
+ LineAreas: {},
35
+ Dots: {},
36
+ GroupAxis: {},
37
+ ValueAxis: {},
38
+ GroupAux: {},
39
+ GridLegend: {
40
+ // position: 'bottom',
41
+ // justify: 'center',
42
+ placement: 'bottom',
43
+ padding: 14,
44
+ listRectHeight: 2
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,45 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_LOOSE_TICKS: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_LOOSE_TICKS',
10
+ description: '寬鬆標籤',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 120,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ groupAxis: {
23
+ scalePadding: 0
24
+ }
25
+ }
26
+ },
27
+ allPluginParams: {
28
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
29
+ Lines: {},
30
+ LineAreas: {},
31
+ Dots: {},
32
+ GroupAxis: {
33
+ ticks: 6
34
+ },
35
+ ValueAxis: {},
36
+ GroupAux: {},
37
+ GridLegend: {
38
+ // position: 'bottom',
39
+ // justify: 'center',
40
+ placement: 'bottom',
41
+ padding: 14,
42
+ listRectHeight: 2
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,48 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_ROTATE_AXIS_LABEL: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_ROTATE_AXIS_LABEL',
10
+ description: '傾斜標籤',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 160,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ groupAxis: {
23
+ scalePadding: 0
24
+ }
25
+ }
26
+ },
27
+ allPluginParams: {
28
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
29
+ Lines: {},
30
+ LineAreas: {},
31
+ Dots: {},
32
+ GroupAxis: {
33
+ tickPadding: 15,
34
+ tickTextRotate: -30
35
+ },
36
+ ValueAxis: {},
37
+ GroupAux: {
38
+ labelRotate: -30
39
+ },
40
+ GridLegend: {
41
+ // position: 'bottom',
42
+ // justify: 'center',
43
+ placement: 'bottom',
44
+ padding: 14,
45
+ listRectHeight: 2
46
+ }
47
+ }
48
+ }
@@ -0,0 +1,50 @@
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetGridPluginParams,
3
+ PresetNoneDataPluginParams
4
+ } from '../types'
5
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
6
+
7
+ export const PRESET_LINE_AREAS_SEPARATE_SERIES: PresetPartial<'grid', Partial<PresetGridPluginParams>
8
+ & Partial<PresetNoneDataPluginParams>> = {
9
+ name: 'PRESET_LINE_AREAS_SEPARATE_SERIES',
10
+ description: 'LineAreas 分開顯示Series',
11
+ chartParams: {
12
+ padding: {
13
+ top: 60,
14
+ right: 60,
15
+ bottom: 160,
16
+ left: 60
17
+ },
18
+ highlightTarget: 'series'
19
+ },
20
+ dataFormatter: {
21
+ grid: {
22
+ // seriesSlotIndexes: [0, 1],
23
+ separateSeries: true,
24
+ groupAxis: {
25
+ scalePadding: 0
26
+ }
27
+ },
28
+ },
29
+ allPluginParams: {
30
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
31
+ Lines: {},
32
+ LineAreas: {},
33
+ Dots: {},
34
+ GroupAxis: {
35
+ tickPadding: 15,
36
+ tickTextRotate: -30
37
+ },
38
+ ValueAxis: {},
39
+ GroupAux: {
40
+ labelRotate: -30
41
+ },
42
+ GridLegend: {
43
+ // position: 'bottom',
44
+ // justify: 'center',
45
+ placement: 'bottom',
46
+ padding: 14,
47
+ listRectHeight: 2
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,23 @@
1
+ export { PRESET_BARS_HORIZONTAL_AND_ROUND } from './PRESET_BARS_HORIZONTAL_AND_ROUND'
2
+ export { PRESET_BARS_HORIZONTAL_AND_THIN } from './PRESET_BARS_HORIZONTAL_AND_THIN'
3
+ export { PRESET_BARS_ROUND } from './PRESET_BARS_ROUND'
4
+ export { PRESET_BARS_THIN } from './PRESET_BARS_THIN'
5
+ export { PRESET_GRID_BASIC } from './PRESET_GRID_BASIC'
6
+ export { PRESET_GRID_HORIZONTAL } from './PRESET_GRID_HORIZONTAL'
7
+ export { PRESET_GRID_PN_SCALE } from './PRESET_GRID_PN_SCALE'
8
+ export { PRESET_GRID_ROTATE_AXIS_LABEL } from './PRESET_GRID_ROTATE_AXIS_LABEL'
9
+ export { PRESET_GRID_SEPARATE_SERIES } from './PRESET_GRID_SEPARATE_SERIES'
10
+ export { PRESET_LINE_AREAS_BASIC } from './PRESET_LINE_AREAS_BASIC'
11
+ export { PRESET_LINE_AREAS_CURVE } from './PRESET_LINE_AREAS_CURVE'
12
+ // export { PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS } from './PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS'
13
+ export { PRESET_LINE_AREAS_HORIZONTAL } from './PRESET_LINE_AREAS_HORIZONTAL'
14
+ export { PRESET_LINE_AREAS_LOOSE_TICKS } from './PRESET_LINE_AREAS_LOOSE_TICKS'
15
+ export { PRESET_LINE_AREAS_ROTATE_AXIS_LABEL } from './PRESET_LINE_AREAS_ROTATE_AXIS_LABEL'
16
+ export { PRESET_LINE_AREAS_SEPARATE_SERIES } from './PRESET_LINE_AREAS_SEPARATE_SERIES'
17
+ export { PRESET_LINES_BASIC } from './PRESET_LINES_BASIC'
18
+ export { PRESET_LINES_CURVE } from './PRESET_LINES_CURVE'
19
+ // export { PRESET_LINES_HIGHLIGHT_GROUP_DOTS } from './PRESET_LINES_HIGHLIGHT_GROUP_DOTS'
20
+ export { PRESET_LINES_HORIZONTAL } from './PRESET_LINES_HORIZONTAL'
21
+ export { PRESET_LINES_LOOSE_TICKS } from './PRESET_LINES_LOOSE_TICKS'
22
+ export { PRESET_LINES_ROTATE_AXIS_LABEL } from './PRESET_LINES_ROTATE_AXIS_LABEL'
23
+ export { PRESET_LINES_WITH_SOLID_DOTS } from './PRESET_LINES_WITH_SOLID_DOTS'