@progress/kendo-react-charts 13.3.0-develop.9 → 13.4.0-develop.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (342) hide show
  1. package/BaseChart.d.ts +137 -0
  2. package/BaseChartProps.d.ts +207 -0
  3. package/Chart.d.ts +86 -0
  4. package/ChartBreadcrumb.d.ts +49 -0
  5. package/ChartBreadcrumb.js +1 -1
  6. package/ChartBreadcrumb.mjs +1 -2
  7. package/ChartContext.d.ts +24 -0
  8. package/ChartNoDataOverlay.d.ts +30 -0
  9. package/ChartProps.d.ts +17 -0
  10. package/Container.d.ts +15 -0
  11. package/DonutCenter.d.ts +45 -0
  12. package/Sparkline.d.ts +92 -0
  13. package/SparklineProps.d.ts +21 -0
  14. package/StockChart.d.ts +47 -0
  15. package/StockChartProps.d.ts +26 -0
  16. package/api-types/axis-range.interface.d.ts +20 -0
  17. package/api-types/chart-axis.interface.d.ts +43 -0
  18. package/api-types/chart-drilldown-state.interface.d.ts +31 -0
  19. package/api-types/chart-pane.interface.d.ts +21 -0
  20. package/api-types/chart-plotarea.interface.d.ts +21 -0
  21. package/api-types/event-axis-options.interface.d.ts +16 -0
  22. package/api-types/event-series-options.interface.d.ts +24 -0
  23. package/api-types/series-point.interface.d.ts +45 -0
  24. package/argument-types/axis-label-visual-args.interface.d.ts +50 -0
  25. package/argument-types/axis-note-visual-args.interface.d.ts +34 -0
  26. package/argument-types/drilldown-series-factory-props.interface.d.ts +24 -0
  27. package/argument-types/error-bars-visual-args.interface.d.ts +38 -0
  28. package/argument-types/highlight-toggle-args.interface.d.ts +41 -0
  29. package/argument-types/highlight-visual-args.interface.d.ts +58 -0
  30. package/argument-types/legend-item-visual-args.interface.d.ts +34 -0
  31. package/argument-types/legend-labels-content-args.interface.d.ts +28 -0
  32. package/argument-types/markers-visual-args.interface.d.ts +46 -0
  33. package/argument-types/plot-band-label-visual-args.interface.d.ts +34 -0
  34. package/argument-types/series-labels-visual-args.interface.d.ts +34 -0
  35. package/argument-types/series-note-visual-args.interface.d.ts +50 -0
  36. package/argument-types/series-visual-args.interface.d.ts +83 -0
  37. package/argument-types/title-visual-args.interface.d.ts +34 -0
  38. package/common/api-types.d.ts +15 -0
  39. package/common/charts.d.ts +12 -0
  40. package/common/events.d.ts +29 -0
  41. package/common/property-types.d.ts +140 -0
  42. package/components/AxisDefaults.d.ts +26 -0
  43. package/components/CategoryAxis.d.ts +25 -0
  44. package/components/CategoryAxisItem.d.ts +27 -0
  45. package/components/ChartArea.d.ts +22 -0
  46. package/components/Legend.d.ts +26 -0
  47. package/components/Navigator.d.ts +26 -0
  48. package/components/Pane.d.ts +22 -0
  49. package/components/PaneDefaults.d.ts +26 -0
  50. package/components/Panes.d.ts +25 -0
  51. package/components/PlotArea.d.ts +19 -0
  52. package/components/Series.d.ts +25 -0
  53. package/components/SeriesDefaults.d.ts +22 -0
  54. package/components/SeriesItem.d.ts +34 -0
  55. package/components/Subtitle.d.ts +19 -0
  56. package/components/Title.d.ts +19 -0
  57. package/components/Tooltip.d.ts +29 -0
  58. package/components/ValueAxis.d.ts +25 -0
  59. package/components/ValueAxisItem.d.ts +26 -0
  60. package/components/XAxis.d.ts +25 -0
  61. package/components/XAxisItem.d.ts +26 -0
  62. package/components/YAxis.d.ts +25 -0
  63. package/components/YAxisItem.d.ts +20 -0
  64. package/components/Zoomable.d.ts +19 -0
  65. package/components/axis-defaults/Crosshair.d.ts +26 -0
  66. package/components/axis-defaults/CrosshairTooltip.d.ts +19 -0
  67. package/components/axis-defaults/Labels.d.ts +19 -0
  68. package/components/axis-defaults/Title.d.ts +19 -0
  69. package/components/axis-defaults/index.d.ts +12 -0
  70. package/components/base/CollectionConfigurationComponent.d.ts +27 -0
  71. package/components/base/ConfigurationComponent.d.ts +33 -0
  72. package/components/category-axis-item/Crosshair.d.ts +26 -0
  73. package/components/category-axis-item/CrosshairTooltip.d.ts +19 -0
  74. package/components/category-axis-item/Labels.d.ts +19 -0
  75. package/components/category-axis-item/Notes.d.ts +25 -0
  76. package/components/category-axis-item/NotesIcon.d.ts +19 -0
  77. package/components/category-axis-item/NotesLabel.d.ts +19 -0
  78. package/components/category-axis-item/RangeLabels.d.ts +19 -0
  79. package/components/category-axis-item/Select.d.ts +14 -0
  80. package/components/category-axis-item/Title.d.ts +19 -0
  81. package/components/category-axis-item/index.d.ts +17 -0
  82. package/components/index.d.ts +42 -0
  83. package/components/legend/InactiveItems.d.ts +19 -0
  84. package/components/legend/Item.d.ts +19 -0
  85. package/components/legend/Title.d.ts +20 -0
  86. package/components/legend/index.d.ts +11 -0
  87. package/components/navigator/CategoryAxis.d.ts +23 -0
  88. package/components/navigator/Hint.d.ts +20 -0
  89. package/components/navigator/Pane.d.ts +22 -0
  90. package/components/navigator/Select.d.ts +19 -0
  91. package/components/navigator/Series.d.ts +25 -0
  92. package/components/navigator/SeriesItem.d.ts +23 -0
  93. package/components/navigator/category-axis/Crosshair.d.ts +22 -0
  94. package/components/navigator/category-axis/CrosshairTooltip.d.ts +19 -0
  95. package/components/navigator/category-axis/Labels.d.ts +19 -0
  96. package/components/navigator/category-axis/Notes.d.ts +19 -0
  97. package/components/navigator/category-axis/NotesIcon.d.ts +19 -0
  98. package/components/navigator/category-axis/NotesLabel.d.ts +19 -0
  99. package/components/navigator/category-axis/Select.d.ts +14 -0
  100. package/components/navigator/category-axis/Title.d.ts +19 -0
  101. package/components/navigator/category-axis/index.d.ts +16 -0
  102. package/components/navigator/index.d.ts +17 -0
  103. package/components/navigator/pane/Title.d.ts +19 -0
  104. package/components/navigator/pane/index.d.ts +9 -0
  105. package/components/navigator/series-item/ErrorBars.d.ts +19 -0
  106. package/components/navigator/series-item/Extremes.d.ts +19 -0
  107. package/components/navigator/series-item/Highlight.d.ts +19 -0
  108. package/components/navigator/series-item/Labels.d.ts +22 -0
  109. package/components/navigator/series-item/LabelsFrom.d.ts +19 -0
  110. package/components/navigator/series-item/LabelsTo.d.ts +19 -0
  111. package/components/navigator/series-item/Markers.d.ts +19 -0
  112. package/components/navigator/series-item/Notes.d.ts +22 -0
  113. package/components/navigator/series-item/NotesIcon.d.ts +19 -0
  114. package/components/navigator/series-item/NotesLabel.d.ts +19 -0
  115. package/components/navigator/series-item/Outliers.d.ts +19 -0
  116. package/components/navigator/series-item/Tooltip.d.ts +27 -0
  117. package/components/navigator/series-item/index.d.ts +20 -0
  118. package/components/pane/Title.d.ts +19 -0
  119. package/components/pane/index.d.ts +9 -0
  120. package/components/pane-defaults/Title.d.ts +19 -0
  121. package/components/pane-defaults/index.d.ts +9 -0
  122. package/components/series-defaults/Labels.d.ts +22 -0
  123. package/components/series-defaults/LabelsFrom.d.ts +19 -0
  124. package/components/series-defaults/LabelsTo.d.ts +19 -0
  125. package/components/series-defaults/Notes.d.ts +22 -0
  126. package/components/series-defaults/NotesIcon.d.ts +19 -0
  127. package/components/series-defaults/NotesLabel.d.ts +19 -0
  128. package/components/series-defaults/Tooltip.d.ts +27 -0
  129. package/components/series-defaults/index.d.ts +15 -0
  130. package/components/series-item/ErrorBars.d.ts +19 -0
  131. package/components/series-item/Extremes.d.ts +19 -0
  132. package/components/series-item/Highlight.d.ts +19 -0
  133. package/components/series-item/Labels.d.ts +26 -0
  134. package/components/series-item/LabelsFrom.d.ts +19 -0
  135. package/components/series-item/LabelsTo.d.ts +19 -0
  136. package/components/series-item/Markers.d.ts +19 -0
  137. package/components/series-item/Notes.d.ts +22 -0
  138. package/components/series-item/NotesIcon.d.ts +19 -0
  139. package/components/series-item/NotesLabel.d.ts +19 -0
  140. package/components/series-item/Outliers.d.ts +19 -0
  141. package/components/series-item/Tooltip.d.ts +27 -0
  142. package/components/series-item/index.d.ts +20 -0
  143. package/components/value-axis-item/Crosshair.d.ts +26 -0
  144. package/components/value-axis-item/CrosshairTooltip.d.ts +19 -0
  145. package/components/value-axis-item/Labels.d.ts +19 -0
  146. package/components/value-axis-item/Notes.d.ts +26 -0
  147. package/components/value-axis-item/NotesIcon.d.ts +19 -0
  148. package/components/value-axis-item/NotesLabel.d.ts +19 -0
  149. package/components/value-axis-item/Title.d.ts +19 -0
  150. package/components/value-axis-item/index.d.ts +15 -0
  151. package/components/x-axis-item/Crosshair.d.ts +26 -0
  152. package/components/x-axis-item/CrosshairTooltip.d.ts +19 -0
  153. package/components/x-axis-item/Labels.d.ts +19 -0
  154. package/components/x-axis-item/Notes.d.ts +26 -0
  155. package/components/x-axis-item/NotesIcon.d.ts +19 -0
  156. package/components/x-axis-item/NotesLabel.d.ts +19 -0
  157. package/components/x-axis-item/Title.d.ts +19 -0
  158. package/components/x-axis-item/index.d.ts +15 -0
  159. package/components/y-axis-item/Crosshair.d.ts +26 -0
  160. package/components/y-axis-item/CrosshairTooltip.d.ts +19 -0
  161. package/components/y-axis-item/Labels.d.ts +19 -0
  162. package/components/y-axis-item/Notes.d.ts +22 -0
  163. package/components/y-axis-item/NotesIcon.d.ts +19 -0
  164. package/components/y-axis-item/NotesLabel.d.ts +19 -0
  165. package/components/y-axis-item/Title.d.ts +19 -0
  166. package/components/y-axis-item/index.d.ts +15 -0
  167. package/defaults.d.ts +8 -0
  168. package/dist/cdn/js/kendo-react-charts.js +1 -1
  169. package/events/axis-label-click-event.d.ts +39 -0
  170. package/events/base-event.d.ts +21 -0
  171. package/events/chart-event-builder.d.ts +13 -0
  172. package/events/dom-event.d.ts +26 -0
  173. package/events/drag-end-event.d.ts +29 -0
  174. package/events/drag-event.d.ts +29 -0
  175. package/events/drag-start-event.d.ts +29 -0
  176. package/events/drilldown-event.d.ts +45 -0
  177. package/events/drilldown-state-change-event.d.ts +29 -0
  178. package/events/legend-item-click-event.d.ts +39 -0
  179. package/events/legend-item-hover-event.d.ts +39 -0
  180. package/events/legend-item-leave-event.d.ts +39 -0
  181. package/events/navigator-filter-event.d.ts +26 -0
  182. package/events/note-click-event.d.ts +39 -0
  183. package/events/note-hover-event.d.ts +39 -0
  184. package/events/plot-area-click-event.d.ts +38 -0
  185. package/events/plot-area-hover-event.d.ts +38 -0
  186. package/events/preventable-event.d.ts +25 -0
  187. package/events/render-event.d.ts +18 -0
  188. package/events/select-end-event.d.ts +31 -0
  189. package/events/select-event.d.ts +31 -0
  190. package/events/select-start-event.d.ts +31 -0
  191. package/events/series-click-event.d.ts +52 -0
  192. package/events/series-hover-event.d.ts +56 -0
  193. package/events/zoom-end-event.d.ts +31 -0
  194. package/events/zoom-event.d.ts +35 -0
  195. package/events/zoom-start-event.d.ts +29 -0
  196. package/field-types/auto-base-unit-steps.interface.d.ts +46 -0
  197. package/field-types/axis-labels-position.d.ts +24 -0
  198. package/field-types/axis-line.interface.d.ts +29 -0
  199. package/field-types/axis-ticks.interface.d.ts +36 -0
  200. package/field-types/axis-title-position.d.ts +24 -0
  201. package/field-types/base-unit.d.ts +36 -0
  202. package/field-types/border.interface.d.ts +31 -0
  203. package/field-types/bullet-target-line.interface.d.ts +16 -0
  204. package/field-types/bullet-target.interface.d.ts +26 -0
  205. package/field-types/category-base-unit.d.ts +37 -0
  206. package/field-types/dash-type.d.ts +30 -0
  207. package/field-types/date-formats.interface.d.ts +46 -0
  208. package/field-types/drag-action.interface.d.ts +22 -0
  209. package/field-types/error-bar-line.interface.d.ts +21 -0
  210. package/field-types/grid-lines.interface.d.ts +37 -0
  211. package/field-types/highlight-line.interface.d.ts +29 -0
  212. package/field-types/label-connectors.interface.d.ts +24 -0
  213. package/field-types/label-rotation.interface.d.ts +26 -0
  214. package/field-types/legend-labels.interface.d.ts +35 -0
  215. package/field-types/line-style.d.ts +30 -0
  216. package/field-types/lock-axis.d.ts +11 -0
  217. package/field-types/margin.interface.d.ts +28 -0
  218. package/field-types/marker-type.d.ts +33 -0
  219. package/field-types/modifier-key.d.ts +11 -0
  220. package/field-types/mousewheel-select.interface.d.ts +25 -0
  221. package/field-types/mousewheel-zoom.interface.d.ts +25 -0
  222. package/field-types/negative-bubble-values.interface.d.ts +20 -0
  223. package/field-types/note-label-position.d.ts +31 -0
  224. package/field-types/note-line.interface.d.ts +29 -0
  225. package/field-types/note-position.d.ts +31 -0
  226. package/field-types/overlay.interface.d.ts +22 -0
  227. package/field-types/padding.interface.d.ts +13 -0
  228. package/field-types/plot-band-label.interface.d.ts +94 -0
  229. package/field-types/plot-band.interface.d.ts +37 -0
  230. package/field-types/series-labels-position.d.ts +23 -0
  231. package/field-types/series-line.interface.d.ts +35 -0
  232. package/field-types/series-stack.interface.d.ts +24 -0
  233. package/field-types/series-type.d.ts +31 -0
  234. package/field-types/trendline-forecast.interface.d.ts +20 -0
  235. package/field-types/week-start-day.enum.d.ts +40 -0
  236. package/index.d.mts +32 -9258
  237. package/index.d.ts +32 -9258
  238. package/messages.d.ts +17 -0
  239. package/methods/index.d.ts +43 -0
  240. package/option-types/axis-crosshair-tooltip.interface.d.ts +42 -0
  241. package/option-types/axis-defaults/crosshair.interface.d.ts +48 -0
  242. package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +13 -0
  243. package/option-types/axis-defaults/labels.interface.d.ts +76 -0
  244. package/option-types/axis-defaults/title.interface.d.ts +74 -0
  245. package/option-types/axis-defaults.interface.d.ts +80 -0
  246. package/option-types/category-axis-item/crosshair.interface.d.ts +47 -0
  247. package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  248. package/option-types/category-axis-item/labels.interface.d.ts +110 -0
  249. package/option-types/category-axis-item/notes.icon.interface.d.ts +39 -0
  250. package/option-types/category-axis-item/notes.interface.d.ts +52 -0
  251. package/option-types/category-axis-item/notes.label.interface.d.ts +53 -0
  252. package/option-types/category-axis-item/range-labels.interface.d.ts +31 -0
  253. package/option-types/category-axis-item/select.interface.d.ts +33 -0
  254. package/option-types/category-axis-item/title.interface.d.ts +72 -0
  255. package/option-types/category-axis-item.interface.d.ts +166 -0
  256. package/option-types/chart-area.interface.d.ts +37 -0
  257. package/option-types/legend/inactive-items.interface.d.ts +17 -0
  258. package/option-types/legend/item.interface.d.ts +124 -0
  259. package/option-types/legend/legend-title.interface.d.ts +68 -0
  260. package/option-types/legend.interface.d.ts +106 -0
  261. package/option-types/navigator/hint.interface.d.ts +25 -0
  262. package/option-types/navigator/select.interface.d.ts +25 -0
  263. package/option-types/navigator.interface.d.ts +44 -0
  264. package/option-types/pane/title.interface.d.ts +65 -0
  265. package/option-types/pane-defaults/title.interface.d.ts +59 -0
  266. package/option-types/pane-defaults.interface.d.ts +46 -0
  267. package/option-types/pane.interface.d.ts +53 -0
  268. package/option-types/plot-area.interface.d.ts +33 -0
  269. package/option-types/series-defaults/labels.from.interface.d.ts +58 -0
  270. package/option-types/series-defaults/labels.interface.d.ts +80 -0
  271. package/option-types/series-defaults/labels.to.interface.d.ts +58 -0
  272. package/option-types/series-defaults/notes.icon.interface.d.ts +39 -0
  273. package/option-types/series-defaults/notes.interface.d.ts +43 -0
  274. package/option-types/series-defaults/notes.label.interface.d.ts +53 -0
  275. package/option-types/series-defaults/tooltip.interface.d.ts +48 -0
  276. package/option-types/series-defaults.interface.d.ts +103 -0
  277. package/option-types/series-item/error-bars.interface.d.ts +64 -0
  278. package/option-types/series-item/extremes.interface.d.ts +39 -0
  279. package/option-types/series-item/highlight.interface.d.ts +74 -0
  280. package/option-types/series-item/labels.from.interface.d.ts +74 -0
  281. package/option-types/series-item/labels.interface.d.ts +109 -0
  282. package/option-types/series-item/labels.to.interface.d.ts +72 -0
  283. package/option-types/series-item/markers.interface.d.ts +72 -0
  284. package/option-types/series-item/notes.icon.interface.d.ts +39 -0
  285. package/option-types/series-item/notes.interface.d.ts +53 -0
  286. package/option-types/series-item/notes.label.interface.d.ts +53 -0
  287. package/option-types/series-item/outliers.interface.d.ts +39 -0
  288. package/option-types/series-item/tooltip.interface.d.ts +49 -0
  289. package/option-types/series-item/trendline.interface.d.ts +37 -0
  290. package/option-types/series-item.interface.d.ts +492 -0
  291. package/option-types/subtitle.interface.d.ts +68 -0
  292. package/option-types/title.interface.d.ts +66 -0
  293. package/option-types/tooltip-border.interface.d.ts +22 -0
  294. package/option-types/tooltip.interface.d.ts +56 -0
  295. package/option-types/value-axis-item/crosshair.interface.d.ts +33 -0
  296. package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  297. package/option-types/value-axis-item/labels.interface.d.ts +88 -0
  298. package/option-types/value-axis-item/notes.icon.interface.d.ts +39 -0
  299. package/option-types/value-axis-item/notes.interface.d.ts +52 -0
  300. package/option-types/value-axis-item/notes.label.interface.d.ts +53 -0
  301. package/option-types/value-axis-item/title.interface.d.ts +73 -0
  302. package/option-types/value-axis-item.interface.d.ts +121 -0
  303. package/option-types/x-axis-item/crosshair.interface.d.ts +33 -0
  304. package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  305. package/option-types/x-axis-item/labels.interface.d.ts +95 -0
  306. package/option-types/x-axis-item/notes.icon.interface.d.ts +39 -0
  307. package/option-types/x-axis-item/notes.interface.d.ts +53 -0
  308. package/option-types/x-axis-item/notes.label.interface.d.ts +53 -0
  309. package/option-types/x-axis-item/title.interface.d.ts +72 -0
  310. package/option-types/x-axis-item.interface.d.ts +142 -0
  311. package/option-types/y-axis-item/crosshair.interface.d.ts +33 -0
  312. package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +13 -0
  313. package/option-types/y-axis-item/labels.interface.d.ts +95 -0
  314. package/option-types/y-axis-item/notes.icon.interface.d.ts +39 -0
  315. package/option-types/y-axis-item/notes.interface.d.ts +52 -0
  316. package/option-types/y-axis-item/notes.label.interface.d.ts +53 -0
  317. package/option-types/y-axis-item/title.interface.d.ts +73 -0
  318. package/option-types/y-axis-item.interface.d.ts +138 -0
  319. package/option-types/zoomable.interface.d.ts +21 -0
  320. package/package-metadata.d.ts +12 -0
  321. package/package-metadata.js +1 -1
  322. package/package-metadata.mjs +10 -16
  323. package/package.json +6 -6
  324. package/sankey/Sankey.d.ts +13 -0
  325. package/sankey/SankeyTooltip.d.ts +12 -0
  326. package/sankey/index.d.ts +11 -0
  327. package/sankey/messages.d.ts +17 -0
  328. package/sankey/propTypes.d.ts +226 -0
  329. package/sankey/theme-service.d.ts +12 -0
  330. package/sankey/types.d.ts +206 -0
  331. package/sankey/utils.d.ts +12 -0
  332. package/store/reducer.d.ts +21 -0
  333. package/store/store.d.ts +32 -0
  334. package/tooltip/Context.d.ts +36 -0
  335. package/tooltip/Crosshair.d.ts +44 -0
  336. package/tooltip/CrosshairContainer.d.ts +35 -0
  337. package/tooltip/Point.d.ts +78 -0
  338. package/tooltip/Popup.d.ts +39 -0
  339. package/tooltip/Series.d.ts +42 -0
  340. package/tooltip/SharedTooltipContent.d.ts +19 -0
  341. package/tooltip/index.d.ts +10 -0
  342. package/utils/index.d.ts +20 -0
@@ -0,0 +1,34 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the legend item visual function.
12
+ */
13
+ export interface LegendItemVisualArgs {
14
+ /**
15
+ * A function that can be used to get the default visual.
16
+ */
17
+ createVisual: () => drawing.Element;
18
+ /**
19
+ * The options of the legend item.
20
+ */
21
+ options: any;
22
+ /**
23
+ * The index of the point in the series. Available for the Donut, Pie, and Funnel series.
24
+ */
25
+ pointIndex: any;
26
+ /**
27
+ * The instance of the Chart component.
28
+ */
29
+ sender: Chart;
30
+ /**
31
+ * The item series.
32
+ */
33
+ series: any;
34
+ }
@@ -0,0 +1,28 @@
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
+ * The context for the legend label content function.
10
+ */
11
+ export interface LegendLabelsContentArgs {
12
+ /**
13
+ * The text of the legend item.
14
+ */
15
+ text: string;
16
+ /**
17
+ * The series configuration object.
18
+ */
19
+ series: any;
20
+ /**
21
+ * The point value of the Donut and Pie charts.
22
+ */
23
+ value?: any;
24
+ /**
25
+ * The point value which is represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts.
26
+ */
27
+ percentage?: number;
28
+ }
@@ -0,0 +1,46 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing, geometry } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the markers visual function.
12
+ */
13
+ export interface MarkersVisualArgs {
14
+ /**
15
+ * The point category.
16
+ */
17
+ category: any;
18
+ /**
19
+ * A function that can be used to get the default visual.
20
+ */
21
+ createVisual: () => drawing.Element;
22
+ /**
23
+ * The point data item.
24
+ */
25
+ dataItem: any;
26
+ /**
27
+ * The marker options.
28
+ */
29
+ options: any;
30
+ /**
31
+ * The rectangle that defines the normal position of the visual.
32
+ */
33
+ rect: geometry.Rect;
34
+ /**
35
+ * The instance of the Chart component.
36
+ */
37
+ sender: Chart;
38
+ /**
39
+ * The point series.
40
+ */
41
+ series: any;
42
+ /**
43
+ * The point value.
44
+ */
45
+ value: any;
46
+ }
@@ -0,0 +1,34 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing, geometry } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the function of the plot bands label visual.
12
+ */
13
+ export interface PlotBandLabelVisualArgs {
14
+ /**
15
+ * A function that can be used to get the default visual.
16
+ */
17
+ createVisual: () => drawing.Element;
18
+ /**
19
+ * The label options.
20
+ */
21
+ options: any;
22
+ /**
23
+ * The rectangle that defines the normal position of the visual.
24
+ */
25
+ rect: geometry.Rect;
26
+ /**
27
+ * The instance of the Chart component.
28
+ */
29
+ sender: Chart;
30
+ /**
31
+ * The label text.
32
+ */
33
+ text: string;
34
+ }
@@ -0,0 +1,34 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing, geometry } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the series label visual function.
12
+ */
13
+ export interface SeriesLabelsVisualArgs {
14
+ /**
15
+ * A function that can be used to get the default visual.
16
+ */
17
+ createVisual: () => drawing.Element;
18
+ /**
19
+ * The options of the label.
20
+ */
21
+ options: any;
22
+ /**
23
+ * The rectangle that defines the normal position of the visual.
24
+ */
25
+ rect: geometry.Rect;
26
+ /**
27
+ * The instance of the Chart component.
28
+ */
29
+ sender: Chart;
30
+ /**
31
+ * The text of the label.
32
+ */
33
+ text: string;
34
+ }
@@ -0,0 +1,50 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing, geometry } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the point highlight visual function.
12
+ */
13
+ export interface SeriesNoteVisualArgs {
14
+ /**
15
+ * The point category.
16
+ */
17
+ category: any;
18
+ /**
19
+ * A function that can be used to get the default visual.
20
+ */
21
+ createVisual: () => drawing.Element;
22
+ /**
23
+ * The point data item.
24
+ */
25
+ dataItem: any;
26
+ /**
27
+ * The options of the note.
28
+ */
29
+ options: any;
30
+ /**
31
+ * The rectangle that defines the normal position of the visual.
32
+ */
33
+ rect: geometry.Rect;
34
+ /**
35
+ * The instance of the Chart component.
36
+ */
37
+ sender: Chart;
38
+ /**
39
+ * The point series.
40
+ */
41
+ series: any;
42
+ /**
43
+ * The value of the point.
44
+ */
45
+ value: string;
46
+ /**
47
+ * The text of the note.
48
+ */
49
+ text: string;
50
+ }
@@ -0,0 +1,83 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing, geometry } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the series point visual function.
12
+ */
13
+ export interface SeriesVisualArgs {
14
+ /**
15
+ * The point category.
16
+ */
17
+ category: any;
18
+ /**
19
+ * A function that can be used to get the default visual.
20
+ */
21
+ createVisual: () => drawing.Element;
22
+ /**
23
+ * The center point of the segment.
24
+ * Available for the Donut and Pie series.
25
+ */
26
+ center?: geometry.Point;
27
+ /**
28
+ * The point data item.
29
+ */
30
+ dataItem: any;
31
+ /**
32
+ * The end angle of the segment. Available for the Donut and Pie series.
33
+ */
34
+ endAngle?: number;
35
+ /**
36
+ * The inner radius of the segment. Available for the Donut and Pie series.
37
+ */
38
+ innerRadius?: number;
39
+ /**
40
+ * The point options.
41
+ */
42
+ options: any;
43
+ /**
44
+ * The point value represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts.
45
+ */
46
+ percentage?: number;
47
+ /**
48
+ * The segment points. Available for the Donut and Pie series.
49
+ */
50
+ points?: geometry.Point[];
51
+ /**
52
+ * The segment radius. Available for the Donut and Pie series.
53
+ */
54
+ radius?: number;
55
+ /**
56
+ * The rectangle that defines the normal position of the visual.
57
+ */
58
+ rect: geometry.Rect;
59
+ /**
60
+ * The sum of point values since the last `runningTotal` summary point. Available for the Waterfall series.
61
+ */
62
+ runningTotal?: number;
63
+ /**
64
+ * The instance of the Chart component.
65
+ */
66
+ sender: Chart;
67
+ /**
68
+ * The point series.
69
+ */
70
+ series: any;
71
+ /**
72
+ * The start angle of the segment. Available for the Donut and Pie series.
73
+ */
74
+ startAngle?: number;
75
+ /**
76
+ * The sum of all previous series values. Available for the Waterfall series.
77
+ */
78
+ total?: number;
79
+ /**
80
+ * The point value.
81
+ */
82
+ value: any;
83
+ }
@@ -0,0 +1,34 @@
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 { Chart } from '../Chart.js';
9
+ import { drawing, geometry } from '@progress/kendo-drawing';
10
+ /**
11
+ * The context for the title visual function.
12
+ */
13
+ export interface TitleVisualArgs {
14
+ /**
15
+ * A function that can be used to get the default visual.
16
+ */
17
+ createVisual: () => drawing.Element;
18
+ /**
19
+ * The title options.
20
+ */
21
+ options: any;
22
+ /**
23
+ * The rectangle that defines the normal position of the visual.
24
+ */
25
+ rect: geometry.Rect;
26
+ /**
27
+ * The instance of the Chart component.
28
+ */
29
+ sender: Chart;
30
+ /**
31
+ * The text of the title.
32
+ */
33
+ text: string;
34
+ }
@@ -0,0 +1,15 @@
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
+ export type { AxisRange } from '../api-types/axis-range.interface.js';
9
+ export type { EventAxisOptions } from '../api-types/event-axis-options.interface.js';
10
+ export type { EventSeriesOptions } from '../api-types/event-series-options.interface.js';
11
+ export type { SeriesPointType } from '../api-types/series-point.interface.js';
12
+ export type { ChartAxisType } from '../api-types/chart-axis.interface.js';
13
+ export type { ChartPaneType } from '../api-types/chart-pane.interface.js';
14
+ export type { ChartPlotAreaType } from '../api-types/chart-plotarea.interface.js';
15
+ export type { ChartDrilldownStep, ChartDrilldownState } from '../api-types/chart-drilldown-state.interface.js';
@@ -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 { Chart } from './../Chart.js';
9
+ import { StockChart } from './../StockChart.js';
10
+ import { Sparkline } from './../Sparkline.js';
11
+ type Charts = Chart | StockChart | Sparkline;
12
+ export { Charts };
@@ -0,0 +1,29 @@
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
+ export { AxisLabelClickEvent } from '../events/axis-label-click-event.js';
9
+ export { DragEndEvent } from '../events/drag-end-event.js';
10
+ export { DragEvent } from '../events/drag-event.js';
11
+ export { DragStartEvent } from '../events/drag-start-event.js';
12
+ export { DrilldownEvent } from '../events/drilldown-event.js';
13
+ export { DrilldownStateChangeEvent } from '../events/drilldown-state-change-event.js';
14
+ export { LegendItemClickEvent } from '../events/legend-item-click-event.js';
15
+ export { LegendItemHoverEvent } from '../events/legend-item-hover-event.js';
16
+ export { NavigatorFilterEvent } from '../events/navigator-filter-event.js';
17
+ export { NoteClickEvent } from '../events/note-click-event.js';
18
+ export { NoteHoverEvent } from '../events/note-hover-event.js';
19
+ export { PlotAreaClickEvent } from '../events/plot-area-click-event.js';
20
+ export { PlotAreaHoverEvent } from '../events/plot-area-hover-event.js';
21
+ export { RenderEvent } from '../events/render-event.js';
22
+ export { SelectEndEvent } from '../events/select-end-event.js';
23
+ export { SelectEvent } from '../events/select-event.js';
24
+ export { SelectStartEvent } from '../events/select-start-event.js';
25
+ export { SeriesClickEvent } from '../events/series-click-event.js';
26
+ export { SeriesHoverEvent } from '../events/series-hover-event.js';
27
+ export { ZoomEndEvent } from '../events/zoom-end-event.js';
28
+ export { ZoomEvent } from '../events/zoom-event.js';
29
+ export { ZoomStartEvent } from '../events/zoom-start-event.js';
@@ -0,0 +1,140 @@
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
+ export type { AutoBaseUnitSteps } from '../field-types/auto-base-unit-steps.interface.js';
9
+ export type { AxisLabelsPosition } from '../field-types/axis-labels-position.js';
10
+ export type { AxisLine } from '../field-types/axis-line.interface.js';
11
+ export type { AxisTicks } from '../field-types/axis-ticks.interface.js';
12
+ export type { AxisTitlePosition } from '../field-types/axis-title-position.js';
13
+ export type { BaseUnit } from '../field-types/base-unit.js';
14
+ export type { Border } from '../field-types/border.interface.js';
15
+ export type { BulletTarget } from '../field-types/bullet-target.interface.js';
16
+ export type { BulletTargetLine } from '../field-types/bullet-target-line.interface.js';
17
+ export type { CategoryBaseUnit } from '../field-types/category-base-unit.js';
18
+ export type { DashType } from '../field-types/dash-type.js';
19
+ export type { DateFormats } from '../field-types/date-formats.interface.js';
20
+ export type { DragAction } from '../field-types/drag-action.interface.js';
21
+ export type { ErrorBarLine } from '../field-types/error-bar-line.interface.js';
22
+ export type { GridLines } from '../field-types/grid-lines.interface.js';
23
+ export type { HighlightLine } from '../field-types/highlight-line.interface.js';
24
+ export type { LabelConnectors } from '../field-types/label-connectors.interface.js';
25
+ export type { LabelRotation } from '../field-types/label-rotation.interface.js';
26
+ export type { LegendLabels } from '../field-types/legend-labels.interface.js';
27
+ export type { LineStyle } from '../field-types/line-style.js';
28
+ export type { LockAxis } from '../field-types/lock-axis.js';
29
+ export type { Margin } from '../field-types/margin.interface.js';
30
+ export type { MarkerType } from '../field-types/marker-type.js';
31
+ export type { ModifierKey } from '../field-types/modifier-key.js';
32
+ export type { MousewheelZoom } from '../field-types/mousewheel-zoom.interface.js';
33
+ export type { MousewheelSelect } from '../field-types/mousewheel-select.interface.js';
34
+ export type { NegativeBubbleValues } from '../field-types/negative-bubble-values.interface.js';
35
+ export type { NoteLabelPosition } from '../field-types/note-label-position.js';
36
+ export type { NoteLine } from '../field-types/note-line.interface.js';
37
+ export type { NotePosition } from '../field-types/note-position.js';
38
+ export type { Overlay } from '../field-types/overlay.interface.js';
39
+ export type { Padding } from '../field-types/padding.interface.js';
40
+ export type { PlotBand } from '../field-types/plot-band.interface.js';
41
+ export type { PlotBandLabel } from '../field-types/plot-band-label.interface.js';
42
+ export type { SeriesLabelsPosition } from '../field-types/series-labels-position.js';
43
+ export type { SeriesLine } from '../field-types/series-line.interface.js';
44
+ export type { SeriesStack } from '../field-types/series-stack.interface.js';
45
+ export type { SeriesType } from '../field-types/series-type.js';
46
+ export type { TrendlineForecast } from '../field-types/trendline-forecast.interface.js';
47
+ export type { WeekStartDay } from '../field-types/week-start-day.enum.js';
48
+ export type { AxisLabelVisualArgs } from '../argument-types/axis-label-visual-args.interface.js';
49
+ export type { AxisNoteVisualArgs } from '../argument-types/axis-note-visual-args.interface.js';
50
+ export type { ErrorBarsVisualArgs } from '../argument-types/error-bars-visual-args.interface.js';
51
+ export type { HighlightToggleArgs } from '../argument-types/highlight-toggle-args.interface.js';
52
+ export type { HighlightVisualArgs } from '../argument-types/highlight-visual-args.interface.js';
53
+ export type { LegendItemVisualArgs } from '../argument-types/legend-item-visual-args.interface.js';
54
+ export type { LegendLabelsContentArgs } from '../argument-types/legend-labels-content-args.interface.js';
55
+ export type { MarkersVisualArgs } from '../argument-types/markers-visual-args.interface.js';
56
+ export type { SeriesLabelsVisualArgs } from '../argument-types/series-labels-visual-args.interface.js';
57
+ export type { SeriesNoteVisualArgs } from '../argument-types/series-note-visual-args.interface.js';
58
+ export type { SeriesVisualArgs } from '../argument-types/series-visual-args.interface.js';
59
+ export type { TitleVisualArgs } from '../argument-types/title-visual-args.interface.js';
60
+ export type { PlotBandLabelVisualArgs } from '../argument-types/plot-band-label-visual-args.interface.js';
61
+ export type { DrilldownSeriesFactoryProps } from '../argument-types/drilldown-series-factory-props.interface.js';
62
+ export type { AxisDefaultsCrosshair } from '../option-types/axis-defaults/crosshair.interface.js';
63
+ export type { AxisDefaultsCrosshairTooltip } from '../option-types/axis-defaults/crosshair.tooltip.interface.js';
64
+ export type { AxisDefaultsLabels } from '../option-types/axis-defaults/labels.interface.js';
65
+ export type { AxisDefaultsTitle } from '../option-types/axis-defaults/title.interface.js';
66
+ export type { AxisDefaults } from '../option-types/axis-defaults.interface.js';
67
+ export type { TooltipBorder } from '../option-types/tooltip-border.interface.js';
68
+ export type { CategoryAxisCrosshair } from '../option-types/category-axis-item/crosshair.interface.js';
69
+ export type { CategoryAxisCrosshairTooltip } from '../option-types/category-axis-item/crosshair.tooltip.interface.js';
70
+ export type { CategoryAxisLabels } from '../option-types/category-axis-item/labels.interface.js';
71
+ export type { CategoryAxisNotes } from '../option-types/category-axis-item/notes.interface.js';
72
+ export type { CategoryAxisNotesIcon } from '../option-types/category-axis-item/notes.icon.interface.js';
73
+ export type { CategoryAxisNotesLabel } from '../option-types/category-axis-item/notes.label.interface.js';
74
+ export type { CategoryAxisRangeLabels } from '../option-types/category-axis-item/range-labels.interface.js';
75
+ export type { CategoryAxisSelect } from '../option-types/category-axis-item/select.interface.js';
76
+ export type { CategoryAxisTitle } from '../option-types/category-axis-item/title.interface.js';
77
+ export type { CategoryAxis } from '../option-types/category-axis-item.interface.js';
78
+ export type { ChartingArea } from '../option-types/chart-area.interface.js';
79
+ export type { LegendInactiveItems } from '../option-types/legend/inactive-items.interface.js';
80
+ export type { LegendItem, LegendItemType, LegendItemMarkers, LegendItemMarkersBorder, LegendItemHighlight, LegendItemLine, LegendItemArea } from '../option-types/legend/item.interface.js';
81
+ export type { Legend } from '../option-types/legend.interface.js';
82
+ export type { LegendTitle } from '../option-types/legend/legend-title.interface.js';
83
+ export type { Navigator } from '../option-types/navigator.interface.js';
84
+ export type { NavigatorHint } from '../option-types/navigator/hint.interface.js';
85
+ export type { NavigatorSelect } from '../option-types/navigator/select.interface.js';
86
+ export type { PanesTitle } from '../option-types/pane/title.interface.js';
87
+ export type { Pane } from '../option-types/pane.interface.js';
88
+ export type { PaneDefaults } from '../option-types/pane-defaults.interface.js';
89
+ export type { PaneDefaultsTitle } from '../option-types/pane-defaults/title.interface.js';
90
+ export type { PlotArea } from '../option-types/plot-area.interface.js';
91
+ export type { SeriesDefaultsLabels } from '../option-types/series-defaults/labels.interface.js';
92
+ export type { SeriesDefaultsLabelsFrom } from '../option-types/series-defaults/labels.from.interface.js';
93
+ export type { SeriesDefaultsLabelsTo } from '../option-types/series-defaults/labels.to.interface.js';
94
+ export type { SeriesDefaultsNotes } from '../option-types/series-defaults/notes.interface.js';
95
+ export type { SeriesDefaultsNotesIcon } from '../option-types/series-defaults/notes.icon.interface.js';
96
+ export type { SeriesDefaultsNotesLabel } from '../option-types/series-defaults/notes.label.interface.js';
97
+ export type { SeriesDefaultsTooltip } from '../option-types/series-defaults/tooltip.interface.js';
98
+ export type { SeriesDefaults } from '../option-types/series-defaults.interface.js';
99
+ export type { SeriesErrorBars } from '../option-types/series-item/error-bars.interface.js';
100
+ export type { SeriesExtremes } from '../option-types/series-item/extremes.interface.js';
101
+ export type { SeriesHighlight } from '../option-types/series-item/highlight.interface.js';
102
+ export type { SeriesLabels } from '../option-types/series-item/labels.interface.js';
103
+ export type { SeriesLabelsFrom } from '../option-types/series-item/labels.from.interface.js';
104
+ export type { SeriesLabelsTo } from '../option-types/series-item/labels.to.interface.js';
105
+ export type { SeriesMarkers } from '../option-types/series-item/markers.interface.js';
106
+ export type { SeriesNotes } from '../option-types/series-item/notes.interface.js';
107
+ export type { SeriesNotesIcon } from '../option-types/series-item/notes.icon.interface.js';
108
+ export type { SeriesNotesLabel } from '../option-types/series-item/notes.label.interface.js';
109
+ export type { SeriesOutliers } from '../option-types/series-item/outliers.interface.js';
110
+ export type { SeriesTooltip } from '../option-types/series-item/tooltip.interface.js';
111
+ export type { SeriesTrendline } from '../option-types/series-item/trendline.interface.js';
112
+ export type { Series } from '../option-types/series-item.interface.js';
113
+ export type { Subtitle } from '../option-types/subtitle.interface.js';
114
+ export type { Title } from '../option-types/title.interface.js';
115
+ export type { Tooltip } from '../option-types/tooltip.interface.js';
116
+ export type { ValueAxisCrosshair } from '../option-types/value-axis-item/crosshair.interface.js';
117
+ export type { ValueAxisCrosshairTooltip } from '../option-types/value-axis-item/crosshair.tooltip.interface.js';
118
+ export type { ValueAxisLabels } from '../option-types/value-axis-item/labels.interface.js';
119
+ export type { ValueAxisNotes } from '../option-types/value-axis-item/notes.interface.js';
120
+ export type { ValueAxisNotesIcon } from '../option-types/value-axis-item/notes.icon.interface.js';
121
+ export type { ValueAxisNotesLabel } from '../option-types/value-axis-item/notes.label.interface.js';
122
+ export type { ValueAxisTitle } from '../option-types/value-axis-item/title.interface.js';
123
+ export type { ValueAxis } from '../option-types/value-axis-item.interface.js';
124
+ export type { XAxisCrosshair } from '../option-types/x-axis-item/crosshair.interface.js';
125
+ export type { XAxisCrosshairTooltip } from '../option-types/x-axis-item/crosshair.tooltip.interface.js';
126
+ export type { XAxisLabels } from '../option-types/x-axis-item/labels.interface.js';
127
+ export type { XAxisNotes } from '../option-types/x-axis-item/notes.interface.js';
128
+ export type { XAxisNotesIcon } from '../option-types/x-axis-item/notes.icon.interface.js';
129
+ export type { XAxisNotesLabel } from '../option-types/x-axis-item/notes.label.interface.js';
130
+ export type { XAxisTitle } from '../option-types/x-axis-item/title.interface.js';
131
+ export type { XAxis } from '../option-types/x-axis-item.interface.js';
132
+ export type { YAxisCrosshair } from '../option-types/y-axis-item/crosshair.interface.js';
133
+ export type { YAxisCrosshairTooltip } from '../option-types/y-axis-item/crosshair.tooltip.interface.js';
134
+ export type { YAxisLabels } from '../option-types/y-axis-item/labels.interface.js';
135
+ export type { YAxisNotes } from '../option-types/y-axis-item/notes.interface.js';
136
+ export type { YAxisNotesIcon } from '../option-types/y-axis-item/notes.icon.interface.js';
137
+ export type { YAxisNotesLabel } from '../option-types/y-axis-item/notes.label.interface.js';
138
+ export type { YAxisTitle } from '../option-types/y-axis-item/title.interface.js';
139
+ export type { YAxis } from '../option-types/y-axis-item.interface.js';
140
+ export type { Zoomable } from '../option-types/zoomable.interface.js';
@@ -0,0 +1,26 @@
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 { AxisDefaults } from '../common/property-types.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props of the KendoReact ChartAxisDefaults component ([see example](https://www.telerik.com/kendo-react-ui/components/charts/chart/elements/axes#toc-default-axis-configuration)).
12
+ */
13
+ export interface ChartAxisDefaultsProps extends AxisDefaults {
14
+ /**
15
+ * The child components of the ChartAxisDefaults. Supported child components are: ChartAxisDefaultsCrosshair, ChartAxisDefaultsLabels, ChartAxisDefaultsTitle.
16
+ */
17
+ children?: React.ReactNode;
18
+ }
19
+ /**
20
+ * Represents the KendoReact ChartAxisDefaults component.
21
+ *
22
+ * @remarks
23
+ * Supported children components are: {@link ChartAxisDefaultsCrosshair}, {@link ChartAxisDefaultsLabels}, {@link ChartAxisDefaultsTitle}.
24
+ */
25
+ declare const ChartAxisDefaults: React.FunctionComponent<ChartAxisDefaultsProps>;
26
+ export { ChartAxisDefaults };
@@ -0,0 +1,25 @@
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 * as React from 'react';
9
+ /**
10
+ * Represents the props of the KendoReact ChartCategoryAxis component ([see example](https://www.telerik.com/kendo-react-ui/components/charts/chart/elements/axes#toc-categorical-chart-axes)).
11
+ */
12
+ export interface ChartCategoryAxisProps {
13
+ /**
14
+ * The child components of the ChartCategoryAxis. Supported child components are: ChartCategoryAxisItem.
15
+ */
16
+ children?: React.ReactNode;
17
+ }
18
+ /**
19
+ * Represents the KendoReact ChartCategoryAxis component.
20
+ *
21
+ * @remarks
22
+ * Supported children components are: {@link ChartCategoryAxisItem}.
23
+ */
24
+ declare const ChartCategoryAxis: React.FunctionComponent<ChartCategoryAxisProps>;
25
+ export { ChartCategoryAxis };
@@ -0,0 +1,27 @@
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 { CategoryAxis } from '../common/property-types.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props of the KendoReact ChartCategoryAxisItem component ([see example](https://www.telerik.com/kendo-react-ui/components/charts/chart/elements/axes#toc-categorical-chart-axes)).
12
+ */
13
+ export interface ChartCategoryAxisItemProps extends CategoryAxis {
14
+ /**
15
+ * @hidden
16
+ */
17
+ children?: React.ReactNode;
18
+ }
19
+ /**
20
+ * Represents the KendoReact ChartCategoryAxisItemponent.
21
+ *
22
+ * @remarks
23
+ * Supported children components are: {@link ChartCategoryAxisCrosshair}, {@link ChartCategoryAxisLabels}, {@link ChartCategoryAxisNotes},
24
+ * {@link ChartCategoryAxisNotesIcon}, {@link ChartCategoryAxisNotesLabel}, {@link ChartCategoryAxisRangeLabels}, {@link ChartCategoryAxisSelect}, {@link ChartCategoryAxisTitle}.
25
+ */
26
+ declare const ChartCategoryAxisItem: React.FunctionComponent<ChartCategoryAxisItemProps>;
27
+ export { ChartCategoryAxisItem };
@@ -0,0 +1,22 @@
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 { ChartingArea } from '../common/property-types.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props of the KendoReact ChartArea component ([see example](https://www.telerik.com/kendo-react-ui/components/charts/chart/elements/chart-area)).
12
+ */
13
+ export interface ChartAreaProps extends ChartingArea {
14
+ }
15
+ /**
16
+ * Represents the KendoReact ChartArea component.
17
+ *
18
+ * @remarks
19
+ * Supported children components are: {@link ChartAreaItem}.
20
+ */
21
+ declare const ChartArea: React.FunctionComponent<ChartAreaProps>;
22
+ export { ChartArea };