@progress/kendo-vue-charts 8.0.3-develop.2 → 8.0.3-develop.3

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 (333) hide show
  1. package/BaseChart.d.ts +191 -0
  2. package/BaseChartProps.d.ts +193 -0
  3. package/Chart.d.ts +154 -0
  4. package/ChartContext.d.ts +21 -0
  5. package/ChartNoDataOverlay.d.ts +29 -0
  6. package/ChartProps.d.ts +17 -0
  7. package/DonutCenter.d.ts +35 -0
  8. package/Sparkline.d.ts +119 -0
  9. package/SparklineProps.d.ts +21 -0
  10. package/StockChart.d.ts +118 -0
  11. package/StockChartProps.d.ts +22 -0
  12. package/api-types/axis-range.interface.d.ts +20 -0
  13. package/api-types/chart-axis.interface.d.ts +43 -0
  14. package/api-types/chart-pane.interface.d.ts +21 -0
  15. package/api-types/chart-plotarea.interface.d.ts +21 -0
  16. package/api-types/event-axis-options.interface.d.ts +16 -0
  17. package/api-types/event-series-options.interface.d.ts +24 -0
  18. package/api-types/series-point.interface.d.ts +45 -0
  19. package/argument-types/axis-label-visual-args.interface.d.ts +49 -0
  20. package/argument-types/axis-note-visual-args.interface.d.ts +33 -0
  21. package/argument-types/error-bars-visual-args.interface.d.ts +37 -0
  22. package/argument-types/highlight-toggle-args.interface.d.ts +41 -0
  23. package/argument-types/highlight-visual-args.interface.d.ts +57 -0
  24. package/argument-types/legend-item-visual-args.interface.d.ts +33 -0
  25. package/argument-types/legend-labels-content-args.interface.d.ts +28 -0
  26. package/argument-types/markers-visual-args.interface.d.ts +45 -0
  27. package/argument-types/plot-band-label-visual-args.interface.d.ts +33 -0
  28. package/argument-types/series-labels-visual-args.interface.d.ts +33 -0
  29. package/argument-types/series-note-visual-args.interface.d.ts +49 -0
  30. package/argument-types/series-visual-args.interface.d.ts +82 -0
  31. package/argument-types/title-visual-args.interface.d.ts +33 -0
  32. package/common/api-types.d.ts +14 -0
  33. package/common/events.d.ts +27 -0
  34. package/common/property-types.d.ts +137 -0
  35. package/components/AxisDefaults.d.ts +166 -0
  36. package/components/CategoryAxis.d.ts +12 -0
  37. package/components/CategoryAxisItem.d.ts +314 -0
  38. package/components/ChartArea.d.ts +76 -0
  39. package/components/Legend.d.ts +199 -0
  40. package/components/Navigator.d.ts +76 -0
  41. package/components/Pane.d.ts +94 -0
  42. package/components/PaneDefaults.d.ts +94 -0
  43. package/components/Panes.d.ts +12 -0
  44. package/components/PlotArea.d.ts +67 -0
  45. package/components/Series.d.ts +12 -0
  46. package/components/SeriesDefaults.d.ts +109 -0
  47. package/components/SeriesItem.d.ts +410 -0
  48. package/components/Title.d.ts +116 -0
  49. package/components/Tooltip.d.ts +113 -0
  50. package/components/ValueAxis.d.ts +12 -0
  51. package/components/ValueAxisItem.d.ts +231 -0
  52. package/components/XAxis.d.ts +12 -0
  53. package/components/XAxisItem.d.ts +260 -0
  54. package/components/YAxis.d.ts +12 -0
  55. package/components/YAxisItem.d.ts +251 -0
  56. package/components/Zoomable.d.ts +39 -0
  57. package/components/axis-defaults/Crosshair.d.ts +57 -0
  58. package/components/axis-defaults/CrosshairTooltip.d.ts +57 -0
  59. package/components/axis-defaults/Labels.d.ts +86 -0
  60. package/components/axis-defaults/Title.d.ts +88 -0
  61. package/components/axis-defaults/index.d.ts +12 -0
  62. package/components/base/CollectionConfigurationComponent.d.ts +43 -0
  63. package/components/base/ConfigurationComponent.d.ts +48 -0
  64. package/components/category-axis-item/Crosshair.d.ts +57 -0
  65. package/components/category-axis-item/CrosshairTooltip.d.ts +57 -0
  66. package/components/category-axis-item/Labels.d.ts +128 -0
  67. package/components/category-axis-item/Notes.d.ts +78 -0
  68. package/components/category-axis-item/NotesIcon.d.ts +55 -0
  69. package/components/category-axis-item/NotesLabel.d.ts +70 -0
  70. package/components/category-axis-item/RangeLabels.d.ts +46 -0
  71. package/components/category-axis-item/Select.d.ts +67 -0
  72. package/components/category-axis-item/Title.d.ts +88 -0
  73. package/components/category-axis-item/index.d.ts +17 -0
  74. package/components/index.d.ts +41 -0
  75. package/components/legend/InactiveItems.d.ts +31 -0
  76. package/components/legend/Item.d.ts +80 -0
  77. package/components/legend/Title.d.ts +97 -0
  78. package/components/legend/index.d.ts +11 -0
  79. package/components/navigator/CategoryAxis.d.ts +314 -0
  80. package/components/navigator/Hint.d.ts +42 -0
  81. package/components/navigator/Pane.d.ts +94 -0
  82. package/components/navigator/Select.d.ts +49 -0
  83. package/components/navigator/Series.d.ts +12 -0
  84. package/components/navigator/SeriesItem.d.ts +390 -0
  85. package/components/navigator/category-axis/Crosshair.d.ts +57 -0
  86. package/components/navigator/category-axis/CrosshairTooltip.d.ts +57 -0
  87. package/components/navigator/category-axis/Labels.d.ts +128 -0
  88. package/components/navigator/category-axis/Notes.d.ts +78 -0
  89. package/components/navigator/category-axis/NotesIcon.d.ts +54 -0
  90. package/components/navigator/category-axis/NotesLabel.d.ts +70 -0
  91. package/components/navigator/category-axis/Select.d.ts +67 -0
  92. package/components/navigator/category-axis/Title.d.ts +88 -0
  93. package/components/navigator/category-axis/index.d.ts +16 -0
  94. package/components/navigator/index.d.ts +17 -0
  95. package/components/navigator/pane/Title.d.ts +77 -0
  96. package/components/navigator/pane/index.d.ts +9 -0
  97. package/components/navigator/series-item/ErrorBars.d.ts +57 -0
  98. package/components/navigator/series-item/Extremes.d.ts +48 -0
  99. package/components/navigator/series-item/Highlight.d.ts +71 -0
  100. package/components/navigator/series-item/Labels.d.ts +126 -0
  101. package/components/navigator/series-item/LabelsFrom.d.ts +86 -0
  102. package/components/navigator/series-item/LabelsTo.d.ts +86 -0
  103. package/components/navigator/series-item/Markers.d.ts +84 -0
  104. package/components/navigator/series-item/Notes.d.ts +69 -0
  105. package/components/navigator/series-item/NotesIcon.d.ts +55 -0
  106. package/components/navigator/series-item/NotesLabel.d.ts +70 -0
  107. package/components/navigator/series-item/Outliers.d.ts +48 -0
  108. package/components/navigator/series-item/Tooltip.d.ts +60 -0
  109. package/components/navigator/series-item/index.d.ts +20 -0
  110. package/components/pane/Title.d.ts +77 -0
  111. package/components/pane/index.d.ts +9 -0
  112. package/components/pane-defaults/Title.d.ts +75 -0
  113. package/components/pane-defaults/index.d.ts +9 -0
  114. package/components/series-defaults/Labels.d.ts +102 -0
  115. package/components/series-defaults/LabelsFrom.d.ts +75 -0
  116. package/components/series-defaults/LabelsTo.d.ts +75 -0
  117. package/components/series-defaults/Notes.d.ts +58 -0
  118. package/components/series-defaults/NotesIcon.d.ts +55 -0
  119. package/components/series-defaults/NotesLabel.d.ts +70 -0
  120. package/components/series-defaults/Tooltip.d.ts +60 -0
  121. package/components/series-defaults/index.d.ts +16 -0
  122. package/components/series-item/ErrorBars.d.ts +57 -0
  123. package/components/series-item/Extremes.d.ts +48 -0
  124. package/components/series-item/Highlight.d.ts +71 -0
  125. package/components/series-item/Labels.d.ts +126 -0
  126. package/components/series-item/LabelsFrom.d.ts +86 -0
  127. package/components/series-item/LabelsTo.d.ts +86 -0
  128. package/components/series-item/Markers.d.ts +82 -0
  129. package/components/series-item/Notes.d.ts +69 -0
  130. package/components/series-item/NotesIcon.d.ts +55 -0
  131. package/components/series-item/NotesLabel.d.ts +70 -0
  132. package/components/series-item/Outliers.d.ts +48 -0
  133. package/components/series-item/Tooltip.d.ts +60 -0
  134. package/components/series-item/index.d.ts +20 -0
  135. package/components/value-axis-item/Crosshair.d.ts +45 -0
  136. package/components/value-axis-item/CrosshairTooltip.d.ts +57 -0
  137. package/components/value-axis-item/Labels.d.ts +106 -0
  138. package/components/value-axis-item/Notes.d.ts +78 -0
  139. package/components/value-axis-item/NotesIcon.d.ts +55 -0
  140. package/components/value-axis-item/NotesLabel.d.ts +70 -0
  141. package/components/value-axis-item/Title.d.ts +88 -0
  142. package/components/value-axis-item/index.d.ts +15 -0
  143. package/components/x-axis-item/Crosshair.d.ts +46 -0
  144. package/components/x-axis-item/CrosshairTooltip.d.ts +57 -0
  145. package/components/x-axis-item/Labels.d.ts +117 -0
  146. package/components/x-axis-item/Notes.d.ts +78 -0
  147. package/components/x-axis-item/NotesIcon.d.ts +55 -0
  148. package/components/x-axis-item/NotesLabel.d.ts +70 -0
  149. package/components/x-axis-item/Title.d.ts +88 -0
  150. package/components/x-axis-item/index.d.ts +15 -0
  151. package/components/y-axis-item/Crosshair.d.ts +46 -0
  152. package/components/y-axis-item/CrosshairTooltip.d.ts +57 -0
  153. package/components/y-axis-item/Labels.d.ts +117 -0
  154. package/components/y-axis-item/Notes.d.ts +78 -0
  155. package/components/y-axis-item/NotesIcon.d.ts +55 -0
  156. package/components/y-axis-item/NotesLabel.d.ts +70 -0
  157. package/components/y-axis-item/Title.d.ts +88 -0
  158. package/components/y-axis-item/index.d.ts +16 -0
  159. package/defaults.d.ts +8 -0
  160. package/dist/cdn/js/kendo-vue-charts.js +1 -1
  161. package/events/axis-label-click-event.d.ts +38 -0
  162. package/events/base-event.d.ts +20 -0
  163. package/events/chart-event-builder.d.ts +12 -0
  164. package/events/dom-event.d.ts +26 -0
  165. package/events/drag-end-event.d.ts +28 -0
  166. package/events/drag-event.d.ts +28 -0
  167. package/events/drag-start-event.d.ts +28 -0
  168. package/events/legend-item-click-event.d.ts +38 -0
  169. package/events/legend-item-hover-event.d.ts +38 -0
  170. package/events/legend-item-leave-event.d.ts +38 -0
  171. package/events/navigator-filter-event.d.ts +25 -0
  172. package/events/note-click-event.d.ts +38 -0
  173. package/events/note-hover-event.d.ts +38 -0
  174. package/events/plot-area-click-event.d.ts +37 -0
  175. package/events/plot-area-hover-event.d.ts +37 -0
  176. package/events/preventable-event.d.ts +25 -0
  177. package/events/render-event.d.ts +17 -0
  178. package/events/select-end-event.d.ts +30 -0
  179. package/events/select-event.d.ts +30 -0
  180. package/events/select-start-event.d.ts +30 -0
  181. package/events/series-click-event.d.ts +51 -0
  182. package/events/series-hover-event.d.ts +55 -0
  183. package/events/zoom-end-event.d.ts +30 -0
  184. package/events/zoom-event.d.ts +34 -0
  185. package/events/zoom-start-event.d.ts +28 -0
  186. package/field-types/auto-base-unit-steps.interface.d.ts +46 -0
  187. package/field-types/axis-labels-position.d.ts +22 -0
  188. package/field-types/axis-line.interface.d.ts +29 -0
  189. package/field-types/axis-ticks.interface.d.ts +36 -0
  190. package/field-types/axis-title-position.d.ts +21 -0
  191. package/field-types/base-unit.d.ts +23 -0
  192. package/field-types/border.interface.d.ts +25 -0
  193. package/field-types/bullet-target-line.interface.d.ts +16 -0
  194. package/field-types/bullet-target.interface.d.ts +26 -0
  195. package/field-types/category-base-unit.d.ts +54 -0
  196. package/field-types/dash-type.d.ts +42 -0
  197. package/field-types/date-formats.interface.d.ts +46 -0
  198. package/field-types/drag-action.interface.d.ts +22 -0
  199. package/field-types/error-bar-line.interface.d.ts +21 -0
  200. package/field-types/grid-lines.interface.d.ts +37 -0
  201. package/field-types/highlight-line.interface.d.ts +29 -0
  202. package/field-types/label-connectors.interface.d.ts +24 -0
  203. package/field-types/label-rotation.interface.d.ts +26 -0
  204. package/field-types/legend-labels.interface.d.ts +35 -0
  205. package/field-types/line-style.d.ts +42 -0
  206. package/field-types/lock-axis.d.ts +11 -0
  207. package/field-types/margin.interface.d.ts +28 -0
  208. package/field-types/marker-type.d.ts +43 -0
  209. package/field-types/modifier-key.d.ts +11 -0
  210. package/field-types/mousewheel-select.interface.d.ts +25 -0
  211. package/field-types/mousewheel-zoom.interface.d.ts +17 -0
  212. package/field-types/negative-bubble-values.interface.d.ts +20 -0
  213. package/field-types/note-label-position.d.ts +60 -0
  214. package/field-types/note-line.interface.d.ts +29 -0
  215. package/field-types/note-position.d.ts +57 -0
  216. package/field-types/overlay.interface.d.ts +22 -0
  217. package/field-types/padding.interface.d.ts +13 -0
  218. package/field-types/plot-band-label.interface.d.ts +94 -0
  219. package/field-types/plot-band.interface.d.ts +37 -0
  220. package/field-types/series-labels-position.d.ts +23 -0
  221. package/field-types/series-line.interface.d.ts +35 -0
  222. package/field-types/series-stack.interface.d.ts +24 -0
  223. package/field-types/series-type.d.ts +86 -0
  224. package/field-types/trendline-forecast.interface.d.ts +20 -0
  225. package/field-types/week-start-day.enum.d.ts +40 -0
  226. package/index.d.mts +16 -16241
  227. package/index.d.ts +16 -16241
  228. package/index.js +1 -1
  229. package/index.mjs +242 -242
  230. package/messages.d.ts +17 -0
  231. package/methods/index.d.ts +42 -0
  232. package/option-types/axis-crosshair-tooltip.interface.d.ts +42 -0
  233. package/option-types/axis-defaults/crosshair.interface.d.ts +48 -0
  234. package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +13 -0
  235. package/option-types/axis-defaults/labels.interface.d.ts +76 -0
  236. package/option-types/axis-defaults/title.interface.d.ts +74 -0
  237. package/option-types/axis-defaults.interface.d.ts +80 -0
  238. package/option-types/category-axis-item/crosshair.interface.d.ts +47 -0
  239. package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  240. package/option-types/category-axis-item/labels.interface.d.ts +110 -0
  241. package/option-types/category-axis-item/notes.icon.interface.d.ts +39 -0
  242. package/option-types/category-axis-item/notes.interface.d.ts +52 -0
  243. package/option-types/category-axis-item/notes.label.interface.d.ts +53 -0
  244. package/option-types/category-axis-item/range-labels.interface.d.ts +31 -0
  245. package/option-types/category-axis-item/select.interface.d.ts +33 -0
  246. package/option-types/category-axis-item/title.interface.d.ts +72 -0
  247. package/option-types/category-axis-item.interface.d.ts +166 -0
  248. package/option-types/chart-area.interface.d.ts +37 -0
  249. package/option-types/legend/inactive-items.interface.d.ts +17 -0
  250. package/option-types/legend/item.interface.d.ts +124 -0
  251. package/option-types/legend/legend-title.interface.d.ts +68 -0
  252. package/option-types/legend.interface.d.ts +110 -0
  253. package/option-types/navigator/hint.interface.d.ts +28 -0
  254. package/option-types/navigator/select.interface.d.ts +25 -0
  255. package/option-types/navigator.interface.d.ts +39 -0
  256. package/option-types/pane/title.interface.d.ts +63 -0
  257. package/option-types/pane-defaults/title.interface.d.ts +59 -0
  258. package/option-types/pane-defaults.interface.d.ts +46 -0
  259. package/option-types/pane.interface.d.ts +46 -0
  260. package/option-types/plot-area.interface.d.ts +33 -0
  261. package/option-types/series-defaults/labels.from.interface.d.ts +58 -0
  262. package/option-types/series-defaults/labels.interface.d.ts +80 -0
  263. package/option-types/series-defaults/labels.to.interface.d.ts +58 -0
  264. package/option-types/series-defaults/notes.icon.interface.d.ts +39 -0
  265. package/option-types/series-defaults/notes.interface.d.ts +43 -0
  266. package/option-types/series-defaults/notes.label.interface.d.ts +53 -0
  267. package/option-types/series-defaults/tooltip.interface.d.ts +48 -0
  268. package/option-types/series-defaults.interface.d.ts +103 -0
  269. package/option-types/series-item/error-bars.interface.d.ts +62 -0
  270. package/option-types/series-item/extremes.interface.d.ts +39 -0
  271. package/option-types/series-item/highlight.interface.d.ts +70 -0
  272. package/option-types/series-item/labels.from.interface.d.ts +74 -0
  273. package/option-types/series-item/labels.interface.d.ts +103 -0
  274. package/option-types/series-item/labels.to.interface.d.ts +72 -0
  275. package/option-types/series-item/markers.interface.d.ts +68 -0
  276. package/option-types/series-item/notes.icon.interface.d.ts +39 -0
  277. package/option-types/series-item/notes.interface.d.ts +53 -0
  278. package/option-types/series-item/notes.label.interface.d.ts +53 -0
  279. package/option-types/series-item/outliers.interface.d.ts +39 -0
  280. package/option-types/series-item/tooltip.interface.d.ts +49 -0
  281. package/option-types/series-item/trendline.interface.d.ts +37 -0
  282. package/option-types/series-item.interface.d.ts +481 -0
  283. package/option-types/title.interface.d.ts +62 -0
  284. package/option-types/tooltip-border.interface.d.ts +22 -0
  285. package/option-types/tooltip.interface.d.ts +56 -0
  286. package/option-types/value-axis-item/crosshair.interface.d.ts +33 -0
  287. package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  288. package/option-types/value-axis-item/labels.interface.d.ts +88 -0
  289. package/option-types/value-axis-item/notes.icon.interface.d.ts +39 -0
  290. package/option-types/value-axis-item/notes.interface.d.ts +52 -0
  291. package/option-types/value-axis-item/notes.label.interface.d.ts +53 -0
  292. package/option-types/value-axis-item/title.interface.d.ts +73 -0
  293. package/option-types/value-axis-item.interface.d.ts +121 -0
  294. package/option-types/x-axis-item/crosshair.interface.d.ts +33 -0
  295. package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  296. package/option-types/x-axis-item/labels.interface.d.ts +95 -0
  297. package/option-types/x-axis-item/notes.icon.interface.d.ts +39 -0
  298. package/option-types/x-axis-item/notes.interface.d.ts +53 -0
  299. package/option-types/x-axis-item/notes.label.interface.d.ts +53 -0
  300. package/option-types/x-axis-item/title.interface.d.ts +72 -0
  301. package/option-types/x-axis-item.interface.d.ts +142 -0
  302. package/option-types/y-axis-item/crosshair.interface.d.ts +33 -0
  303. package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  304. package/option-types/y-axis-item/labels.interface.d.ts +95 -0
  305. package/option-types/y-axis-item/notes.icon.interface.d.ts +39 -0
  306. package/option-types/y-axis-item/notes.interface.d.ts +52 -0
  307. package/option-types/y-axis-item/notes.label.interface.d.ts +53 -0
  308. package/option-types/y-axis-item/title.interface.d.ts +73 -0
  309. package/option-types/y-axis-item.interface.d.ts +138 -0
  310. package/option-types/zoomable.interface.d.ts +21 -0
  311. package/package-metadata.d.ts +12 -0
  312. package/package-metadata.js +1 -1
  313. package/package-metadata.mjs +2 -2
  314. package/package.json +14 -8
  315. package/sankey/Sankey.d.ts +98 -0
  316. package/sankey/index.d.ts +12 -0
  317. package/sankey/messages.d.ts +17 -0
  318. package/sankey/tooltip.d.ts +53 -0
  319. package/sankey/tooltip.mjs +1 -1
  320. package/sankey/types.d.ts +188 -0
  321. package/sankey/utils.d.ts +12 -0
  322. package/store/reducer.d.ts +21 -0
  323. package/store/store.d.ts +33 -0
  324. package/theming/theme-service.d.ts +10 -0
  325. package/tooltip/Context.d.ts +18 -0
  326. package/tooltip/Crosshair.d.ts +36 -0
  327. package/tooltip/CrosshairContainer.d.ts +31 -0
  328. package/tooltip/Point.d.ts +75 -0
  329. package/tooltip/Popup.d.ts +58 -0
  330. package/tooltip/Series.d.ts +28 -0
  331. package/tooltip/SharedTooltipContent.d.ts +47 -0
  332. package/tooltip/index.d.ts +10 -0
  333. package/utils/main.d.ts +24 -0
@@ -0,0 +1,138 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { AxisLine, AxisTicks, BaseUnit, GridLines, PlotBand } from '../common/property-types';
9
+ import { YAxisCrosshair } from './y-axis-item/crosshair.interface';
10
+ import { YAxisLabels } from './y-axis-item/labels.interface';
11
+ import { YAxisNotes } from './y-axis-item/notes.interface';
12
+ import { YAxisTitle } from './y-axis-item/title.interface';
13
+ /**
14
+ * @hidden
15
+ */
16
+ export interface YAxis {
17
+ /**
18
+ * * (Only for objects) The value at which the Y axis crosses this axis.
19
+ * * (Only for arrays) The value indices at which the Y axes cross the value axis.
20
+ * * (Only for dates) The date at which the Y axis crosses this axis.
21
+ *
22
+ * To denote the far end of the axis, set a value that is greater than or equal to the axis maximum value.
23
+ */
24
+ axisCrossingValue?: any | any[];
25
+ /**
26
+ * The background color of the axis.
27
+ */
28
+ background?: string;
29
+ /**
30
+ * The category names. Applicable for charts with X and Y category axes.
31
+ */
32
+ categories?: any[];
33
+ /**
34
+ * The base time interval for the axis labels. The default `baseUnit` is automatically determined from the value range.
35
+ *
36
+ * The available options are:
37
+ * - `milliseconds`
38
+ * - `seconds`
39
+ * - `minutes`
40
+ * - `hours`
41
+ * - `days`
42
+ * - `weeks`
43
+ * - `months`
44
+ * - `years`
45
+ */
46
+ baseUnit?: BaseUnit | string;
47
+ /**
48
+ * The color of the axis. Accepts a valid CSS color string, including hex and rgb.
49
+ */
50
+ color?: string;
51
+ /**
52
+ * The configuration of the axis lines. Also affects the major and minor ticks, but not the grid lines.
53
+ */
54
+ line?: AxisLine;
55
+ /**
56
+ * The configuration of the major grid lines. These are the lines that are an extension of the major ticks through the body of the Chart.
57
+ */
58
+ majorGridLines?: GridLines;
59
+ /**
60
+ * The configuration of the Scatter Chart Y-axis major ticks.
61
+ */
62
+ majorTicks?: AxisTicks;
63
+ /**
64
+ * The interval between major divisions. If this is a date axis, the value represents the number of [`yAxis.baseUnits`]({% slug api_charts_chartyaxisitemprops %}#toc-baseunit) between major divisions. If the [`yAxis.type`]({% slug api_charts_chartyaxisitemprops %}#toc-type) is set to `"log"`, the `majorUnit` value is used for the base of the logarithm.
65
+ */
66
+ majorUnit?: number;
67
+ /**
68
+ * The maximum value of the axis.
69
+ */
70
+ max?: any;
71
+ /**
72
+ * The minimum value of the axis.
73
+ */
74
+ min?: any;
75
+ /**
76
+ * The configuration of the minor grid lines. These are the lines that are an extension of the minor ticks through the body of the Chart.
77
+ */
78
+ minorGridLines?: GridLines;
79
+ /**
80
+ * The configuration of the Y-axis minor ticks.
81
+ */
82
+ minorTicks?: AxisTicks;
83
+ /**
84
+ * The interval between minor divisions. It defaults to one-fifth (1/5) of [`yAxis.majorUnit`]({% slug api_charts_chartyaxisitemprops %}#toc-majorunit). If [`yAxis.type`]({% slug api_charts_chartyaxisitemprops %}#toc-type) is set to `"log"`, the `minorUnit` value represents the number of divisions between two major units and defaults to the major unit minus one.
85
+ */
86
+ minorUnit?: number;
87
+ /**
88
+ * The unique axis name. Used to associate a series with a Y axis by using the [`series.yAxis`]({% slug api_charts_chartseriesitemprops %}#toc-yaxis) option.
89
+ */
90
+ name?: string;
91
+ /**
92
+ * If set to `true`, the Chart prevents the automatic axis range from snapping to zero. Setting it to `false` forces the automatic axis range to snap to zero.
93
+ */
94
+ narrowRange?: boolean;
95
+ /**
96
+ * The name of the pane in which the axis has to be rendered. If not set, the axis is rendered in the first (default) pane.
97
+ */
98
+ pane?: string;
99
+ /**
100
+ * The plot bands of the Y axis.
101
+ */
102
+ plotBands?: PlotBand[];
103
+ /**
104
+ * If set to `true`, the value axis direction is reversed. By default, the values increase from left to right and from bottom to top.
105
+ */
106
+ reverse?: boolean;
107
+ /**
108
+ * The axis type.
109
+ *
110
+ * The supported values are:
111
+ * - `"numeric"`—Numeric axis.
112
+ * - `"date"`—Specialized axis for displaying chronological data.
113
+ * - `"log"`—Logarithmic axis.
114
+ *
115
+ * If the series Y value is of the `date` type, the Chart automatically switches to a date axis. To avoid this behavior, set the `type`.
116
+ */
117
+ type?: 'numeric' | 'log' | 'date' | string;
118
+ /**
119
+ * If set to `true`, the Chart displays the Y axis. By default, the Y axis is visible.
120
+ */
121
+ visible?: boolean;
122
+ /**
123
+ * The configuration options of the crosshair. The crosshair is displayed when the [`yAxis.crosshair.visible`]({% slug api_charts_chartyaxiscrosshairprops %}#toc-visible) option is set to `true`.
124
+ */
125
+ crosshair?: YAxisCrosshair;
126
+ /**
127
+ * The axis labels configuration.
128
+ */
129
+ labels?: YAxisLabels;
130
+ /**
131
+ * The Y-axis notes configuration.
132
+ */
133
+ notes?: YAxisNotes;
134
+ /**
135
+ * The title configuration of the Scatter Chart Y axis. To display the title, set the [`yAxis.title.text`]({% slug api_charts_chartyaxistitleprops %}#toc-text) option.
136
+ */
137
+ title?: YAxisTitle;
138
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { DragAction, MousewheelZoom } from '../common/property-types';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface Zoomable {
13
+ /**
14
+ * Specifies if the Chart can be zoomed by using the mousewheel.
15
+ */
16
+ mousewheel?: boolean | MousewheelZoom;
17
+ /**
18
+ * Specifies if the Chart can be zoomed by using selection.
19
+ */
20
+ selection?: boolean | DragAction;
21
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-charts",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773130429,version:"8.0.3-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-charts",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773401808,version:"8.0.3-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1773130429,
14
- version: "8.0.3-develop.2",
13
+ publishDate: 1773401808,
14
+ version: "8.0.3-develop.3",
15
15
  licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
16
16
  };
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-charts",
3
- "version": "8.0.3-develop.2",
3
+ "version": "8.0.3-develop.3",
4
4
  "description": "TODO",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -9,8 +9,14 @@
9
9
  "types": "./index.d.ts",
10
10
  "exports": {
11
11
  ".": {
12
- "import": "./index.mjs",
13
- "require": "./index.js"
12
+ "import": {
13
+ "types": "./index.d.mts",
14
+ "default": "./index.mjs"
15
+ },
16
+ "require": {
17
+ "types": "./index.d.ts",
18
+ "default": "./index.js"
19
+ }
14
20
  },
15
21
  "./package.json": {
16
22
  "default": "./package.json"
@@ -20,10 +26,10 @@
20
26
  "peerDependencies": {
21
27
  "@progress/kendo-drawing": "^1.21.2",
22
28
  "@progress/kendo-licensing": "^1.7.2",
23
- "@progress/kendo-vue-common": "8.0.3-develop.2",
24
- "@progress/kendo-vue-intl": "8.0.3-develop.2",
25
- "@progress/kendo-vue-layout": "8.0.3-develop.2",
26
- "@progress/kendo-vue-popup": "8.0.3-develop.2",
29
+ "@progress/kendo-vue-common": "8.0.3-develop.3",
30
+ "@progress/kendo-vue-intl": "8.0.3-develop.3",
31
+ "@progress/kendo-vue-layout": "8.0.3-develop.3",
32
+ "@progress/kendo-vue-popup": "8.0.3-develop.3",
27
33
  "@progress/kendo-svg-icons": "^4.4.0",
28
34
  "vue": "^3.0.2"
29
35
  },
@@ -69,7 +75,7 @@
69
75
  "package": {
70
76
  "productName": "Kendo UI for Vue",
71
77
  "productCode": "KENDOUIVUE",
72
- "publishDate": 1773130429,
78
+ "publishDate": 1773401808,
73
79
  "licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
74
80
  }
75
81
  },
@@ -0,0 +1,98 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SankeyExportVisualOptions } from './types';
9
+ import { Group } from '@progress/kendo-drawing';
10
+ import { SankeyEvent as SankeyWidgetEvent, SankeyTooltipEvent, Sankey as SankeyWidget } from '@progress/kendo-charts';
11
+ import { PropType } from 'vue';
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const Sankey: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
16
+ dataNodes: {
17
+ type: PropType<import('@progress/kendo-charts').SankeyNode[]>;
18
+ required: true;
19
+ };
20
+ dataLinks: {
21
+ type: PropType<import('@progress/kendo-charts').SankeyLink[]>;
22
+ required: true;
23
+ };
24
+ disableAutoLayout: PropType<boolean>;
25
+ disableKeyboardNavigation: PropType<boolean>;
26
+ dir: PropType<string>;
27
+ labels: PropType<import('@progress/kendo-charts').SankeyLabelDefaults>;
28
+ legend: PropType<import('./types').SankeyLegend>;
29
+ links: PropType<import('@progress/kendo-charts').SankeyLinkDefaults>;
30
+ nodes: PropType<import('@progress/kendo-charts').SankeyNodeDefaults>;
31
+ title: PropType<import('./types').SankeyTitle>;
32
+ tooltip: PropType<import('./types').SankeyTooltip>;
33
+ }>, {}, {
34
+ currentTooltip: any;
35
+ currentDir: any;
36
+ }, {
37
+ sankeyClasses(): {
38
+ [x: number]: boolean;
39
+ "k-chart k-sankey": boolean;
40
+ };
41
+ }, {
42
+ exportVisual(options?: SankeyExportVisualOptions): Group;
43
+ destroySankey(): void;
44
+ createSankey(): void;
45
+ update(): void;
46
+ bindEvents(instance: SankeyWidget): void;
47
+ triggerEvent(e: SankeyWidgetEvent): void;
48
+ sankeyOptions(): {
49
+ data: {
50
+ nodes: any;
51
+ links: any;
52
+ };
53
+ links: any;
54
+ nodes: any;
55
+ labels: any;
56
+ title: any;
57
+ legend: any;
58
+ disableAutoLayout: any;
59
+ disableKeyboardNavigation: any;
60
+ rtl: boolean;
61
+ tooltip: any;
62
+ };
63
+ onTooltipShow(event: SankeyTooltipEvent): void;
64
+ onTooltipHide(): void;
65
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
66
+ linkclick: any;
67
+ linkenter: any;
68
+ linkleave: any;
69
+ nodeclick: any;
70
+ nodeenter: any;
71
+ nodeleave: any;
72
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
73
+ dataNodes: {
74
+ type: PropType<import('@progress/kendo-charts').SankeyNode[]>;
75
+ required: true;
76
+ };
77
+ dataLinks: {
78
+ type: PropType<import('@progress/kendo-charts').SankeyLink[]>;
79
+ required: true;
80
+ };
81
+ disableAutoLayout: PropType<boolean>;
82
+ disableKeyboardNavigation: PropType<boolean>;
83
+ dir: PropType<string>;
84
+ labels: PropType<import('@progress/kendo-charts').SankeyLabelDefaults>;
85
+ legend: PropType<import('./types').SankeyLegend>;
86
+ links: PropType<import('@progress/kendo-charts').SankeyLinkDefaults>;
87
+ nodes: PropType<import('@progress/kendo-charts').SankeyNodeDefaults>;
88
+ title: PropType<import('./types').SankeyTitle>;
89
+ tooltip: PropType<import('./types').SankeyTooltip>;
90
+ }>> & Readonly<{
91
+ onLinkclick?: (...args: any[] | unknown[]) => any;
92
+ onLinkenter?: (...args: any[] | unknown[]) => any;
93
+ onLinkleave?: (...args: any[] | unknown[]) => any;
94
+ onNodeclick?: (...args: any[] | unknown[]) => any;
95
+ onNodeenter?: (...args: any[] | unknown[]) => any;
96
+ onNodeleave?: (...args: any[] | unknown[]) => any;
97
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
98
+ export { Sankey };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Sankey } from './Sankey';
9
+ import { SankeyProps, SankeyEvent, SankeyNode, SankeyLink, SankeyLabel, SankeyData, SankeyLinkHighlight, SankeyLinkDefaults, SankeyLabelDefaults, SankeyNodeDefaults, SankeyLinkDataItem, SankeyNodeDataItem, TooltipContentProps, SankeyExportVisualOptions, SankeyTitle, SankeyLegend, SankeyTooltipProps, SankeyTooltip, SankeyOptions } from './types';
10
+ import { createSankeyData } from './utils';
11
+ export { Sankey, createSankeyData };
12
+ export type { SankeyProps, SankeyEvent, SankeyLinkHighlight, SankeyNode, SankeyLink, SankeyLabel, SankeyLinkDefaults, SankeyLabelDefaults, SankeyNodeDefaults, SankeyLinkDataItem, SankeyNodeDataItem, TooltipContentProps, SankeyData, SankeyExportVisualOptions, SankeyTitle, SankeyLegend, SankeyTooltipProps, SankeyTooltip, SankeyOptions };
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const tooltipUnitFormat = "sankey.tooltipUnitFormat";
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare const messages: {
16
+ "sankey.tooltipUnitFormat": string;
17
+ };
@@ -0,0 +1,53 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PropType } from 'vue';
9
+ /**
10
+ * @hidden
11
+ */
12
+ declare const Tooltip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
13
+ eventData: PropType<Pick<import('@progress/kendo-charts').SankeyTooltipEvent, "dataItem" | "nodeValue" | "targetType">>;
14
+ tooltipData: PropType<{
15
+ popupOffset: {
16
+ left: number;
17
+ top: number;
18
+ };
19
+ popupAlign: {
20
+ horizontal: string;
21
+ vertical: string;
22
+ };
23
+ }>;
24
+ nodeContent: PropType<any>;
25
+ linkContent: PropType<any>;
26
+ dir: PropType<string>;
27
+ offset: PropType<number>;
28
+ appendTo: PropType<HTMLElement>;
29
+ }>, {}, {
30
+ top: string;
31
+ left: string;
32
+ visibility: string;
33
+ }, {}, {
34
+ showTooltip(): void;
35
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ eventData: PropType<Pick<import('@progress/kendo-charts').SankeyTooltipEvent, "dataItem" | "nodeValue" | "targetType">>;
37
+ tooltipData: PropType<{
38
+ popupOffset: {
39
+ left: number;
40
+ top: number;
41
+ };
42
+ popupAlign: {
43
+ horizontal: string;
44
+ vertical: string;
45
+ };
46
+ }>;
47
+ nodeContent: PropType<any>;
48
+ linkContent: PropType<any>;
49
+ dir: PropType<string>;
50
+ offset: PropType<number>;
51
+ appendTo: PropType<HTMLElement>;
52
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
53
+ export { Tooltip };
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { defineComponent as s, createVNode as t, h as v } from "vue";
8
+ import { defineComponent as s, h as v, createVNode as t } from "vue";
9
9
  import { getTemplate as b, setRef as y, getRef as T, Icon as S } from "@progress/kendo-vue-common";
10
10
  import { arrowLeftIcon as k, arrowRightIcon as x } from "@progress/kendo-svg-icons";
11
11
  import { provideLocalizationService as $, IntlService as w } from "@progress/kendo-vue-intl";
@@ -0,0 +1,188 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SankeyData, SankeyExportVisualOptions, SankeyHorizontalMargin, SankeyLabel, SankeyLabelDefaults, SankeyLabelStroke, SankeyLegendItem, SankeyLink, SankeyLinkDataItem, SankeyLinkDefaults, SankeyLinkHighlight, SankeyNode, SankeyNodeDataItem, SankeyNodeDefaults, SankeyFocusHighlight, SankeyNodeLabel, SankeyLinkLabel, SankeyOptions, SankeyTooltipEvent, SankeyTooltip as SankeyTooltipInterface, SankeyEvent as SankeyWidgetEvent } from '@progress/kendo-charts';
9
+ import { Legend, Title } from '../common/property-types';
10
+ import { Sankey } from './Sankey';
11
+ export type { SankeyData, SankeyExportVisualOptions, SankeyHorizontalMargin, SankeyLabel, SankeyLabelDefaults, SankeyLabelStroke, SankeyLegendItem, SankeyLink, SankeyLinkDataItem, SankeyLinkDefaults, SankeyLinkHighlight, SankeyNode, SankeyNodeDataItem, SankeyNodeDefaults, SankeyFocusHighlight, SankeyNodeLabel, SankeyLinkLabel, SankeyOptions };
12
+ /**
13
+ * The Kendo UI for Vue Sankey event object.
14
+ */
15
+ export interface SankeyEvent extends SankeyWidgetEvent {
16
+ /**
17
+ * The `Sankey` component that triggered the event.
18
+ */
19
+ target: typeof Sankey;
20
+ }
21
+ /**
22
+ * Represents the Sankey title options.
23
+ */
24
+ export interface SankeyTitle extends Title {
25
+ }
26
+ /**
27
+ * Represents the Sankey legend options.
28
+ */
29
+ export interface SankeyLegend extends Omit<Legend, 'inactiveItems' | 'item' | 'focusHighlight'> {
30
+ /**
31
+ * The configuration of the legend items.
32
+ */
33
+ item?: SankeyLegendItem;
34
+ }
35
+ /**
36
+ * Represents the props of the Sankey tooltip content component.
37
+ */
38
+ export interface TooltipContentProps {
39
+ /**
40
+ * Represents the dataItem object of the hovered node or link element.
41
+ */
42
+ dataItem: SankeyNodeDataItem | SankeyLinkDataItem;
43
+ /**
44
+ * The value of the hovered node element.
45
+ * The value is available only when the hovered element is a node.
46
+ */
47
+ nodeValue?: number;
48
+ /**
49
+ * The `dir` attribute of the Sankey tooltip content component.
50
+ */
51
+ dir?: string;
52
+ }
53
+ interface TooltipAppendTo {
54
+ /**
55
+ * Defines the container to which the Tooltip will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
56
+ */
57
+ appendTo?: HTMLElement | null;
58
+ }
59
+ /**
60
+ * Represents the props of the Sankey tooltip component.
61
+ *
62
+ * @hidden
63
+ */
64
+ export interface SankeyTooltipProps extends TooltipAppendTo {
65
+ /**
66
+ * The event object of the Sankey tooltip.
67
+ */
68
+ eventData: Pick<SankeyTooltipEvent, 'dataItem' | 'nodeValue' | 'targetType'>;
69
+ /**
70
+ * The distance between the tooltip and the mouse pointer in pixels.
71
+ */
72
+ offset: number;
73
+ /**
74
+ * The `dir` attribute of the Sankey tooltip.
75
+ */
76
+ dir?: string;
77
+ /**
78
+ * The tooltip data of the Sankey component.
79
+ */
80
+ tooltipData: SankeyTooltipEvent['tooltipData'];
81
+ /**
82
+ * The content component of the Sankey node tooltip. Can be string that is pointing to a namedSlot or a render function;
83
+ */
84
+ nodeContent?: any;
85
+ /**
86
+ * The content component of the Sankey link tooltip. Can be string that is pointing to a namedSlot or a render function;
87
+ */
88
+ linkContent?: any;
89
+ }
90
+ /**
91
+ * Represents the Sankey tooltip configuration.
92
+ */
93
+ export interface SankeyTooltip extends SankeyTooltipInterface, TooltipAppendTo {
94
+ /**
95
+ * Indicates whether the Sankey tooltips will be rendered.
96
+ */
97
+ visible?: boolean;
98
+ /**
99
+ * The distance between the tooltip and the mouse pointer in pixels.
100
+ *
101
+ * @default 12
102
+ */
103
+ offset?: number;
104
+ /**
105
+ * The content component of the Sankey node tooltip. Can be string that is pointing to a namedSlot or a render function;
106
+ */
107
+ nodeContent?: any;
108
+ /**
109
+ * The content component of the Sankey link tooltip. Can be string that is pointing to a namedSlot or a render function;
110
+ */
111
+ linkContent?: any;
112
+ }
113
+ /**
114
+ * Represents the props of the Kendo UI for Vue [Sankey]({% slug overview_sankey %}) component.
115
+ */
116
+ export interface SankeyProps {
117
+ /**
118
+ * The data of the Sankey component containing the `nodes` props.
119
+ */
120
+ dataNodes?: SankeyNode[];
121
+ /**
122
+ * The data of the Sankey component containing the `links` props.
123
+ */
124
+ dataLinks?: SankeyLink[];
125
+ /**
126
+ * The `links` default props of the Sankey component.
127
+ * The value will be applied to all links unless overridden by the `links` prop of the `data` prop.
128
+ */
129
+ links?: SankeyLinkDefaults;
130
+ /**
131
+ * The `nodes` default props of the Sankey component.
132
+ * The value will be applied to all nodes unless overridden by the `nodes` prop of the `data` prop.
133
+ */
134
+ nodes?: SankeyNodeDefaults;
135
+ /**
136
+ * The `labels` default props of the Sankey component.
137
+ * The value will be applied to all labels unless overridden by the `nodes` label prop of the `data` prop.
138
+ */
139
+ labels?: SankeyLabelDefaults;
140
+ /**
141
+ * The title configuration of the Sankey component.
142
+ */
143
+ title?: SankeyTitle;
144
+ /**
145
+ * The legend configuration of the Sankey component.
146
+ */
147
+ legend?: SankeyLegend;
148
+ /**
149
+ * The configuration of the Sankey tooltips.
150
+ */
151
+ tooltip?: SankeyTooltip;
152
+ /**
153
+ * If set to `true`, the Sankey component will not perform automatic layout.
154
+ */
155
+ disableAutoLayout?: boolean;
156
+ /**
157
+ * If set to `true`, the Sankey keyboard navigation will be disabled.
158
+ */
159
+ disableKeyboardNavigation?: boolean;
160
+ /**
161
+ * Represents the `dir` HTML attribute.
162
+ */
163
+ dir?: string;
164
+ /**
165
+ * Fires when the mouse pointer enters a node. Similar to the `mouseenter` event.
166
+ */
167
+ onNodeenter?: (event: SankeyEvent) => void;
168
+ /**
169
+ * Fires when the mouse pointer leaves a node. Similar to the `mouseleave` event.
170
+ */
171
+ onNodeleave?: (event: SankeyEvent) => void;
172
+ /**
173
+ * Fires when the mouse pointer enters a link. Similar to the `mouseenter` event,
174
+ */
175
+ onLinkenter?: (event: SankeyEvent) => void;
176
+ /**
177
+ * Fires when the mouse pointer leaves a link. Similar to the `mouseleave` event.
178
+ */
179
+ onLinkleave?: (event: SankeyEvent) => void;
180
+ /**
181
+ * Fires when a node is clicked.
182
+ */
183
+ onNodeclick?: (event: SankeyEvent) => void;
184
+ /**
185
+ * Fires when a link is clicked.
186
+ */
187
+ onLinkclick?: (event: SankeyEvent) => void;
188
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { createSankeyData as chartsCreateSankeyData } from '@progress/kendo-charts';
9
+ /**
10
+ * Converts data objects to Sankey data.
11
+ */
12
+ export declare const createSankeyData: typeof chartsCreateSankeyData;
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { StoreAction } from './store';
9
+ /**
10
+ * @hidden
11
+ */
12
+ declare const optionsReducer: (currentState: any, action: StoreAction) => object;
13
+ /**
14
+ * @hidden
15
+ */
16
+ declare const themeReducer: (currentState: any, action: StoreAction) => any;
17
+ /**
18
+ * @hidden
19
+ */
20
+ declare const observersReducer: (currentState: any, action: StoreAction) => any;
21
+ export { optionsReducer, themeReducer, observersReducer };