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

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