@oliasoft-open-source/charts-library 5.0.0-beta-2 → 5.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 (339) hide show
  1. package/dist/assets/Color-6VNJS4EI-DLbcRNMp.js +1 -0
  2. package/dist/assets/DocsRenderer-NNNQARDV-BOzykHvd.js +1 -0
  3. package/dist/assets/WithTooltip-V3YHNWJZ-BeePhoIB.js +1 -0
  4. package/dist/assets/_getPrototype-Bgn98YsR.js +3 -0
  5. package/dist/assets/{bar-chart.stories-D9mtWCnD.js → bar-chart.stories-BEwhK613.js} +35 -35
  6. package/dist/assets/chunk-HLWAVYOI-BJEcfeBO.js +364 -0
  7. package/dist/assets/entry-preview-D8lfu5jc.js +1 -0
  8. package/dist/assets/entry-preview-docs-CRyh30bF.js +54 -0
  9. package/dist/assets/formatter-SWP5E3XI-Bj1a9__W.js +156 -0
  10. package/dist/assets/get-draggableData-DhvAHrT5.js +2 -0
  11. package/dist/assets/iframe-BurE_SJm.js +8 -0
  12. package/dist/assets/index-B7LTuyD5.js +1 -0
  13. package/dist/assets/index-BXzfdmYx.js +24 -0
  14. package/dist/assets/index-CZvFZgOq.js +9 -0
  15. package/dist/assets/index-D3eZ-H7s.js +1 -0
  16. package/dist/assets/index-DrFu-skq.js +6 -0
  17. package/dist/assets/index-uubelm5h.js +9 -0
  18. package/dist/assets/isPlainObject-DdO3KXLu.js +1 -0
  19. package/dist/assets/legend-BWpTckOL.js +278 -0
  20. package/dist/assets/legend-context-BAQplG-D.js +71 -0
  21. package/dist/assets/line-chart-L0zq38Nj.js +1 -0
  22. package/dist/assets/line-chart.stories-CurD8upE.js +1130 -0
  23. package/dist/assets/{line-chart.test-case.stories-DgfMW1VB.js → line-chart.test-case.stories-Cq5J45Io.js} +2 -2
  24. package/dist/assets/pie-chart.stories-Duex2I6n.js +45 -0
  25. package/dist/assets/preview-BBDnT5_b.js +30 -0
  26. package/dist/assets/preview-D4u66u8a.js +2 -0
  27. package/dist/assets/preview-FHoZfaOb.js +17 -0
  28. package/dist/assets/react-18-Xi5cNDBV.js +1 -0
  29. package/dist/assets/scatter-chart.stories-D0618GGr.js +41 -0
  30. package/dist/assets/syntaxhighlighter-MJWPISIS-Bmhn3z6A.js +1 -0
  31. package/dist/bar-chart/bar-chart-const.d.ts +2 -0
  32. package/dist/bar-chart/bar-chart-default-props.d.ts +2 -0
  33. package/dist/bar-chart/bar-chart.d.ts +3 -0
  34. package/dist/bar-chart/bar-chart.interface.d.ts +96 -0
  35. package/dist/bar-chart/bar-chart.stories.d.ts +807 -0
  36. package/dist/bar-chart/utils/get-bar-chart-data-labels.d.ts +10 -0
  37. package/dist/bar-chart/utils/get-bar-chart-scales.d.ts +3 -0
  38. package/dist/bar-chart/utils/get-bar-chart-tooltips.d.ts +6 -0
  39. package/dist/bar-chart/utils/use-bar-chart-config.d.ts +13 -0
  40. package/dist/bar-chart/utils/use-bar-chart-options.d.ts +55 -0
  41. package/dist/common/common.interface.d.ts +206 -0
  42. package/dist/common/controls-portal.d.ts +7 -0
  43. package/dist/common/enums.d.ts +10 -0
  44. package/dist/common/helpers/chart-border-plugin.d.ts +16 -0
  45. package/dist/common/helpers/chart-consts.d.ts +39 -0
  46. package/dist/common/helpers/chart-utils.d.ts +84 -0
  47. package/dist/common/helpers/container.d.ts +18 -0
  48. package/dist/common/helpers/custom-format-number.d.ts +1 -0
  49. package/dist/common/helpers/download-pgn.d.ts +4 -0
  50. package/dist/common/helpers/enums.d.ts +80 -0
  51. package/dist/common/helpers/get-chart-annotation.d.ts +90 -0
  52. package/dist/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
  53. package/dist/common/helpers/get-draggableData.d.ts +18 -0
  54. package/dist/common/helpers/range/estimate-close-values.test.d.ts +1 -0
  55. package/dist/common/helpers/range/estimate-data-series-have-close-values.d.ts +8 -0
  56. package/dist/common/helpers/range/range.d.ts +33 -0
  57. package/dist/common/helpers/range/range.test.d.ts +1 -0
  58. package/dist/common/helpers/text.d.ts +1 -0
  59. package/dist/common/helpers/to-annotation.d.ts +4 -0
  60. package/dist/common/hooks/use-generated-labels.d.ts +4 -0
  61. package/dist/common/hooks/use-legend-state.d.ts +28 -0
  62. package/dist/common/hooks/use-legend.d.ts +4 -0
  63. package/dist/common/hooks/use-reset.d.ts +3 -0
  64. package/dist/common/legend-component/legend-dropzone.d.ts +3 -0
  65. package/dist/common/legend-component/legend-interface.d.ts +48 -0
  66. package/dist/common/legend-component/legend-item/LegendItemLine.d.ts +5 -0
  67. package/dist/common/legend-component/legend-item/legend-item.d.ts +3 -0
  68. package/dist/common/legend-component/legend-panel.d.ts +3 -0
  69. package/dist/common/legend-component/legend.d.ts +3 -0
  70. package/dist/common/legend-component/state/legend-action-types.d.ts +2 -0
  71. package/dist/common/legend-component/state/legend-context.d.ts +12 -0
  72. package/dist/common/legend-component/state/legend-state-reducer.d.ts +26 -0
  73. package/dist/common/legend-component/utils/create-style-object.d.ts +27 -0
  74. package/dist/common/legend-component/utils/get-generated-labels.d.ts +2 -0
  75. package/dist/common/plugins/annotation-dragger-plugin/annotation-dragger-plugin.d.ts +15 -0
  76. package/dist/common/plugins/annotation-dragger-plugin/enums.d.ts +20 -0
  77. package/dist/common/plugins/annotation-dragger-plugin/event-helpers.d.ts +6 -0
  78. package/dist/common/plugins/annotation-dragger-plugin/helpers.d.ts +53 -0
  79. package/dist/common/plugins/annotation-dragger-plugin/helpers.test.d.ts +1 -0
  80. package/dist/common/plugins/annotation-dragger-plugin/point-annotation-label.d.ts +5 -0
  81. package/dist/common/plugins/gradient-background-plugin/enums.d.ts +10 -0
  82. package/dist/common/plugins/gradient-background-plugin/gradient-background-plugin.d.ts +2 -0
  83. package/dist/favicon.svg +7 -1
  84. package/dist/iframe.html +51 -259
  85. package/dist/index.d.ts +1 -8
  86. package/dist/index.html +30 -80
  87. package/dist/index.json +1 -1
  88. package/dist/line-chart/__tests__/test-data/app-test-case-1.json.d.ts +8733 -0
  89. package/dist/line-chart/__tests__/test-data/app-test-case-2.json.d.ts +11614 -0
  90. package/dist/line-chart/__tests__/test-data/app-test-case-3.json.d.ts +34 -0
  91. package/dist/line-chart/__tests__/test-data/app-test-case-4.json.d.ts +411 -0
  92. package/dist/line-chart/__tests__/test-data/app-test-case-5.json.d.ts +2734 -0
  93. package/dist/line-chart/__tests__/test-data/app-test-case-6.json.d.ts +2236 -0
  94. package/dist/line-chart/constants/default-translations.d.ts +25 -0
  95. package/dist/line-chart/constants/line-chart-consts.d.ts +13 -0
  96. package/dist/line-chart/controls/axes-options/action-types.d.ts +5 -0
  97. package/dist/line-chart/controls/axes-options/axes-options-form-state.d.ts +23 -0
  98. package/dist/line-chart/controls/axes-options/axes-options-form-state.test.d.ts +1 -0
  99. package/dist/line-chart/controls/axes-options/axes-options-interfaces.d.ts +54 -0
  100. package/dist/line-chart/controls/axes-options/axes-options.d.ts +6 -0
  101. package/dist/line-chart/controls/controls-interfaces.d.ts +20 -0
  102. package/dist/line-chart/controls/controls.d.ts +6 -0
  103. package/dist/line-chart/controls/drag-options-interfaces.d.ts +14 -0
  104. package/dist/line-chart/controls/drag-options.d.ts +23 -0
  105. package/dist/line-chart/controls/line-options.d.ts +19 -0
  106. package/dist/line-chart/hooks/use-chart-functions.d.ts +32 -0
  107. package/dist/line-chart/hooks/use-chart-options.d.ts +16 -0
  108. package/dist/line-chart/hooks/use-chart-plugins.d.ts +7 -0
  109. package/dist/line-chart/hooks/use-chart-state.d.ts +17 -0
  110. package/dist/line-chart/hooks/use-toggle-handler.d.ts +12 -0
  111. package/dist/line-chart/initialize/config.d.ts +12 -0
  112. package/dist/line-chart/initialize/initialize-line-chart.d.ts +12 -0
  113. package/dist/line-chart/initialize/initialize-line-chart.test.d.ts +1 -0
  114. package/dist/line-chart/line-chart-get-default-props.d.ts +2 -0
  115. package/dist/line-chart/line-chart.d.ts +3 -0
  116. package/dist/line-chart/line-chart.interface.d.ts +146 -0
  117. package/dist/line-chart/line-chart.stories.d.ts +1729 -0
  118. package/dist/line-chart/line-chart.test-case.stories.d.ts +29 -0
  119. package/dist/line-chart/plugins/chart-area-text-plugin.d.ts +17 -0
  120. package/dist/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +8 -0
  121. package/dist/line-chart/plugins/line-chart.minor-gridlines-plugin.test.d.ts +1 -0
  122. package/dist/line-chart/plugins/plugin-constants.d.ts +11 -0
  123. package/dist/line-chart/plugins/plugins.interface.d.ts +9 -0
  124. package/dist/line-chart/state/action-types.d.ts +12 -0
  125. package/dist/line-chart/state/initial-state.d.ts +14 -0
  126. package/dist/line-chart/state/line-chart-reducer.d.ts +2 -0
  127. package/dist/line-chart/state/manage-state-in-local-storage.d.ts +15 -0
  128. package/dist/line-chart/state/state.interfaces.d.ts +34 -0
  129. package/dist/line-chart/utils/__tests__/get-annotations-data.test.d.ts +1 -0
  130. package/dist/line-chart/utils/__tests__/get-axes-data-from-metasets.test.d.ts +1 -0
  131. package/dist/line-chart/utils/__tests__/get-axes-type-from-key.test.d.ts +1 -0
  132. package/dist/line-chart/utils/__tests__/get-axis-range-by-type.test.d.ts +1 -0
  133. package/dist/line-chart/utils/__tests__/get-line-chart-tooltips.test.d.ts +1 -0
  134. package/dist/line-chart/utils/axis-formatting/axis-formatting.d.ts +2 -0
  135. package/dist/line-chart/utils/axis-formatting/axis-formatting.test.d.ts +1 -0
  136. package/dist/line-chart/utils/axis-scales/axis-scales.d.ts +11 -0
  137. package/dist/line-chart/utils/axis-scales/axis-scales.test.d.ts +1 -0
  138. package/dist/line-chart/utils/check-custom-option/check-custom-option.d.ts +12 -0
  139. package/dist/line-chart/utils/check-custom-option/check-custom-option.test.d.ts +1 -0
  140. package/dist/line-chart/utils/datalabels-alignment/__tests__/get-alignment-condition.test.d.ts +1 -0
  141. package/dist/line-chart/utils/datalabels-alignment/__tests__/get-alignment-data.test.d.ts +1 -0
  142. package/dist/line-chart/utils/datalabels-alignment/__tests__/get-datalabels-position.test.d.ts +1 -0
  143. package/dist/line-chart/utils/datalabels-alignment/datalabels-alignment.interface.d.ts +20 -0
  144. package/dist/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +8 -0
  145. package/dist/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
  146. package/dist/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +6 -0
  147. package/dist/line-chart/utils/enums.d.ts +4 -0
  148. package/dist/line-chart/utils/generate-line-chart-datasets.d.ts +8 -0
  149. package/dist/line-chart/utils/get-annotations-data.d.ts +1 -0
  150. package/dist/line-chart/utils/get-axes-data-from-metasets.d.ts +1 -0
  151. package/dist/line-chart/utils/get-axes-ranges-from-chart.d.ts +9 -0
  152. package/dist/line-chart/utils/get-axis-range-by-type.d.ts +10 -0
  153. package/dist/line-chart/utils/get-generated-labels.d.ts +2 -0
  154. package/dist/line-chart/utils/get-line-chart-data-labels.d.ts +19 -0
  155. package/dist/line-chart/utils/get-line-chart-scales.d.ts +4 -0
  156. package/dist/line-chart/utils/get-line-chart-tooltips.d.ts +20 -0
  157. package/dist/line-chart/utils/line-chart-utils.d.ts +32 -0
  158. package/dist/line-chart/utils/translations/get-translations.d.ts +8 -0
  159. package/dist/line-chart/utils/translations/get-translations.test.d.ts +1 -0
  160. package/dist/pie-chart/pie-chart-defalut-props.interface.d.ts +50 -0
  161. package/dist/pie-chart/pie-chart-get-default-props.d.ts +3 -0
  162. package/dist/pie-chart/pie-chart.d.ts +3 -0
  163. package/dist/pie-chart/pie-chart.interface.d.ts +70 -0
  164. package/dist/pie-chart/pie-chart.stories.d.ts +263 -0
  165. package/dist/pie-chart/use-pie-chart-config.d.ts +41 -0
  166. package/dist/project.json +1 -1
  167. package/dist/sb-addons/actions-0/manager-bundle.js +3 -0
  168. package/dist/sb-addons/actions-0/manager-bundle.js.LEGAL.txt +0 -0
  169. package/dist/sb-addons/storybook-dark-mode-esm-preset-1/manager-bundle.js +5 -0
  170. package/dist/sb-addons/storybook-dark-mode-esm-preset-1/manager-bundle.js.LEGAL.txt +0 -0
  171. package/dist/sb-common-assets/fonts.css +31 -0
  172. package/dist/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +1 -0
  173. package/dist/sb-manager/chunk-5QAFKPS7.js +7 -0
  174. package/dist/sb-manager/chunk-7PRFHFSS.js +9 -0
  175. package/dist/sb-manager/chunk-XE6LDGTE.js +406 -0
  176. package/dist/sb-manager/chunk-YDUB7CS6.js +348 -0
  177. package/dist/sb-manager/chunk-ZEU7PDD3.js +1 -0
  178. package/dist/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
  179. package/dist/sb-manager/globals-module-info.js +1 -1051
  180. package/dist/sb-manager/globals.js +1 -48
  181. package/dist/sb-manager/index.js +1 -0
  182. package/dist/sb-manager/runtime.js +1 -12048
  183. package/dist/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +1 -0
  184. package/dist/sb-preview/globals.js +1 -0
  185. package/dist/sb-preview/runtime.js +112 -0
  186. package/dist/scatter-chart/hooks/use-scatter-chart-config.d.ts +113 -0
  187. package/dist/scatter-chart/scatter-chart-default-props.interface.d.ts +71 -0
  188. package/dist/scatter-chart/scatter-chart-get-default-props.d.ts +3 -0
  189. package/dist/scatter-chart/scatter-chart.d.ts +3 -0
  190. package/dist/scatter-chart/scatter-chart.interface.d.ts +81 -0
  191. package/dist/scatter-chart/scatter-chart.stories.d.ts +279 -0
  192. package/dist/scatter-chart/utils/get-scales-config.d.ts +49 -0
  193. package/dist/scatter-chart/utils/get-tooltip-config.d.ts +21 -0
  194. package/dist/src/components/bar-chart/bar-chart-const.d.ts +2 -0
  195. package/dist/src/components/bar-chart/bar-chart-default-props.d.ts +2 -0
  196. package/dist/src/components/bar-chart/bar-chart.d.ts +3 -0
  197. package/dist/src/components/bar-chart/bar-chart.interface.d.ts +96 -0
  198. package/dist/src/components/bar-chart/utils/get-bar-chart-data-labels.d.ts +10 -0
  199. package/dist/src/components/bar-chart/utils/get-bar-chart-scales.d.ts +3 -0
  200. package/dist/src/components/bar-chart/utils/get-bar-chart-tooltips.d.ts +6 -0
  201. package/dist/src/components/bar-chart/utils/use-bar-chart-config.d.ts +13 -0
  202. package/dist/src/components/bar-chart/utils/use-bar-chart-options.d.ts +55 -0
  203. package/dist/src/components/common/common.interface.d.ts +206 -0
  204. package/dist/src/components/common/controls-portal.d.ts +7 -0
  205. package/dist/src/components/common/enums.d.ts +10 -0
  206. package/dist/src/components/common/helpers/chart-border-plugin.d.ts +16 -0
  207. package/dist/src/components/common/helpers/chart-consts.d.ts +39 -0
  208. package/dist/src/components/common/helpers/chart-utils.d.ts +84 -0
  209. package/dist/src/components/common/helpers/container.d.ts +18 -0
  210. package/dist/src/components/common/helpers/custom-format-number.d.ts +1 -0
  211. package/dist/src/components/common/helpers/download-pgn.d.ts +4 -0
  212. package/dist/src/components/common/helpers/enums.d.ts +80 -0
  213. package/dist/src/components/common/helpers/get-chart-annotation.d.ts +90 -0
  214. package/dist/src/components/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
  215. package/dist/src/components/common/helpers/get-draggableData.d.ts +18 -0
  216. package/dist/src/components/common/helpers/range/estimate-data-series-have-close-values.d.ts +8 -0
  217. package/dist/src/components/common/helpers/range/range.d.ts +33 -0
  218. package/dist/src/components/common/helpers/text.d.ts +1 -0
  219. package/dist/src/components/common/helpers/to-annotation.d.ts +4 -0
  220. package/dist/src/components/common/hooks/use-generated-labels.d.ts +4 -0
  221. package/dist/src/components/common/hooks/use-legend-state.d.ts +28 -0
  222. package/dist/src/components/common/hooks/use-legend.d.ts +4 -0
  223. package/dist/src/components/common/hooks/use-reset.d.ts +3 -0
  224. package/dist/src/components/common/legend-component/legend-dropzone.d.ts +3 -0
  225. package/dist/src/components/common/legend-component/legend-interface.d.ts +48 -0
  226. package/dist/src/components/common/legend-component/legend-item/LegendItemLine.d.ts +5 -0
  227. package/dist/src/components/common/legend-component/legend-item/legend-item.d.ts +3 -0
  228. package/dist/src/components/common/legend-component/legend-panel.d.ts +3 -0
  229. package/dist/src/components/common/legend-component/legend.d.ts +3 -0
  230. package/dist/src/components/common/legend-component/state/legend-action-types.d.ts +2 -0
  231. package/dist/src/components/common/legend-component/state/legend-context.d.ts +12 -0
  232. package/dist/src/components/common/legend-component/state/legend-state-reducer.d.ts +26 -0
  233. package/dist/src/components/common/legend-component/utils/create-style-object.d.ts +27 -0
  234. package/dist/src/components/common/legend-component/utils/get-generated-labels.d.ts +2 -0
  235. package/dist/src/components/common/plugins/annotation-dragger-plugin/annotation-dragger-plugin.d.ts +15 -0
  236. package/dist/src/components/common/plugins/annotation-dragger-plugin/enums.d.ts +20 -0
  237. package/dist/src/components/common/plugins/annotation-dragger-plugin/event-helpers.d.ts +6 -0
  238. package/dist/src/components/common/plugins/annotation-dragger-plugin/helpers.d.ts +53 -0
  239. package/dist/src/components/common/plugins/annotation-dragger-plugin/point-annotation-label.d.ts +5 -0
  240. package/dist/src/components/common/plugins/gradient-background-plugin/enums.d.ts +10 -0
  241. package/dist/src/components/common/plugins/gradient-background-plugin/gradient-background-plugin.d.ts +2 -0
  242. package/dist/src/components/line-chart/constants/default-translations.d.ts +25 -0
  243. package/dist/src/components/line-chart/constants/line-chart-consts.d.ts +13 -0
  244. package/dist/src/components/line-chart/controls/axes-options/action-types.d.ts +5 -0
  245. package/dist/src/components/line-chart/controls/axes-options/axes-options-form-state.d.ts +23 -0
  246. package/dist/src/components/line-chart/controls/axes-options/axes-options-interfaces.d.ts +54 -0
  247. package/dist/src/components/line-chart/controls/axes-options/axes-options.d.ts +6 -0
  248. package/dist/src/components/line-chart/controls/controls-interfaces.d.ts +20 -0
  249. package/dist/src/components/line-chart/controls/controls.d.ts +6 -0
  250. package/dist/src/components/line-chart/controls/drag-options-interfaces.d.ts +14 -0
  251. package/dist/src/components/line-chart/controls/drag-options.d.ts +23 -0
  252. package/dist/src/components/line-chart/controls/line-options.d.ts +19 -0
  253. package/dist/src/components/line-chart/hooks/use-chart-functions.d.ts +32 -0
  254. package/dist/src/components/line-chart/hooks/use-chart-options.d.ts +16 -0
  255. package/dist/src/components/line-chart/hooks/use-chart-plugins.d.ts +7 -0
  256. package/dist/src/components/line-chart/hooks/use-chart-state.d.ts +17 -0
  257. package/dist/src/components/line-chart/hooks/use-toggle-handler.d.ts +12 -0
  258. package/dist/src/components/line-chart/initialize/config.d.ts +12 -0
  259. package/dist/src/components/line-chart/initialize/initialize-line-chart.d.ts +12 -0
  260. package/dist/src/components/line-chart/line-chart-get-default-props.d.ts +2 -0
  261. package/dist/src/components/line-chart/line-chart.d.ts +3 -0
  262. package/dist/src/components/line-chart/line-chart.interface.d.ts +146 -0
  263. package/dist/src/components/line-chart/plugins/chart-area-text-plugin.d.ts +17 -0
  264. package/dist/src/components/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +8 -0
  265. package/dist/src/components/line-chart/plugins/plugin-constants.d.ts +11 -0
  266. package/dist/src/components/line-chart/plugins/plugins.interface.d.ts +9 -0
  267. package/dist/src/components/line-chart/state/action-types.d.ts +12 -0
  268. package/dist/src/components/line-chart/state/initial-state.d.ts +14 -0
  269. package/dist/src/components/line-chart/state/line-chart-reducer.d.ts +2 -0
  270. package/dist/src/components/line-chart/state/manage-state-in-local-storage.d.ts +15 -0
  271. package/dist/src/components/line-chart/state/state.interfaces.d.ts +34 -0
  272. package/dist/src/components/line-chart/utils/axis-formatting/axis-formatting.d.ts +2 -0
  273. package/dist/src/components/line-chart/utils/axis-scales/axis-scales.d.ts +11 -0
  274. package/dist/src/components/line-chart/utils/check-custom-option/check-custom-option.d.ts +12 -0
  275. package/dist/src/components/line-chart/utils/datalabels-alignment/datalabels-alignment.interface.d.ts +20 -0
  276. package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +8 -0
  277. package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
  278. package/dist/src/components/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +6 -0
  279. package/dist/src/components/line-chart/utils/enums.d.ts +4 -0
  280. package/dist/src/components/line-chart/utils/generate-line-chart-datasets.d.ts +8 -0
  281. package/dist/src/components/line-chart/utils/get-annotations-data.d.ts +1 -0
  282. package/dist/src/components/line-chart/utils/get-axes-data-from-metasets.d.ts +1 -0
  283. package/dist/src/components/line-chart/utils/get-axes-ranges-from-chart.d.ts +9 -0
  284. package/dist/src/components/line-chart/utils/get-axis-range-by-type.d.ts +10 -0
  285. package/dist/src/components/line-chart/utils/get-generated-labels.d.ts +2 -0
  286. package/dist/src/components/line-chart/utils/get-line-chart-data-labels.d.ts +19 -0
  287. package/dist/src/components/line-chart/utils/get-line-chart-scales.d.ts +4 -0
  288. package/dist/src/components/line-chart/utils/get-line-chart-tooltips.d.ts +20 -0
  289. package/dist/src/components/line-chart/utils/line-chart-utils.d.ts +32 -0
  290. package/dist/src/components/line-chart/utils/translations/get-translations.d.ts +8 -0
  291. package/dist/src/components/pie-chart/pie-chart-defalut-props.interface.d.ts +50 -0
  292. package/dist/src/components/pie-chart/pie-chart-get-default-props.d.ts +3 -0
  293. package/dist/src/components/pie-chart/pie-chart.d.ts +3 -0
  294. package/dist/src/components/pie-chart/pie-chart.interface.d.ts +70 -0
  295. package/dist/src/components/pie-chart/use-pie-chart-config.d.ts +41 -0
  296. package/dist/src/components/scatter-chart/hooks/use-scatter-chart-config.d.ts +113 -0
  297. package/dist/src/components/scatter-chart/scatter-chart-default-props.interface.d.ts +71 -0
  298. package/dist/src/components/scatter-chart/scatter-chart-get-default-props.d.ts +3 -0
  299. package/dist/src/components/scatter-chart/scatter-chart.d.ts +3 -0
  300. package/dist/src/components/scatter-chart/scatter-chart.interface.d.ts +81 -0
  301. package/dist/src/components/scatter-chart/utils/get-scales-config.d.ts +49 -0
  302. package/dist/src/components/scatter-chart/utils/get-tooltip-config.d.ts +21 -0
  303. package/dist/stories.json +1 -0
  304. package/package.json +3 -2
  305. package/dist/assets/Color-YHDXOIA2-D6i6tiFz.js +0 -1
  306. package/dist/assets/DocsRenderer-CFRXHY34-D88vu1Xb.js +0 -580
  307. package/dist/assets/client-9BU5HM4U.js +0 -1
  308. package/dist/assets/entry-preview-D2XJoWVM.js +0 -10
  309. package/dist/assets/entry-preview-docs-z3mMcuG4.js +0 -46
  310. package/dist/assets/get-draggableData-DO0Px5pc.js +0 -2
  311. package/dist/assets/iframe-DLnw2TiW.js +0 -217
  312. package/dist/assets/index-B-BONL6g.js +0 -1
  313. package/dist/assets/index-BGqSdrBK.js +0 -1
  314. package/dist/assets/index-CVdx34fM.js +0 -1
  315. package/dist/assets/index-D3-0uUTW.js +0 -24
  316. package/dist/assets/index-Dytf1aFS.js +0 -8
  317. package/dist/assets/index-eCxJ45ll.js +0 -9
  318. package/dist/assets/jsx-runtime-Y5Ju2SGo.js +0 -9
  319. package/dist/assets/legend-BI53UIaI.js +0 -1346
  320. package/dist/assets/legend-context-BNCYpFYh.js +0 -68
  321. package/dist/assets/line-chart-BdFuLh7N.js +0 -1
  322. package/dist/assets/line-chart.stories-BVsiy8CQ.js +0 -1130
  323. package/dist/assets/pie-chart.stories-BVurv17M.js +0 -45
  324. package/dist/assets/preview-CLM2f008.js +0 -2
  325. package/dist/assets/preview-DD_OYowb.js +0 -1
  326. package/dist/assets/preview-XObsormK.js +0 -3
  327. package/dist/assets/react-18-DZY5LW1V.js +0 -1
  328. package/dist/assets/react-CxVRKATl.js +0 -1
  329. package/dist/assets/scatter-chart.stories-DnivHhIH.js +0 -41
  330. package/dist/nunito-sans-bold-italic.woff2 +0 -0
  331. package/dist/nunito-sans-bold.woff2 +0 -0
  332. package/dist/nunito-sans-italic.woff2 +0 -0
  333. package/dist/nunito-sans-regular.woff2 +0 -0
  334. package/dist/sb-addons/actions-1/manager-bundle.js +0 -3
  335. package/dist/sb-addons/docs-2/manager-bundle.js +0 -242
  336. package/dist/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +0 -3
  337. package/dist/sb-addons/storybook-dark-mode-esm-preset-3/manager-bundle.js +0 -5
  338. package/dist/sb-common-assets/favicon.svg +0 -1
  339. package/dist/sb-manager/globals-runtime.js +0 -41591
@@ -0,0 +1,1729 @@
1
+ import { LineChart } from './line-chart';
2
+ declare namespace _default {
3
+ export let title: string;
4
+ export { LineChart as component };
5
+ export namespace args {
6
+ export { basicChart as chart };
7
+ }
8
+ }
9
+ export default _default;
10
+ export function Default(args: any): import("react/jsx-runtime").JSX.Element;
11
+ export function HideDatasetInLegend(args: any): import("react/jsx-runtime").JSX.Element;
12
+ export namespace HideDatasetInLegend {
13
+ export namespace args_1 {
14
+ namespace chart {
15
+ namespace data {
16
+ let datasets: ({
17
+ hideLegend: boolean;
18
+ label: string;
19
+ data: {
20
+ x: number;
21
+ y: number;
22
+ }[];
23
+ } | {
24
+ label: string;
25
+ data: {
26
+ x: number;
27
+ y: number;
28
+ }[];
29
+ })[];
30
+ }
31
+ }
32
+ }
33
+ export { args_1 as args };
34
+ }
35
+ export function OnePoint(args: any): import("react/jsx-runtime").JSX.Element;
36
+ export namespace OnePoint {
37
+ export namespace args_2 {
38
+ export namespace chart_1 {
39
+ export namespace data_1 {
40
+ let datasets_1: {
41
+ label: string;
42
+ data: {
43
+ x: number;
44
+ y: number;
45
+ }[];
46
+ }[];
47
+ export { datasets_1 as datasets };
48
+ }
49
+ export { data_1 as data };
50
+ }
51
+ export { chart_1 as chart };
52
+ }
53
+ export { args_2 as args };
54
+ }
55
+ export function PointStyles(args: any): import("react/jsx-runtime").JSX.Element;
56
+ export namespace PointStyles {
57
+ export namespace args_3 {
58
+ export namespace chart_2 {
59
+ export namespace data_2 {
60
+ let datasets_2: {
61
+ label: string;
62
+ pointStyle: string;
63
+ pointRadius: number;
64
+ pointHoverRadius: number;
65
+ data: {
66
+ x: number;
67
+ y: number;
68
+ }[];
69
+ }[];
70
+ export { datasets_2 as datasets };
71
+ }
72
+ export { data_2 as data };
73
+ export namespace options {
74
+ let title_1: string;
75
+ export { title_1 as title };
76
+ export namespace chartStyling {
77
+ let height: number;
78
+ }
79
+ }
80
+ }
81
+ export { chart_2 as chart };
82
+ }
83
+ export { args_3 as args };
84
+ }
85
+ export function LineStyles(args: any): import("react/jsx-runtime").JSX.Element;
86
+ export namespace LineStyles {
87
+ export namespace args_4 {
88
+ export namespace chart_3 {
89
+ export namespace data_3 {
90
+ let datasets_3: {
91
+ borderDash: number[];
92
+ label: string;
93
+ data: {
94
+ x: number;
95
+ y: number;
96
+ }[];
97
+ }[];
98
+ export { datasets_3 as datasets };
99
+ }
100
+ export { data_3 as data };
101
+ export namespace options_1 {
102
+ namespace legend {
103
+ let usePointStyle: boolean;
104
+ }
105
+ }
106
+ export { options_1 as options };
107
+ }
108
+ export { chart_3 as chart };
109
+ }
110
+ export { args_4 as args };
111
+ }
112
+ export function FillContainer(args: any): import("react/jsx-runtime").JSX.Element;
113
+ export namespace FillContainer {
114
+ export namespace args_5 {
115
+ export namespace chart_4 {
116
+ export namespace options_2 {
117
+ export namespace chartStyling_1 {
118
+ let height_1: string;
119
+ export { height_1 as height };
120
+ }
121
+ export { chartStyling_1 as chartStyling };
122
+ }
123
+ export { options_2 as options };
124
+ export namespace data_4 {
125
+ let datasets_4: {
126
+ label: string;
127
+ data: {
128
+ x: number;
129
+ y: number;
130
+ }[];
131
+ }[];
132
+ export { datasets_4 as datasets };
133
+ }
134
+ export { data_4 as data };
135
+ }
136
+ export { chart_4 as chart };
137
+ }
138
+ export { args_5 as args };
139
+ export let decorators: ((Story: any) => import("react/jsx-runtime").JSX.Element)[];
140
+ }
141
+ export function AutoAxisPadding(args: any): import("react/jsx-runtime").JSX.Element;
142
+ export namespace AutoAxisPadding {
143
+ export namespace args_6 {
144
+ export namespace chart_5 {
145
+ export namespace data_5 {
146
+ let datasets_5: {
147
+ label: string;
148
+ data: {
149
+ x: number;
150
+ y: number;
151
+ }[];
152
+ }[];
153
+ export { datasets_5 as datasets };
154
+ }
155
+ export { data_5 as data };
156
+ export namespace options_3 {
157
+ let title_2: string;
158
+ export { title_2 as title };
159
+ export namespace additionalAxesOptions {
160
+ let autoAxisPadding: boolean;
161
+ }
162
+ }
163
+ export { options_3 as options };
164
+ }
165
+ export { chart_5 as chart };
166
+ }
167
+ export { args_6 as args };
168
+ }
169
+ export function NoTitle(args: any): import("react/jsx-runtime").JSX.Element;
170
+ export namespace NoTitle {
171
+ export namespace args_7 {
172
+ export namespace chart_6 {
173
+ export namespace options_4 {
174
+ let title_3: undefined;
175
+ export { title_3 as title };
176
+ }
177
+ export { options_4 as options };
178
+ }
179
+ export { chart_6 as chart };
180
+ }
181
+ export { args_7 as args };
182
+ }
183
+ export function DataGaps(args: any): import("react/jsx-runtime").JSX.Element;
184
+ export namespace DataGaps {
185
+ export namespace args_8 {
186
+ export namespace chart_7 {
187
+ export namespace data_6 {
188
+ let datasets_6: {
189
+ label: string;
190
+ data: ({
191
+ x: number;
192
+ y: number;
193
+ } | {
194
+ x: null;
195
+ y: number;
196
+ } | null | undefined)[];
197
+ }[];
198
+ export { datasets_6 as datasets };
199
+ }
200
+ export { data_6 as data };
201
+ }
202
+ export { chart_7 as chart };
203
+ }
204
+ export { args_8 as args };
205
+ }
206
+ export function TooltipUnits(args: any): import("react/jsx-runtime").JSX.Element;
207
+ export namespace TooltipUnits {
208
+ export namespace args_9 {
209
+ export namespace chart_8 {
210
+ export namespace options_5 {
211
+ namespace axes {
212
+ let x: {
213
+ label: string;
214
+ }[];
215
+ let y: {
216
+ label: string;
217
+ }[];
218
+ }
219
+ }
220
+ export { options_5 as options };
221
+ }
222
+ export { chart_8 as chart };
223
+ }
224
+ export { args_9 as args };
225
+ }
226
+ export function MinorGridlines(args: any): import("react/jsx-runtime").JSX.Element;
227
+ export namespace MinorGridlines {
228
+ export namespace args_10 {
229
+ export namespace chart_9 {
230
+ export namespace options_6 {
231
+ namespace graph {
232
+ let showMinorGridlines: boolean;
233
+ }
234
+ }
235
+ export { options_6 as options };
236
+ }
237
+ export { chart_9 as chart };
238
+ }
239
+ export { args_10 as args };
240
+ }
241
+ export function AxesLabels(args: any): import("react/jsx-runtime").JSX.Element;
242
+ export namespace AxesLabels {
243
+ export namespace args_11 {
244
+ export namespace chart_10 {
245
+ export namespace options_7 {
246
+ export namespace axes_1 {
247
+ let x_1: {
248
+ label: string;
249
+ }[];
250
+ export { x_1 as x };
251
+ let y_1: {
252
+ label: string;
253
+ }[];
254
+ export { y_1 as y };
255
+ }
256
+ export { axes_1 as axes };
257
+ }
258
+ export { options_7 as options };
259
+ }
260
+ export { chart_10 as chart };
261
+ }
262
+ export { args_11 as args };
263
+ }
264
+ export function MultipleYAxes(args: any): import("react/jsx-runtime").JSX.Element;
265
+ export namespace MultipleYAxes {
266
+ export namespace args_12 {
267
+ export namespace chart_11 {
268
+ export namespace data_7 {
269
+ let datasets_7: ({
270
+ label: string;
271
+ data: {
272
+ x: number;
273
+ y: number;
274
+ }[];
275
+ yAxisID?: undefined;
276
+ } | {
277
+ label: string;
278
+ data: {
279
+ x: number;
280
+ y: number;
281
+ }[];
282
+ yAxisID: string;
283
+ })[];
284
+ export { datasets_7 as datasets };
285
+ }
286
+ export { data_7 as data };
287
+ export namespace options_8 {
288
+ let title_4: string;
289
+ export { title_4 as title };
290
+ export namespace additionalAxesOptions_1 {
291
+ namespace range {
292
+ export namespace x_2 {
293
+ let min: number;
294
+ let max: number;
295
+ }
296
+ export { x_2 as x };
297
+ export namespace y_2 {
298
+ let min_1: number;
299
+ export { min_1 as min };
300
+ let max_1: number;
301
+ export { max_1 as max };
302
+ }
303
+ export { y_2 as y };
304
+ export namespace y2 {
305
+ let min_2: number;
306
+ export { min_2 as min };
307
+ let max_2: number;
308
+ export { max_2 as max };
309
+ }
310
+ }
311
+ }
312
+ export { additionalAxesOptions_1 as additionalAxesOptions };
313
+ export namespace chartStyling_2 {
314
+ let height_2: number;
315
+ export { height_2 as height };
316
+ }
317
+ export { chartStyling_2 as chartStyling };
318
+ export namespace axes_2 {
319
+ let x_3: {
320
+ label: string;
321
+ }[];
322
+ export { x_3 as x };
323
+ let y_3: {
324
+ label: string;
325
+ position: string;
326
+ }[];
327
+ export { y_3 as y };
328
+ }
329
+ export { axes_2 as axes };
330
+ }
331
+ export { options_8 as options };
332
+ }
333
+ export { chart_11 as chart };
334
+ }
335
+ export { args_12 as args };
336
+ }
337
+ export function MultipleXAxes(args: any): import("react/jsx-runtime").JSX.Element;
338
+ export namespace MultipleXAxes {
339
+ export namespace args_13 {
340
+ export namespace chart_12 {
341
+ export namespace data_8 {
342
+ let datasets_8: ({
343
+ label: string;
344
+ data: {
345
+ x: number;
346
+ y: number;
347
+ }[];
348
+ } | {
349
+ xAxisID: string;
350
+ label: string;
351
+ data: {
352
+ x: number;
353
+ y: number;
354
+ }[];
355
+ })[];
356
+ export { datasets_8 as datasets };
357
+ }
358
+ export { data_8 as data };
359
+ export namespace options_9 {
360
+ let title_5: string;
361
+ export { title_5 as title };
362
+ export namespace chartStyling_3 {
363
+ let height_3: number;
364
+ export { height_3 as height };
365
+ }
366
+ export { chartStyling_3 as chartStyling };
367
+ export namespace axes_3 {
368
+ let x_4: {
369
+ label: string;
370
+ position: string;
371
+ }[];
372
+ export { x_4 as x };
373
+ }
374
+ export { axes_3 as axes };
375
+ }
376
+ export { options_9 as options };
377
+ }
378
+ export { chart_12 as chart };
379
+ }
380
+ export { args_13 as args };
381
+ }
382
+ export function ReversedYAxis(args: any): import("react/jsx-runtime").JSX.Element;
383
+ export namespace ReversedYAxis {
384
+ export namespace args_14 {
385
+ export namespace chart_13 {
386
+ export namespace options_10 {
387
+ export namespace additionalAxesOptions_2 {
388
+ let reverse: boolean;
389
+ }
390
+ export { additionalAxesOptions_2 as additionalAxesOptions };
391
+ }
392
+ export { options_10 as options };
393
+ }
394
+ export { chart_13 as chart };
395
+ }
396
+ export { args_14 as args };
397
+ }
398
+ export function LogarithmicScale(args: any): import("react/jsx-runtime").JSX.Element;
399
+ export namespace LogarithmicScale {
400
+ export namespace args_15 {
401
+ export namespace chart_14 {
402
+ export namespace options_11 {
403
+ export namespace additionalAxesOptions_3 {
404
+ let chartScaleType: string;
405
+ }
406
+ export { additionalAxesOptions_3 as additionalAxesOptions };
407
+ }
408
+ export { options_11 as options };
409
+ }
410
+ export { chart_14 as chart };
411
+ }
412
+ export { args_15 as args };
413
+ }
414
+ export function PresetRange(args: any): import("react/jsx-runtime").JSX.Element;
415
+ export namespace PresetRange {
416
+ export namespace args_16 {
417
+ export namespace chart_15 {
418
+ export namespace options_12 {
419
+ export namespace additionalAxesOptions_4 {
420
+ export namespace range_1 {
421
+ export namespace x_5 {
422
+ let min_3: number;
423
+ export { min_3 as min };
424
+ let max_3: number;
425
+ export { max_3 as max };
426
+ }
427
+ export { x_5 as x };
428
+ export namespace y_4 {
429
+ let min_4: number;
430
+ export { min_4 as min };
431
+ let max_4: number;
432
+ export { max_4 as max };
433
+ }
434
+ export { y_4 as y };
435
+ }
436
+ export { range_1 as range };
437
+ }
438
+ export { additionalAxesOptions_4 as additionalAxesOptions };
439
+ }
440
+ export { options_12 as options };
441
+ }
442
+ export { chart_15 as chart };
443
+ }
444
+ export { args_16 as args };
445
+ }
446
+ export function DataLabels(args: any): import("react/jsx-runtime").JSX.Element;
447
+ export namespace DataLabels {
448
+ export namespace args_17 {
449
+ export namespace chart_16 {
450
+ export namespace data_9 {
451
+ let datasets_9: {
452
+ data: {
453
+ label: string[];
454
+ x: number;
455
+ y: number;
456
+ }[];
457
+ label: string;
458
+ }[];
459
+ export { datasets_9 as datasets };
460
+ }
461
+ export { data_9 as data };
462
+ export namespace options_13 {
463
+ export namespace graph_1 {
464
+ let showDataLabels: boolean;
465
+ }
466
+ export { graph_1 as graph };
467
+ }
468
+ export { options_13 as options };
469
+ }
470
+ export { chart_16 as chart };
471
+ }
472
+ export { args_17 as args };
473
+ }
474
+ export function DataLabelsInTooltips(args: any): import("react/jsx-runtime").JSX.Element;
475
+ export namespace DataLabelsInTooltips {
476
+ export namespace args_18 {
477
+ export namespace chart_17 {
478
+ export namespace data_10 {
479
+ let datasets_10: {
480
+ data: {
481
+ label: string[];
482
+ x: number;
483
+ y: number;
484
+ }[];
485
+ label: string;
486
+ }[];
487
+ export { datasets_10 as datasets };
488
+ }
489
+ export { data_10 as data };
490
+ export namespace options_14 {
491
+ namespace tooltip {
492
+ let showLabelsInTooltips: boolean;
493
+ }
494
+ }
495
+ export { options_14 as options };
496
+ }
497
+ export { chart_17 as chart };
498
+ }
499
+ export { args_18 as args };
500
+ }
501
+ export function LegendOnRight(args: any): import("react/jsx-runtime").JSX.Element;
502
+ export namespace LegendOnRight {
503
+ export namespace args_19 {
504
+ export namespace chart_18 {
505
+ export namespace options_15 {
506
+ export namespace legend_1 {
507
+ let position: string;
508
+ }
509
+ export { legend_1 as legend };
510
+ }
511
+ export { options_15 as options };
512
+ }
513
+ export { chart_18 as chart };
514
+ }
515
+ export { args_19 as args };
516
+ }
517
+ export function HideLegend(args: any): import("react/jsx-runtime").JSX.Element;
518
+ export namespace HideLegend {
519
+ export namespace args_20 {
520
+ export namespace chart_19 {
521
+ export namespace options_16 {
522
+ export namespace legend_2 {
523
+ let display: boolean;
524
+ }
525
+ export { legend_2 as legend };
526
+ }
527
+ export { options_16 as options };
528
+ }
529
+ export { chart_19 as chart };
530
+ }
531
+ export { args_20 as args };
532
+ }
533
+ export function Annotations(args: any): import("react/jsx-runtime").JSX.Element;
534
+ export namespace Annotations {
535
+ export namespace args_21 {
536
+ export namespace chart_20 {
537
+ export namespace options_17 {
538
+ export namespace legend_3 {
539
+ let display_1: boolean;
540
+ export { display_1 as display };
541
+ }
542
+ export { legend_3 as legend };
543
+ export namespace annotations {
544
+ let showAnnotations: boolean;
545
+ namespace labelAnnotation {
546
+ let showLabel: boolean;
547
+ let text: string;
548
+ }
549
+ let annotationsData: ({
550
+ annotationAxis: string;
551
+ label: string;
552
+ value: number;
553
+ endValue?: undefined;
554
+ } | {
555
+ annotationAxis: string;
556
+ label: string;
557
+ value: number;
558
+ endValue: number;
559
+ })[];
560
+ }
561
+ }
562
+ export { options_17 as options };
563
+ }
564
+ export { chart_20 as chart };
565
+ }
566
+ export { args_21 as args };
567
+ }
568
+ export function AnnotationsBox(args: any): import("react/jsx-runtime").JSX.Element;
569
+ export namespace AnnotationsBox {
570
+ export namespace args_22 {
571
+ export namespace chart_21 {
572
+ export namespace options_18 {
573
+ export namespace annotations_1 {
574
+ let showAnnotations_1: boolean;
575
+ export { showAnnotations_1 as showAnnotations };
576
+ let annotationsData_1: {
577
+ type: string;
578
+ yMin: number;
579
+ yMax: number;
580
+ color: string;
581
+ adjustScaleRange: boolean;
582
+ label: string;
583
+ }[];
584
+ export { annotationsData_1 as annotationsData };
585
+ }
586
+ export { annotations_1 as annotations };
587
+ }
588
+ export { options_18 as options };
589
+ }
590
+ export { chart_21 as chart };
591
+ }
592
+ export { args_22 as args };
593
+ }
594
+ export function AnnotationsEllipse(args: any): import("react/jsx-runtime").JSX.Element;
595
+ export namespace AnnotationsEllipse {
596
+ export namespace args_23 {
597
+ export namespace chart_22 {
598
+ export namespace options_19 {
599
+ export namespace annotations_2 {
600
+ let showAnnotations_2: boolean;
601
+ export { showAnnotations_2 as showAnnotations };
602
+ let annotationsData_2: {
603
+ type: string;
604
+ xMin: number;
605
+ xMax: number;
606
+ yMin: number;
607
+ yMax: number;
608
+ color: string;
609
+ adjustScaleRange: boolean;
610
+ }[];
611
+ export { annotationsData_2 as annotationsData };
612
+ }
613
+ export { annotations_2 as annotations };
614
+ }
615
+ export { options_19 as options };
616
+ }
617
+ export { chart_22 as chart };
618
+ }
619
+ export { args_23 as args };
620
+ }
621
+ export function AnnotationsPoint(args: any): import("react/jsx-runtime").JSX.Element;
622
+ export namespace AnnotationsPoint {
623
+ export namespace args_24 {
624
+ export namespace chart_23 {
625
+ export namespace options_20 {
626
+ export namespace annotations_3 {
627
+ let showAnnotations_3: boolean;
628
+ export { showAnnotations_3 as showAnnotations };
629
+ let annotationsData_3: {
630
+ type: string;
631
+ xValue: number;
632
+ yValue: number;
633
+ color: string;
634
+ radius: number;
635
+ }[];
636
+ export { annotationsData_3 as annotationsData };
637
+ }
638
+ export { annotations_3 as annotations };
639
+ }
640
+ export { options_20 as options };
641
+ }
642
+ export { chart_23 as chart };
643
+ }
644
+ export { args_24 as args };
645
+ }
646
+ export function AnnotationsInLegend(args: any): import("react/jsx-runtime").JSX.Element;
647
+ export namespace AnnotationsInLegend {
648
+ export namespace args_25 {
649
+ export namespace chart_24 {
650
+ export namespace options_21 {
651
+ export namespace annotations_4 {
652
+ export let controlAnnotation: boolean;
653
+ let showAnnotations_4: boolean;
654
+ export { showAnnotations_4 as showAnnotations };
655
+ let annotationsData_4: ({
656
+ type: string;
657
+ annotationAxis: string;
658
+ label: string;
659
+ value: number;
660
+ xMin?: undefined;
661
+ xMax?: undefined;
662
+ yMin?: undefined;
663
+ yMax?: undefined;
664
+ color?: undefined;
665
+ adjustScaleRange?: undefined;
666
+ } | {
667
+ type: string;
668
+ xMin: number;
669
+ xMax: number;
670
+ yMin: number;
671
+ yMax: number;
672
+ color: string;
673
+ adjustScaleRange: boolean;
674
+ label: string;
675
+ annotationAxis?: undefined;
676
+ value?: undefined;
677
+ } | {
678
+ type: string;
679
+ yMin: number;
680
+ yMax: number;
681
+ color: string;
682
+ adjustScaleRange: boolean;
683
+ label: string;
684
+ annotationAxis?: undefined;
685
+ value?: undefined;
686
+ xMin?: undefined;
687
+ xMax?: undefined;
688
+ })[];
689
+ export { annotationsData_4 as annotationsData };
690
+ }
691
+ export { annotations_4 as annotations };
692
+ }
693
+ export { options_21 as options };
694
+ }
695
+ export { chart_24 as chart };
696
+ }
697
+ export { args_25 as args };
698
+ }
699
+ export function CustomLegend(args: any): import("react/jsx-runtime").JSX.Element;
700
+ export namespace CustomLegend {
701
+ export namespace args_26 {
702
+ export namespace chart_25 {
703
+ export namespace options_22 {
704
+ let title_6: string;
705
+ export { title_6 as title };
706
+ export namespace legend_4 {
707
+ namespace customLegend {
708
+ export let customLegendPlugin: {
709
+ afterUpdate(chart: import("chart.js").Chart, _args: import("chart.js").Plugin, _options: import("chart.js").ChartConfiguration): void;
710
+ };
711
+ export { customLegendContainerID };
712
+ }
713
+ }
714
+ export { legend_4 as legend };
715
+ }
716
+ export { options_22 as options };
717
+ }
718
+ export { chart_25 as chart };
719
+ }
720
+ export { args_26 as args };
721
+ }
722
+ export function Animation(args: any): import("react/jsx-runtime").JSX.Element;
723
+ export namespace Animation {
724
+ export namespace args_27 {
725
+ export namespace chart_26 {
726
+ export namespace options_23 {
727
+ export namespace chartStyling_4 {
728
+ let performanceMode: boolean;
729
+ }
730
+ export { chartStyling_4 as chartStyling };
731
+ }
732
+ export { options_23 as options };
733
+ }
734
+ export { chart_26 as chart };
735
+ }
736
+ export { args_27 as args };
737
+ }
738
+ export function SquareAspectRatio(args: any): import("react/jsx-runtime").JSX.Element;
739
+ export namespace SquareAspectRatio {
740
+ export namespace args_28 {
741
+ export namespace chart_27 {
742
+ export namespace options_24 {
743
+ let title_7: string;
744
+ export { title_7 as title };
745
+ export namespace chartStyling_5 {
746
+ let squareAspectRatio: boolean;
747
+ }
748
+ export { chartStyling_5 as chartStyling };
749
+ }
750
+ export { options_24 as options };
751
+ }
752
+ export { chart_27 as chart };
753
+ }
754
+ export { args_28 as args };
755
+ }
756
+ export function HeaderComponentNoTitle(args: any): import("react/jsx-runtime").JSX.Element;
757
+ export namespace HeaderComponentNoTitle {
758
+ namespace parameters {
759
+ namespace docs {
760
+ namespace description {
761
+ let story: string;
762
+ }
763
+ }
764
+ }
765
+ }
766
+ export function HeaderComponentWithTitle(args: any): import("react/jsx-runtime").JSX.Element;
767
+ export namespace HeaderComponentWithTitle {
768
+ export namespace args_29 {
769
+ export { testComponent as headerComponent };
770
+ }
771
+ export { args_29 as args };
772
+ export namespace parameters_1 {
773
+ export namespace docs_1 {
774
+ export namespace description_1 {
775
+ let story_1: string;
776
+ export { story_1 as story };
777
+ }
778
+ export { description_1 as description };
779
+ }
780
+ export { docs_1 as docs };
781
+ }
782
+ export { parameters_1 as parameters };
783
+ }
784
+ export function SubheaderComponent(): import("react/jsx-runtime").JSX.Element;
785
+ export namespace SubheaderComponent {
786
+ export namespace parameters_2 {
787
+ export namespace docs_2 {
788
+ export namespace description_2 {
789
+ let story_2: string;
790
+ export { story_2 as story };
791
+ }
792
+ export { description_2 as description };
793
+ }
794
+ export { docs_2 as docs };
795
+ }
796
+ export { parameters_2 as parameters };
797
+ }
798
+ export function ControlsPortal(args: any): import("react/jsx-runtime").JSX.Element;
799
+ export function WithTable(args: any): import("react/jsx-runtime").JSX.Element;
800
+ export function SquareAspectRatioFillContainer(args: any): import("react/jsx-runtime").JSX.Element;
801
+ export namespace SquareAspectRatioFillContainer {
802
+ export namespace args_30 {
803
+ export namespace chart_28 {
804
+ export namespace options_25 {
805
+ let title_8: string;
806
+ export { title_8 as title };
807
+ export namespace chartStyling_6 {
808
+ let squareAspectRatio_1: boolean;
809
+ export { squareAspectRatio_1 as squareAspectRatio };
810
+ let height_4: string;
811
+ export { height_4 as height };
812
+ }
813
+ export { chartStyling_6 as chartStyling };
814
+ }
815
+ export { options_25 as options };
816
+ }
817
+ export { chart_28 as chart };
818
+ }
819
+ export { args_30 as args };
820
+ let decorators_1: ((Story: any) => import("react/jsx-runtime").JSX.Element)[];
821
+ export { decorators_1 as decorators };
822
+ }
823
+ export function OnPointHover(args: any): import("react/jsx-runtime").JSX.Element;
824
+ export namespace OnPointHover {
825
+ export namespace args_31 {
826
+ export namespace chart_29 {
827
+ export namespace options_26 {
828
+ namespace interactions {
829
+ function onHover(evt: any, datasetIndex: any, pointIndex: any, datasets: any): void;
830
+ function onUnhover(): void;
831
+ }
832
+ }
833
+ export { options_26 as options };
834
+ }
835
+ export { chart_29 as chart };
836
+ }
837
+ export { args_31 as args };
838
+ }
839
+ export function ZeroValues(args: any): import("react/jsx-runtime").JSX.Element;
840
+ export namespace ZeroValues {
841
+ export namespace args_32 {
842
+ export namespace chart_30 {
843
+ export namespace data_11 {
844
+ let datasets_11: {
845
+ label: string;
846
+ data: {
847
+ x: number;
848
+ y: number;
849
+ }[];
850
+ }[];
851
+ export { datasets_11 as datasets };
852
+ }
853
+ export { data_11 as data };
854
+ export namespace options_27 {
855
+ let title_9: string;
856
+ export { title_9 as title };
857
+ }
858
+ export { options_27 as options };
859
+ }
860
+ export { chart_30 as chart };
861
+ }
862
+ export { args_32 as args };
863
+ }
864
+ export function SimilarValues(args: any): import("react/jsx-runtime").JSX.Element;
865
+ export namespace SimilarValues {
866
+ export namespace args_33 {
867
+ export namespace chart_31 {
868
+ export namespace data_12 {
869
+ let datasets_12: {
870
+ label: string;
871
+ data: {
872
+ x: number;
873
+ y: number;
874
+ }[];
875
+ }[];
876
+ export { datasets_12 as datasets };
877
+ }
878
+ export { data_12 as data };
879
+ export namespace options_28 {
880
+ let title_10: string;
881
+ export { title_10 as title };
882
+ }
883
+ export { options_28 as options };
884
+ }
885
+ export { chart_31 as chart };
886
+ }
887
+ export { args_33 as args };
888
+ }
889
+ export function HideIrregularMajorAxisTicks(args: any): import("react/jsx-runtime").JSX.Element;
890
+ export namespace HideIrregularMajorAxisTicks {
891
+ export namespace args_34 {
892
+ export namespace chart_32 {
893
+ export namespace data_13 {
894
+ let datasets_13: {
895
+ label: string;
896
+ data: {
897
+ x: number;
898
+ y: number;
899
+ }[];
900
+ }[];
901
+ export { datasets_13 as datasets };
902
+ }
903
+ export { data_13 as data };
904
+ export namespace options_29 {
905
+ let title_11: string;
906
+ export { title_11 as title };
907
+ export namespace graph_2 {
908
+ let showMinorGridlines_1: boolean;
909
+ export { showMinorGridlines_1 as showMinorGridlines };
910
+ }
911
+ export { graph_2 as graph };
912
+ export namespace additionalAxesOptions_5 {
913
+ export namespace range_2 {
914
+ export namespace x_6 {
915
+ let min_5: number;
916
+ export { min_5 as min };
917
+ let max_5: number;
918
+ export { max_5 as max };
919
+ }
920
+ export { x_6 as x };
921
+ export namespace y_5 {
922
+ let min_6: number;
923
+ export { min_6 as min };
924
+ let max_6: number;
925
+ export { max_6 as max };
926
+ }
927
+ export { y_5 as y };
928
+ }
929
+ export { range_2 as range };
930
+ }
931
+ export { additionalAxesOptions_5 as additionalAxesOptions };
932
+ }
933
+ export { options_29 as options };
934
+ }
935
+ export { chart_32 as chart };
936
+ }
937
+ export { args_34 as args };
938
+ }
939
+ export function TestNumberSeparators(args: any): import("react/jsx-runtime").JSX.Element;
940
+ export namespace TestNumberSeparators {
941
+ export namespace args_35 {
942
+ export namespace chart_33 {
943
+ export namespace data_14 {
944
+ let datasets_14: {
945
+ label: string;
946
+ data: {
947
+ x: number;
948
+ y: number;
949
+ }[];
950
+ }[];
951
+ export { datasets_14 as datasets };
952
+ }
953
+ export { data_14 as data };
954
+ export namespace options_30 {
955
+ let title_12: string;
956
+ export { title_12 as title };
957
+ }
958
+ export { options_30 as options };
959
+ }
960
+ export { chart_33 as chart };
961
+ }
962
+ export { args_35 as args };
963
+ }
964
+ export function PerformanceTestCase(): import("react/jsx-runtime").JSX.Element;
965
+ export function ExtraTestCases(): import("react/jsx-runtime").JSX.Element;
966
+ export function AxisLabelFormatTestCases(): import("react/jsx-runtime").JSX.Element;
967
+ export function DataSetWithToggle(): import("react/jsx-runtime").JSX.Element;
968
+ export function AxesDepthTypes(): import("react/jsx-runtime").JSX.Element;
969
+ export function DragDataChart(): import("react/jsx-runtime").JSX.Element;
970
+ export function StorageState(args: any): import("react/jsx-runtime").JSX.Element;
971
+ export namespace StorageState {
972
+ export namespace args_36 {
973
+ export namespace chart_34 {
974
+ export namespace data_15 {
975
+ let datasets_15: {
976
+ label: string;
977
+ data: {
978
+ x: number;
979
+ y: number;
980
+ }[];
981
+ }[];
982
+ export { datasets_15 as datasets };
983
+ }
984
+ export { data_15 as data };
985
+ export namespace options_31 {
986
+ let title_13: string;
987
+ export { title_13 as title };
988
+ export namespace chartStyling_7 {
989
+ let height_5: number;
990
+ export { height_5 as height };
991
+ }
992
+ export { chartStyling_7 as chartStyling };
993
+ }
994
+ export { options_31 as options };
995
+ export let persistenceId: string;
996
+ }
997
+ export { chart_34 as chart };
998
+ }
999
+ export { args_36 as args };
1000
+ }
1001
+ export function WithTranslations(): import("react/jsx-runtime").JSX.Element;
1002
+ export function TestLongTooltip(args: any): import("react/jsx-runtime").JSX.Element;
1003
+ export namespace TestLongTooltip {
1004
+ export namespace args_37 {
1005
+ export namespace chart_35 {
1006
+ export namespace data_16 {
1007
+ let datasets_16: {
1008
+ label: string;
1009
+ data: {
1010
+ x: number;
1011
+ y: number;
1012
+ }[];
1013
+ }[];
1014
+ export { datasets_16 as datasets };
1015
+ }
1016
+ export { data_16 as data };
1017
+ export namespace options_32 {
1018
+ export namespace chartStyling_8 {
1019
+ let height_6: number;
1020
+ export { height_6 as height };
1021
+ }
1022
+ export { chartStyling_8 as chartStyling };
1023
+ export namespace axes_4 {
1024
+ let x_7: {
1025
+ label: string;
1026
+ }[];
1027
+ export { x_7 as x };
1028
+ let y_6: {
1029
+ label: string;
1030
+ }[];
1031
+ export { y_6 as y };
1032
+ }
1033
+ export { axes_4 as axes };
1034
+ }
1035
+ export { options_32 as options };
1036
+ }
1037
+ export { chart_35 as chart };
1038
+ }
1039
+ export { args_37 as args };
1040
+ }
1041
+ export function TestManyLines(args: any): import("react/jsx-runtime").JSX.Element;
1042
+ export namespace TestManyLines {
1043
+ export namespace args_38 {
1044
+ export namespace chart_36 {
1045
+ export namespace data_17 {
1046
+ let datasets_17: {
1047
+ label: string;
1048
+ pointStyle: string | undefined;
1049
+ pointRadius: number;
1050
+ data: {
1051
+ x: number;
1052
+ y: number;
1053
+ }[];
1054
+ }[];
1055
+ export { datasets_17 as datasets };
1056
+ }
1057
+ export { data_17 as data };
1058
+ }
1059
+ export { chart_36 as chart };
1060
+ }
1061
+ export { args_38 as args };
1062
+ }
1063
+ export function TestLongLegendLabels(args: any): import("react/jsx-runtime").JSX.Element;
1064
+ export namespace TestLongLegendLabels {
1065
+ export namespace args_39 {
1066
+ export namespace chart_37 {
1067
+ export namespace data_18 {
1068
+ let datasets_18: {
1069
+ label: string;
1070
+ data: {
1071
+ x: number;
1072
+ y: number;
1073
+ }[];
1074
+ }[];
1075
+ export { datasets_18 as datasets };
1076
+ }
1077
+ export { data_18 as data };
1078
+ }
1079
+ export { chart_37 as chart };
1080
+ }
1081
+ export { args_39 as args };
1082
+ }
1083
+ export function TestResizingContainer(): import("react/jsx-runtime").JSX.Element;
1084
+ export function PartialRange(args: any): import("react/jsx-runtime").JSX.Element;
1085
+ export namespace PartialRange {
1086
+ export namespace args_40 {
1087
+ export namespace chart_38 {
1088
+ export namespace data_19 {
1089
+ let datasets_19: {
1090
+ label: string;
1091
+ data: {
1092
+ x: number;
1093
+ y: number;
1094
+ }[];
1095
+ }[];
1096
+ export { datasets_19 as datasets };
1097
+ }
1098
+ export { data_19 as data };
1099
+ export namespace options_33 {
1100
+ export namespace additionalAxesOptions_6 {
1101
+ export namespace range_3 {
1102
+ export namespace x_8 {
1103
+ let max_7: number;
1104
+ export { max_7 as max };
1105
+ }
1106
+ export { x_8 as x };
1107
+ export namespace y_7 {
1108
+ let min_7: number;
1109
+ export { min_7 as min };
1110
+ }
1111
+ export { y_7 as y };
1112
+ }
1113
+ export { range_3 as range };
1114
+ }
1115
+ export { additionalAxesOptions_6 as additionalAxesOptions };
1116
+ }
1117
+ export { options_33 as options };
1118
+ }
1119
+ export { chart_38 as chart };
1120
+ }
1121
+ export { args_40 as args };
1122
+ }
1123
+ export function CombiningTypes(args: any): import("react/jsx-runtime").JSX.Element;
1124
+ export namespace CombiningTypes {
1125
+ export namespace args_41 {
1126
+ export namespace chart_39 {
1127
+ export namespace data_20 {
1128
+ let datasets_20: ({
1129
+ label: string;
1130
+ data: {
1131
+ x: number;
1132
+ y: number;
1133
+ }[];
1134
+ showPoints?: undefined;
1135
+ showLine?: undefined;
1136
+ } | {
1137
+ label: string;
1138
+ showPoints: boolean;
1139
+ data: {
1140
+ x: number;
1141
+ y: number;
1142
+ }[];
1143
+ showLine?: undefined;
1144
+ } | {
1145
+ label: string;
1146
+ showLine: boolean;
1147
+ data: {
1148
+ x: number;
1149
+ y: number;
1150
+ }[];
1151
+ showPoints?: undefined;
1152
+ })[];
1153
+ export { datasets_20 as datasets };
1154
+ }
1155
+ export { data_20 as data };
1156
+ export namespace options_34 { }
1157
+ export { options_34 as options };
1158
+ }
1159
+ export { chart_39 as chart };
1160
+ }
1161
+ export { args_41 as args };
1162
+ }
1163
+ export function ExternalSelect(): import("react/jsx-runtime").JSX.Element;
1164
+ export function SetDSDynamically(): import("react/jsx-runtime").JSX.Element;
1165
+ export function EmptyDS(args: any): import("react/jsx-runtime").JSX.Element;
1166
+ export namespace EmptyDS {
1167
+ export namespace args_42 {
1168
+ export namespace chart_40 {
1169
+ export namespace data_21 {
1170
+ let datasets_21: never[];
1171
+ export { datasets_21 as datasets };
1172
+ }
1173
+ export { data_21 as data };
1174
+ }
1175
+ export { chart_40 as chart };
1176
+ }
1177
+ export { args_42 as args };
1178
+ }
1179
+ export function Tension(args: any): import("react/jsx-runtime").JSX.Element;
1180
+ export namespace Tension {
1181
+ export namespace args_43 {
1182
+ export namespace chart_41 {
1183
+ export namespace options_35 {
1184
+ export namespace graph_3 {
1185
+ let lineTension: number;
1186
+ }
1187
+ export { graph_3 as graph };
1188
+ }
1189
+ export { options_35 as options };
1190
+ export namespace data_22 {
1191
+ let datasets_22: {
1192
+ label: string;
1193
+ showPoints: boolean;
1194
+ data: {
1195
+ x: number;
1196
+ y: number;
1197
+ }[];
1198
+ }[];
1199
+ export { datasets_22 as datasets };
1200
+ }
1201
+ export { data_22 as data };
1202
+ }
1203
+ export { chart_41 as chart };
1204
+ }
1205
+ export { args_43 as args };
1206
+ }
1207
+ export function SeparateTensionsForDSs(args: any): import("react/jsx-runtime").JSX.Element;
1208
+ export namespace SeparateTensionsForDSs {
1209
+ export namespace args_44 {
1210
+ export namespace chart_42 {
1211
+ export namespace options_36 {
1212
+ export namespace graph_4 {
1213
+ let lineTension_1: number;
1214
+ export { lineTension_1 as lineTension };
1215
+ }
1216
+ export { graph_4 as graph };
1217
+ export namespace additionalAxesOptions_7 {
1218
+ export namespace range_4 {
1219
+ export namespace x_9 {
1220
+ let min_8: number;
1221
+ export { min_8 as min };
1222
+ let max_8: number;
1223
+ export { max_8 as max };
1224
+ }
1225
+ export { x_9 as x };
1226
+ export namespace y_8 {
1227
+ let min_9: number;
1228
+ export { min_9 as min };
1229
+ let max_9: number;
1230
+ export { max_9 as max };
1231
+ }
1232
+ export { y_8 as y };
1233
+ }
1234
+ export { range_4 as range };
1235
+ }
1236
+ export { additionalAxesOptions_7 as additionalAxesOptions };
1237
+ }
1238
+ export { options_36 as options };
1239
+ export namespace data_23 {
1240
+ let datasets_23: ({
1241
+ label: string;
1242
+ showPoints: boolean;
1243
+ data: {
1244
+ x: number;
1245
+ y: number;
1246
+ }[];
1247
+ lineTension?: undefined;
1248
+ } | {
1249
+ label: string;
1250
+ showPoints: boolean;
1251
+ lineTension: number;
1252
+ data: {
1253
+ x: number;
1254
+ y: number;
1255
+ }[];
1256
+ })[];
1257
+ export { datasets_23 as datasets };
1258
+ }
1259
+ export { data_23 as data };
1260
+ }
1261
+ export { chart_42 as chart };
1262
+ }
1263
+ export { args_44 as args };
1264
+ }
1265
+ export function TestCustomLinePointsLogic(args: any): import("react/jsx-runtime").JSX.Element;
1266
+ export namespace TestCustomLinePointsLogic {
1267
+ export namespace args_45 {
1268
+ export namespace chart_43 {
1269
+ export namespace data_24 {
1270
+ let datasets_24: ({
1271
+ label: string;
1272
+ data: {
1273
+ x: number;
1274
+ y: number;
1275
+ }[];
1276
+ showLine?: undefined;
1277
+ showPoints?: undefined;
1278
+ } | {
1279
+ label: string;
1280
+ showLine: boolean;
1281
+ data: {
1282
+ x: number;
1283
+ y: number;
1284
+ }[];
1285
+ showPoints?: undefined;
1286
+ } | {
1287
+ label: string;
1288
+ showPoints: boolean;
1289
+ data: {
1290
+ x: number;
1291
+ y: number;
1292
+ }[];
1293
+ showLine?: undefined;
1294
+ } | {
1295
+ label: string;
1296
+ showPoints: boolean;
1297
+ showLine: boolean;
1298
+ data: {
1299
+ x: number;
1300
+ y: number;
1301
+ }[];
1302
+ })[];
1303
+ export { datasets_24 as datasets };
1304
+ }
1305
+ export { data_24 as data };
1306
+ }
1307
+ export { chart_43 as chart };
1308
+ }
1309
+ export { args_45 as args };
1310
+ }
1311
+ export function ManageAnnotationExternally(): import("react/jsx-runtime").JSX.Element;
1312
+ export function FilterAnnotationWhenLegendClick(): import("react/jsx-runtime").JSX.Element;
1313
+ export function GroupedDS(): import("react/jsx-runtime").JSX.Element;
1314
+ export function SimilarValuesWithAnnotation(): import("react/jsx-runtime").JSX.Element;
1315
+ export function HideSpecificDatasetAndAnnotation(): import("react/jsx-runtime").JSX.Element;
1316
+ export function DragAnnotations(args: any): import("react/jsx-runtime").JSX.Element;
1317
+ export namespace DragAnnotations {
1318
+ export namespace args_46 {
1319
+ export namespace chart_44 {
1320
+ export namespace options_37 {
1321
+ export namespace chartOptions {
1322
+ let enableDragAnnotation: boolean;
1323
+ }
1324
+ export namespace legend_5 {
1325
+ let display_2: boolean;
1326
+ export { display_2 as display };
1327
+ }
1328
+ export { legend_5 as legend };
1329
+ export namespace annotations_5 {
1330
+ let showAnnotations_5: boolean;
1331
+ export { showAnnotations_5 as showAnnotations };
1332
+ let enableDragAnnotation_1: boolean;
1333
+ export { enableDragAnnotation_1 as enableDragAnnotation };
1334
+ let annotationsData_5: ({
1335
+ annotationAxis: string;
1336
+ label: string;
1337
+ value: number;
1338
+ enableDrag?: undefined;
1339
+ type?: undefined;
1340
+ xMin?: undefined;
1341
+ xMax?: undefined;
1342
+ yMin?: undefined;
1343
+ yMax?: undefined;
1344
+ color?: undefined;
1345
+ onDragStart?: undefined;
1346
+ onDrag?: undefined;
1347
+ onDragEnd?: undefined;
1348
+ xValue?: undefined;
1349
+ yValue?: undefined;
1350
+ radius?: undefined;
1351
+ labelConfig?: undefined;
1352
+ dragAxis?: undefined;
1353
+ dragRange?: undefined;
1354
+ pointStyle?: undefined;
1355
+ resizable?: undefined;
1356
+ displayDragCoordinates?: undefined;
1357
+ } | {
1358
+ enableDrag: boolean;
1359
+ type: string;
1360
+ xMin: number;
1361
+ xMax: number;
1362
+ yMin: number;
1363
+ yMax: number;
1364
+ color: string;
1365
+ onDragStart: (cord: any, ann: any) => void;
1366
+ onDrag: (cord: any, ann: any) => void;
1367
+ onDragEnd: (cord: any, ann: any) => void;
1368
+ annotationAxis?: undefined;
1369
+ label?: undefined;
1370
+ value?: undefined;
1371
+ xValue?: undefined;
1372
+ yValue?: undefined;
1373
+ radius?: undefined;
1374
+ labelConfig?: undefined;
1375
+ dragAxis?: undefined;
1376
+ dragRange?: undefined;
1377
+ pointStyle?: undefined;
1378
+ resizable?: undefined;
1379
+ displayDragCoordinates?: undefined;
1380
+ } | {
1381
+ enableDrag: boolean;
1382
+ type: string;
1383
+ xMin: number;
1384
+ xMax: number;
1385
+ yMin: number;
1386
+ yMax: number;
1387
+ color: string;
1388
+ annotationAxis?: undefined;
1389
+ label?: undefined;
1390
+ value?: undefined;
1391
+ onDragStart?: undefined;
1392
+ onDrag?: undefined;
1393
+ onDragEnd?: undefined;
1394
+ xValue?: undefined;
1395
+ yValue?: undefined;
1396
+ radius?: undefined;
1397
+ labelConfig?: undefined;
1398
+ dragAxis?: undefined;
1399
+ dragRange?: undefined;
1400
+ pointStyle?: undefined;
1401
+ resizable?: undefined;
1402
+ displayDragCoordinates?: undefined;
1403
+ } | {
1404
+ type: string;
1405
+ enableDrag: boolean;
1406
+ xValue: number;
1407
+ yValue: number;
1408
+ radius: number;
1409
+ color: string;
1410
+ label: string;
1411
+ labelConfig: {
1412
+ font: string;
1413
+ color: string;
1414
+ };
1415
+ onDragStart: (cord: any) => void;
1416
+ onDrag: (cord: any) => void;
1417
+ onDragEnd: (cord: any) => void;
1418
+ annotationAxis?: undefined;
1419
+ value?: undefined;
1420
+ xMin?: undefined;
1421
+ xMax?: undefined;
1422
+ yMin?: undefined;
1423
+ yMax?: undefined;
1424
+ dragAxis?: undefined;
1425
+ dragRange?: undefined;
1426
+ pointStyle?: undefined;
1427
+ resizable?: undefined;
1428
+ displayDragCoordinates?: undefined;
1429
+ } | {
1430
+ enableDrag: boolean;
1431
+ dragAxis: string;
1432
+ type: string;
1433
+ xMin: number;
1434
+ xMax: number;
1435
+ yMin: number;
1436
+ yMax: number;
1437
+ color: string;
1438
+ label: string;
1439
+ annotationAxis?: undefined;
1440
+ value?: undefined;
1441
+ onDragStart?: undefined;
1442
+ onDrag?: undefined;
1443
+ onDragEnd?: undefined;
1444
+ xValue?: undefined;
1445
+ yValue?: undefined;
1446
+ radius?: undefined;
1447
+ labelConfig?: undefined;
1448
+ dragRange?: undefined;
1449
+ pointStyle?: undefined;
1450
+ resizable?: undefined;
1451
+ displayDragCoordinates?: undefined;
1452
+ } | {
1453
+ type: string;
1454
+ enableDrag: boolean;
1455
+ dragAxis: string;
1456
+ xValue: number;
1457
+ yValue: number;
1458
+ radius: number;
1459
+ color: string;
1460
+ label: string;
1461
+ dragRange: {
1462
+ x: number[];
1463
+ y: number[];
1464
+ };
1465
+ annotationAxis?: undefined;
1466
+ value?: undefined;
1467
+ xMin?: undefined;
1468
+ xMax?: undefined;
1469
+ yMin?: undefined;
1470
+ yMax?: undefined;
1471
+ onDragStart?: undefined;
1472
+ onDrag?: undefined;
1473
+ onDragEnd?: undefined;
1474
+ labelConfig?: undefined;
1475
+ pointStyle?: undefined;
1476
+ resizable?: undefined;
1477
+ displayDragCoordinates?: undefined;
1478
+ } | {
1479
+ type: string;
1480
+ enableDrag: boolean;
1481
+ pointStyle: string;
1482
+ dragAxis: string;
1483
+ xValue: number;
1484
+ yValue: number;
1485
+ radius: number;
1486
+ color: string;
1487
+ label: string;
1488
+ annotationAxis?: undefined;
1489
+ value?: undefined;
1490
+ xMin?: undefined;
1491
+ xMax?: undefined;
1492
+ yMin?: undefined;
1493
+ yMax?: undefined;
1494
+ onDragStart?: undefined;
1495
+ onDrag?: undefined;
1496
+ onDragEnd?: undefined;
1497
+ labelConfig?: undefined;
1498
+ dragRange?: undefined;
1499
+ resizable?: undefined;
1500
+ displayDragCoordinates?: undefined;
1501
+ } | {
1502
+ type: string;
1503
+ enableDrag: boolean;
1504
+ dragAxis: string;
1505
+ xValue: number;
1506
+ yValue: number;
1507
+ radius: number;
1508
+ color: string;
1509
+ label: string;
1510
+ annotationAxis?: undefined;
1511
+ value?: undefined;
1512
+ xMin?: undefined;
1513
+ xMax?: undefined;
1514
+ yMin?: undefined;
1515
+ yMax?: undefined;
1516
+ onDragStart?: undefined;
1517
+ onDrag?: undefined;
1518
+ onDragEnd?: undefined;
1519
+ labelConfig?: undefined;
1520
+ dragRange?: undefined;
1521
+ pointStyle?: undefined;
1522
+ resizable?: undefined;
1523
+ displayDragCoordinates?: undefined;
1524
+ } | {
1525
+ enableDrag: boolean;
1526
+ resizable: boolean;
1527
+ type: string;
1528
+ xMin: number;
1529
+ xMax: number;
1530
+ yMin: number;
1531
+ yMax: number;
1532
+ color: string;
1533
+ label: string;
1534
+ annotationAxis?: undefined;
1535
+ value?: undefined;
1536
+ onDragStart?: undefined;
1537
+ onDrag?: undefined;
1538
+ onDragEnd?: undefined;
1539
+ xValue?: undefined;
1540
+ yValue?: undefined;
1541
+ radius?: undefined;
1542
+ labelConfig?: undefined;
1543
+ dragAxis?: undefined;
1544
+ dragRange?: undefined;
1545
+ pointStyle?: undefined;
1546
+ displayDragCoordinates?: undefined;
1547
+ } | {
1548
+ enableDrag: boolean;
1549
+ dragAxis: string;
1550
+ dragRange: {
1551
+ x: number[];
1552
+ y?: undefined;
1553
+ };
1554
+ type: string;
1555
+ xMin: number;
1556
+ xMax: number;
1557
+ yMin: number;
1558
+ yMax: number;
1559
+ color: string;
1560
+ label: string;
1561
+ displayDragCoordinates: boolean;
1562
+ annotationAxis?: undefined;
1563
+ value?: undefined;
1564
+ onDragStart?: undefined;
1565
+ onDrag?: undefined;
1566
+ onDragEnd?: undefined;
1567
+ xValue?: undefined;
1568
+ yValue?: undefined;
1569
+ radius?: undefined;
1570
+ labelConfig?: undefined;
1571
+ pointStyle?: undefined;
1572
+ resizable?: undefined;
1573
+ })[];
1574
+ export { annotationsData_5 as annotationsData };
1575
+ }
1576
+ export { annotations_5 as annotations };
1577
+ }
1578
+ export { options_37 as options };
1579
+ }
1580
+ export { chart_44 as chart };
1581
+ }
1582
+ export { args_46 as args };
1583
+ }
1584
+ export function MultiAxesDragAnnotations(args: any): import("react/jsx-runtime").JSX.Element;
1585
+ export namespace MultiAxesDragAnnotations {
1586
+ export namespace args_47 {
1587
+ export namespace chart_45 {
1588
+ export namespace data_25 {
1589
+ let datasets_25: ({
1590
+ label: string;
1591
+ data: {
1592
+ x: number;
1593
+ y: number;
1594
+ }[];
1595
+ yAxisID?: undefined;
1596
+ } | {
1597
+ label: string;
1598
+ data: {
1599
+ x: number;
1600
+ y: number;
1601
+ }[];
1602
+ yAxisID: string;
1603
+ })[];
1604
+ export { datasets_25 as datasets };
1605
+ }
1606
+ export { data_25 as data };
1607
+ export namespace options_38 {
1608
+ let title_14: string;
1609
+ export { title_14 as title };
1610
+ export namespace axes_5 {
1611
+ let x_10: {
1612
+ label: string;
1613
+ }[];
1614
+ export { x_10 as x };
1615
+ let y_9: {
1616
+ label: string;
1617
+ position: string;
1618
+ }[];
1619
+ export { y_9 as y };
1620
+ }
1621
+ export { axes_5 as axes };
1622
+ export namespace chartOptions_1 {
1623
+ let enableDragAnnotation_2: boolean;
1624
+ export { enableDragAnnotation_2 as enableDragAnnotation };
1625
+ }
1626
+ export { chartOptions_1 as chartOptions };
1627
+ export namespace legend_6 {
1628
+ let display_3: boolean;
1629
+ export { display_3 as display };
1630
+ }
1631
+ export { legend_6 as legend };
1632
+ export namespace additionalAxesOptions_8 {
1633
+ export namespace range_5 {
1634
+ export namespace y2_1 {
1635
+ let min_10: number;
1636
+ export { min_10 as min };
1637
+ let max_10: number;
1638
+ export { max_10 as max };
1639
+ }
1640
+ export { y2_1 as y2 };
1641
+ }
1642
+ export { range_5 as range };
1643
+ }
1644
+ export { additionalAxesOptions_8 as additionalAxesOptions };
1645
+ export namespace annotations_6 {
1646
+ let showAnnotations_6: boolean;
1647
+ export { showAnnotations_6 as showAnnotations };
1648
+ let enableDragAnnotation_3: boolean;
1649
+ export { enableDragAnnotation_3 as enableDragAnnotation };
1650
+ let annotationsData_6: ({
1651
+ enableDrag: boolean;
1652
+ type: string;
1653
+ xMin: number;
1654
+ xMax: number;
1655
+ yMin: number;
1656
+ yMax: number;
1657
+ color: string;
1658
+ yScaleID?: undefined;
1659
+ resizable?: undefined;
1660
+ } | {
1661
+ enableDrag: boolean;
1662
+ yScaleID: string;
1663
+ resizable: boolean;
1664
+ type: string;
1665
+ xMin: number;
1666
+ xMax: number;
1667
+ yMin: number;
1668
+ yMax: number;
1669
+ color: string;
1670
+ })[];
1671
+ export { annotationsData_6 as annotationsData };
1672
+ }
1673
+ export { annotations_6 as annotations };
1674
+ }
1675
+ export { options_38 as options };
1676
+ }
1677
+ export { chart_45 as chart };
1678
+ }
1679
+ export { args_47 as args };
1680
+ }
1681
+ export function ChartFillerPlugin(args: any): import("react/jsx-runtime").JSX.Element;
1682
+ export namespace ChartFillerPlugin {
1683
+ export namespace args_48 {
1684
+ export namespace chart_46 {
1685
+ export namespace options_39 {
1686
+ export namespace additionalAxesOptions_9 {
1687
+ export namespace range_6 {
1688
+ export namespace x_11 {
1689
+ let min_11: number;
1690
+ export { min_11 as min };
1691
+ let max_11: number;
1692
+ export { max_11 as max };
1693
+ }
1694
+ export { x_11 as x };
1695
+ export namespace y_10 {
1696
+ let min_12: number;
1697
+ export { min_12 as min };
1698
+ let max_12: number;
1699
+ export { max_12 as max };
1700
+ }
1701
+ export { y_10 as y };
1702
+ }
1703
+ export { range_6 as range };
1704
+ }
1705
+ export { additionalAxesOptions_9 as additionalAxesOptions };
1706
+ }
1707
+ export { options_39 as options };
1708
+ export namespace data_26 {
1709
+ let datasets_26: {
1710
+ label: string;
1711
+ showPoints: boolean;
1712
+ backgroundColor: string;
1713
+ fill: string;
1714
+ data: {
1715
+ x: number;
1716
+ y: number;
1717
+ }[];
1718
+ }[];
1719
+ export { datasets_26 as datasets };
1720
+ }
1721
+ export { data_26 as data };
1722
+ }
1723
+ export { chart_46 as chart };
1724
+ }
1725
+ export { args_48 as args };
1726
+ }
1727
+ declare namespace basicChart { }
1728
+ declare const customLegendContainerID: "custom-legend-container";
1729
+ declare const testComponent: import("react/jsx-runtime").JSX.Element;