@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
package/BaseChart.d.ts ADDED
@@ -0,0 +1,191 @@
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 { InstanceObserver } from '@progress/kendo-charts';
9
+ import { DomEvent } from './events/dom-event';
10
+ import { StoreAction } from './store/store';
11
+ import { PropType } from 'vue';
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const BaseChart: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
16
+ deriveOptionsFromParent: {
17
+ type: PropType<(options: any) => any>;
18
+ default: any;
19
+ };
20
+ chartConstructor: {
21
+ type: PropType<any>;
22
+ default: any;
23
+ };
24
+ className: PropType<string>;
25
+ chartStyle: PropType<object>;
26
+ wrapper: PropType<string>;
27
+ getTarget: {
28
+ type: PropType<() => any>;
29
+ default: any;
30
+ };
31
+ dataItems: {
32
+ type: PropType<any>;
33
+ default: any;
34
+ };
35
+ dir: PropType<string>;
36
+ renderAs: {
37
+ type: PropType<string>;
38
+ default: any;
39
+ validator: (value: string) => any;
40
+ };
41
+ pannable: {
42
+ type: PropType<boolean | import('./field-types/drag-action.interface').DragAction>;
43
+ default: any;
44
+ };
45
+ zoomable: {
46
+ type: PropType<boolean | import('./option-types/zoomable.interface').Zoomable>;
47
+ default: any;
48
+ };
49
+ seriesColors: {
50
+ type: PropType<string[]>;
51
+ default: any;
52
+ };
53
+ transitions: {
54
+ type: PropType<boolean>;
55
+ default: boolean;
56
+ };
57
+ paneDefaults: {
58
+ type: PropType<import('./option-types/pane-defaults.interface').PaneDefaults>;
59
+ default: any;
60
+ };
61
+ panes: {
62
+ type: PropType<import('./option-types/pane.interface').Pane[]>;
63
+ default: any;
64
+ };
65
+ seriesDefaults: {
66
+ type: PropType<import('./option-types/series-defaults.interface').SeriesDefaults>;
67
+ default: any;
68
+ };
69
+ axisDefaults: {
70
+ type: PropType<import('./option-types/axis-defaults.interface').AxisDefaults>;
71
+ default: any;
72
+ };
73
+ allListeners: {
74
+ type: PropType<object>;
75
+ default: any;
76
+ };
77
+ onLegenditemclick: PropType<(event: import('.').LegendItemClickEvent) => void>;
78
+ onBasechartevent: PropType<(event: any) => void>;
79
+ onRefresh: PropType<(chartOptions: any, themeOptions: any, chartInstance: any) => void>;
80
+ }>, {}, {
81
+ optionsState: {};
82
+ observersState: any[];
83
+ childrenObserver: InstanceObserver;
84
+ showLicenseWatermark: boolean;
85
+ licenseMessage: any;
86
+ }, {}, {
87
+ dispatchOptions(action: StoreAction): void;
88
+ dispatchObservers(action: StoreAction): void;
89
+ onDestroyed(): void;
90
+ getDirection(dir?: string): boolean;
91
+ getChartOptions(): any;
92
+ refresh(): void;
93
+ instantiateCoreChart(): void;
94
+ trigger(name: string, e: any): boolean;
95
+ triggerDomEvent(name: string, e: any): boolean;
96
+ onRender(e: any): void;
97
+ hasListener(name: string): boolean;
98
+ onLegendItemClick(e: any): void;
99
+ onWindowResize(): void;
100
+ onChartMouseLeave(e: any): void;
101
+ onChildMouseLeave(e: DomEvent<any>): boolean;
102
+ requiresHandlers(names: string[]): boolean;
103
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
104
+ deriveOptionsFromParent: {
105
+ type: PropType<(options: any) => any>;
106
+ default: any;
107
+ };
108
+ chartConstructor: {
109
+ type: PropType<any>;
110
+ default: any;
111
+ };
112
+ className: PropType<string>;
113
+ chartStyle: PropType<object>;
114
+ wrapper: PropType<string>;
115
+ getTarget: {
116
+ type: PropType<() => any>;
117
+ default: any;
118
+ };
119
+ dataItems: {
120
+ type: PropType<any>;
121
+ default: any;
122
+ };
123
+ dir: PropType<string>;
124
+ renderAs: {
125
+ type: PropType<string>;
126
+ default: any;
127
+ validator: (value: string) => any;
128
+ };
129
+ pannable: {
130
+ type: PropType<boolean | import('./field-types/drag-action.interface').DragAction>;
131
+ default: any;
132
+ };
133
+ zoomable: {
134
+ type: PropType<boolean | import('./option-types/zoomable.interface').Zoomable>;
135
+ default: any;
136
+ };
137
+ seriesColors: {
138
+ type: PropType<string[]>;
139
+ default: any;
140
+ };
141
+ transitions: {
142
+ type: PropType<boolean>;
143
+ default: boolean;
144
+ };
145
+ paneDefaults: {
146
+ type: PropType<import('./option-types/pane-defaults.interface').PaneDefaults>;
147
+ default: any;
148
+ };
149
+ panes: {
150
+ type: PropType<import('./option-types/pane.interface').Pane[]>;
151
+ default: any;
152
+ };
153
+ seriesDefaults: {
154
+ type: PropType<import('./option-types/series-defaults.interface').SeriesDefaults>;
155
+ default: any;
156
+ };
157
+ axisDefaults: {
158
+ type: PropType<import('./option-types/axis-defaults.interface').AxisDefaults>;
159
+ default: any;
160
+ };
161
+ allListeners: {
162
+ type: PropType<object>;
163
+ default: any;
164
+ };
165
+ onLegenditemclick: PropType<(event: import('.').LegendItemClickEvent) => void>;
166
+ onBasechartevent: PropType<(event: any) => void>;
167
+ onRefresh: PropType<(chartOptions: any, themeOptions: any, chartInstance: any) => void>;
168
+ }>> & Readonly<{}>, {
169
+ deriveOptionsFromParent: (options: any) => any;
170
+ chartConstructor: any;
171
+ getTarget: () => any;
172
+ dataItems: any;
173
+ renderAs: string;
174
+ pannable: any;
175
+ zoomable: any;
176
+ seriesColors: string[];
177
+ transitions: boolean;
178
+ paneDefaults: import('./option-types/pane-defaults.interface').PaneDefaults;
179
+ panes: import('./option-types/pane.interface').Pane[];
180
+ seriesDefaults: import('./option-types/series-defaults.interface').SeriesDefaults;
181
+ axisDefaults: import('./option-types/axis-defaults.interface').AxisDefaults;
182
+ allListeners: object;
183
+ }, {}, {}, {}, string, () => {
184
+ optionsState: any;
185
+ dispatchOptions: any;
186
+ observersState: any;
187
+ dispatchObservers: any;
188
+ childrenObserver: any;
189
+ chartRefresh: any;
190
+ }, true, {}, any>;
191
+ export { BaseChart };
@@ -0,0 +1,193 @@
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 { AxisLabelClickEvent, DragEvent, DragStartEvent, DragEndEvent, LegendItemClickEvent, LegendItemHoverEvent, NoteClickEvent, NoteHoverEvent, PlotAreaClickEvent, PlotAreaHoverEvent, RenderEvent, SeriesClickEvent, SeriesHoverEvent, ZoomEvent, ZoomStartEvent, ZoomEndEvent, SelectEvent, SelectStartEvent, SelectEndEvent } from './common/events';
9
+ import { AxisDefaults, DragAction, Pane, PaneDefaults, SeriesDefaults, Zoomable } from './common/property-types';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface BaseChartPrivateProps extends BaseChartProps {
14
+ /**
15
+ * @hidden
16
+ */
17
+ deriveOptionsFromParent?: (options: any) => any;
18
+ /**
19
+ * @hidden
20
+ */
21
+ chartConstructor: any;
22
+ /**
23
+ * @hidden
24
+ */
25
+ className: string;
26
+ /**
27
+ * @hidden
28
+ */
29
+ chartStyle: object;
30
+ /**
31
+ * @hidden
32
+ */
33
+ wrapper: string;
34
+ /**
35
+ * @hidden
36
+ */
37
+ getTarget: () => any;
38
+ /**
39
+ * @hidden
40
+ */
41
+ onRefresh?: (chartOptions: any, themeOptions: any, chartInstance: any) => void;
42
+ /**
43
+ * @hidden
44
+ */
45
+ dataItems?: any;
46
+ /**
47
+ * @hidden
48
+ */
49
+ onBasechartevent?: (event: any) => void;
50
+ }
51
+ /**
52
+ * @hidden
53
+ */
54
+ export interface BaseChartProps {
55
+ /**
56
+ * Represents the `dir` HTML attribute.
57
+ */
58
+ dir?: string;
59
+ /**
60
+ * Sets the preferred rendering engine ([see example]({% slug rendering_chart_charts %})). If not supported by the browser, the Chart switches to the first available mode.
61
+ *
62
+ * The supported values are:
63
+ * - `"svg"`&mdash;If available, renders the component as an inline `.svg` file.
64
+ * - `"canvas"`&mdash;If available, renders the component as a `canvas` element.
65
+ */
66
+ renderAs?: string;
67
+ /**
68
+ * Specifies if the Chart can be panned ([see example]({% slug panzoom_chart_charts %})).
69
+ */
70
+ pannable?: boolean | DragAction;
71
+ /**
72
+ * Specifies if the Chart can be zoomed ([see example]({% slug panzoom_chart_charts %})).
73
+ */
74
+ zoomable?: boolean | Zoomable;
75
+ /**
76
+ * The default colors for the Chart series. When all colors are used, new colors are pulled from the start again.
77
+ */
78
+ seriesColors?: string[];
79
+ /**
80
+ * If set to `true`, the Chart plays animations when it displays the series. By default, animations are enabled.
81
+ */
82
+ transitions?: boolean;
83
+ /**
84
+ * This option allows to override the default pane options.
85
+ */
86
+ paneDefaults?: PaneDefaults;
87
+ /**
88
+ * The chart panes configuration.
89
+ */
90
+ panes?: Pane[];
91
+ /**
92
+ * This option allows to override the default series options.
93
+ */
94
+ seriesDefaults?: SeriesDefaults;
95
+ /**
96
+ * This option allows to override the default axis options.
97
+ */
98
+ axisDefaults?: AxisDefaults;
99
+ /**
100
+ * @hidden
101
+ */
102
+ allListeners?: object;
103
+ /**
104
+ * Fires when the user clicks an axis label.
105
+ */
106
+ onAxislabelclick?: (event: AxisLabelClickEvent) => void;
107
+ /**
108
+ * Fires as long as the user is dragging the Chart with the mouse or through swipe gestures.
109
+ */
110
+ onDrag?: (event: DragEvent) => void;
111
+ /**
112
+ * Fires when the user stops dragging the Chart.
113
+ */
114
+ onDragend?: (event: DragEndEvent) => void;
115
+ /**
116
+ * Fires when the user starts dragging the Chart.
117
+ */
118
+ onDragstart?: (event: DragStartEvent) => void;
119
+ /**
120
+ * Fires when the user hovers over a legend item.
121
+ */
122
+ onLegenditemhover?: (event: LegendItemHoverEvent) => void;
123
+ /**
124
+ * Fires when the user clicks a legend item ([see example]({% slug legend_chart_charts %}#toc-clicking-legend-items)).
125
+ */
126
+ onLegenditemclick?: (event: LegendItemClickEvent) => void;
127
+ /**
128
+ * Fires when the user clicks a note.
129
+ */
130
+ onNoteclick?: (event: NoteClickEvent) => void;
131
+ /**
132
+ * Fires when the user hovers over a note.
133
+ */
134
+ onNotehover?: (event: NoteHoverEvent) => void;
135
+ /**
136
+ * Fires when the user clicks the plot area. The `click` event is triggered by the `tap` and `contextmenu` events. To distinguish between the original events, inspect the `e.originalEvent.type` field.
137
+ */
138
+ onPlotareaclick?: (event: PlotAreaClickEvent) => void;
139
+ /**
140
+ * Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursor-values)).
141
+ */
142
+ onPlotareahover?: (event: PlotAreaHoverEvent) => void;
143
+ /**
144
+ * Fires when the Chart is ready to render on screen ([see example]({% slug plotbands_chart_charts %}#toc-custom-plot-bands)). For example, you can use it to remove loading indicators. Any changes made to the options are ignored.
145
+ */
146
+ onRender?: (event: RenderEvent) => void;
147
+ /**
148
+ * Fires when the user modifies the selection.
149
+ *
150
+ * The range units are:
151
+ * - Generic axis&mdash;Category index (0-based).
152
+ * - Date axis&mdash;Date instance.
153
+ */
154
+ onSelect?: (event: SelectEvent) => void;
155
+ /**
156
+ * Fires when the user completes the modification of the selection ([see example]({% slug selection_chart_charts %}#toc-using-selection-as-navigator)).
157
+ *
158
+ * The range units are:
159
+ * - Generic axis&mdash;Category index (0-based).
160
+ * - Date axis&mdash;Date instance.
161
+ */
162
+ onSelectend?: (event: SelectEndEvent) => void;
163
+ /**
164
+ * Fires when the user starts modifying the axis selection.
165
+ *
166
+ * The range units are:
167
+ * - Generic axis&mdash;Category index (0-based).
168
+ * - Date axis&mdash;Date instance.
169
+ */
170
+ onSelectstart?: (event: SelectStartEvent) => void;
171
+ /**
172
+ * Fires when the user clicks the Chart series.
173
+ *
174
+ * The `click` event will be triggered by the `tap` and `contextmenu` events. To distinguish between the original events, inspect the `e.originalEvent.type` field.
175
+ */
176
+ onSeriesclick?: (event: SeriesClickEvent) => void;
177
+ /**
178
+ * Fires when the user hovers over the Chart series.
179
+ */
180
+ onSerieshover?: (event: SeriesHoverEvent) => void;
181
+ /**
182
+ * Fires as long as the user is zooming the Chart by using the mousewheel operation.
183
+ */
184
+ onZoom?: (event: ZoomEvent) => void;
185
+ /**
186
+ * Fires when the user stops zooming the Chart.
187
+ */
188
+ onZoomend?: (event: ZoomEndEvent) => void;
189
+ /**
190
+ * Fires when the user uses the mousewheel to zoom the Chart.
191
+ */
192
+ onZoomstart?: (event: ZoomStartEvent) => void;
193
+ }
package/Chart.d.ts ADDED
@@ -0,0 +1,154 @@
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 { Surface } from '@progress/kendo-drawing';
9
+ import { PropType } from 'vue';
10
+ /**
11
+ * Represents the [Kendo UI for Vue Chart component]({% slug overview_chart_charts %}).
12
+ *
13
+ * ```
14
+ */
15
+ /**
16
+ * @hidden
17
+ */
18
+ declare const Chart: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
19
+ donutCenterRender: PropType<string | object | Function>;
20
+ dir: PropType<string>;
21
+ renderAs: {
22
+ type: PropType<string>;
23
+ default: any;
24
+ validator: (value: string) => any;
25
+ };
26
+ pannable: {
27
+ type: PropType<boolean | import('./field-types/drag-action.interface').DragAction>;
28
+ default: any;
29
+ };
30
+ zoomable: {
31
+ type: PropType<boolean | import('./option-types/zoomable.interface').Zoomable>;
32
+ default: any;
33
+ };
34
+ seriesColors: {
35
+ type: PropType<string[]>;
36
+ default: any;
37
+ };
38
+ transitions: {
39
+ type: PropType<boolean>;
40
+ default: boolean;
41
+ };
42
+ paneDefaults: {
43
+ type: PropType<import('./option-types/pane-defaults.interface').PaneDefaults>;
44
+ default: any;
45
+ };
46
+ panes: {
47
+ type: PropType<import('./option-types/pane.interface').Pane[]>;
48
+ default: any;
49
+ };
50
+ seriesDefaults: {
51
+ type: PropType<import('./option-types/series-defaults.interface').SeriesDefaults>;
52
+ default: any;
53
+ };
54
+ axisDefaults: {
55
+ type: PropType<import('./option-types/axis-defaults.interface').AxisDefaults>;
56
+ default: any;
57
+ };
58
+ onAxislabelclick: PropType<(event: import('.').AxisLabelClickEvent) => void>;
59
+ onDrag: PropType<(event: import('.').DragEvent) => void>;
60
+ onDragend: PropType<(event: import('.').DragEndEvent) => void>;
61
+ onDragstart: PropType<(event: import('.').DragStartEvent) => void>;
62
+ onLegenditemhover: PropType<(event: import('.').LegendItemHoverEvent) => void>;
63
+ onLegenditemclick: PropType<(event: import('.').LegendItemClickEvent) => void>;
64
+ onNoteclick: PropType<(event: import('.').NoteClickEvent) => void>;
65
+ onNotehover: PropType<(event: import('.').NoteHoverEvent) => void>;
66
+ onPlotareaclick: PropType<(event: import('.').PlotAreaClickEvent) => void>;
67
+ onPlotareahover: PropType<(event: import('.').PlotAreaHoverEvent) => void>;
68
+ onRender: PropType<(event: import('.').RenderEvent) => void>;
69
+ onSelect: PropType<(event: import('.').SelectEvent) => void>;
70
+ onSelectend: PropType<(event: import('.').SelectEndEvent) => void>;
71
+ onSelectstart: PropType<(event: import('.').SelectStartEvent) => void>;
72
+ onSeriesclick: PropType<(event: import('.').SeriesClickEvent) => void>;
73
+ onSerieshover: PropType<(event: import('.').SeriesHoverEvent) => void>;
74
+ onZoom: PropType<(event: import('.').ZoomEvent) => void>;
75
+ onZoomend: PropType<(event: import('.').ZoomEndEvent) => void>;
76
+ onZoomstart: PropType<(event: import('.').ZoomStartEvent) => void>;
77
+ }>, {}, {}, {}, {
78
+ chartInstance(): any;
79
+ surface(): Surface | null;
80
+ element(): HTMLDivElement | null;
81
+ getTarget(): any;
82
+ handleBaseChartEvents(name: string, options: any): void;
83
+ handleLegendItemClick(event: any): void;
84
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
85
+ donutCenterRender: PropType<string | object | Function>;
86
+ dir: PropType<string>;
87
+ renderAs: {
88
+ type: PropType<string>;
89
+ default: any;
90
+ validator: (value: string) => any;
91
+ };
92
+ pannable: {
93
+ type: PropType<boolean | import('./field-types/drag-action.interface').DragAction>;
94
+ default: any;
95
+ };
96
+ zoomable: {
97
+ type: PropType<boolean | import('./option-types/zoomable.interface').Zoomable>;
98
+ default: any;
99
+ };
100
+ seriesColors: {
101
+ type: PropType<string[]>;
102
+ default: any;
103
+ };
104
+ transitions: {
105
+ type: PropType<boolean>;
106
+ default: boolean;
107
+ };
108
+ paneDefaults: {
109
+ type: PropType<import('./option-types/pane-defaults.interface').PaneDefaults>;
110
+ default: any;
111
+ };
112
+ panes: {
113
+ type: PropType<import('./option-types/pane.interface').Pane[]>;
114
+ default: any;
115
+ };
116
+ seriesDefaults: {
117
+ type: PropType<import('./option-types/series-defaults.interface').SeriesDefaults>;
118
+ default: any;
119
+ };
120
+ axisDefaults: {
121
+ type: PropType<import('./option-types/axis-defaults.interface').AxisDefaults>;
122
+ default: any;
123
+ };
124
+ onAxislabelclick: PropType<(event: import('.').AxisLabelClickEvent) => void>;
125
+ onDrag: PropType<(event: import('.').DragEvent) => void>;
126
+ onDragend: PropType<(event: import('.').DragEndEvent) => void>;
127
+ onDragstart: PropType<(event: import('.').DragStartEvent) => void>;
128
+ onLegenditemhover: PropType<(event: import('.').LegendItemHoverEvent) => void>;
129
+ onLegenditemclick: PropType<(event: import('.').LegendItemClickEvent) => void>;
130
+ onNoteclick: PropType<(event: import('.').NoteClickEvent) => void>;
131
+ onNotehover: PropType<(event: import('.').NoteHoverEvent) => void>;
132
+ onPlotareaclick: PropType<(event: import('.').PlotAreaClickEvent) => void>;
133
+ onPlotareahover: PropType<(event: import('.').PlotAreaHoverEvent) => void>;
134
+ onRender: PropType<(event: import('.').RenderEvent) => void>;
135
+ onSelect: PropType<(event: import('.').SelectEvent) => void>;
136
+ onSelectend: PropType<(event: import('.').SelectEndEvent) => void>;
137
+ onSelectstart: PropType<(event: import('.').SelectStartEvent) => void>;
138
+ onSeriesclick: PropType<(event: import('.').SeriesClickEvent) => void>;
139
+ onSerieshover: PropType<(event: import('.').SeriesHoverEvent) => void>;
140
+ onZoom: PropType<(event: import('.').ZoomEvent) => void>;
141
+ onZoomend: PropType<(event: import('.').ZoomEndEvent) => void>;
142
+ onZoomstart: PropType<(event: import('.').ZoomStartEvent) => void>;
143
+ }>> & Readonly<{}>, {
144
+ renderAs: string;
145
+ pannable: any;
146
+ zoomable: any;
147
+ seriesColors: string[];
148
+ transitions: boolean;
149
+ paneDefaults: import('./option-types/pane-defaults.interface').PaneDefaults;
150
+ panes: import('./option-types/pane.interface').Pane[];
151
+ seriesDefaults: import('./option-types/series-defaults.interface').SeriesDefaults;
152
+ axisDefaults: import('./option-types/axis-defaults.interface').AxisDefaults;
153
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
154
+ export { Chart };
@@ -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 { Store } from './store/store';
9
+ import { InstanceObserver } from '@progress/kendo-charts';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface ChartContextType {
14
+ optionsState: Store;
15
+ observersState: Store;
16
+ childrenObserver: InstanceObserver;
17
+ }
18
+ /**
19
+ * @hidden
20
+ */
21
+ export declare const ChartContext: any;
@@ -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
+ import { PropType } from 'vue';
9
+ /**
10
+ * The props of the `ChartNoDataOverlay` component.
11
+ */
12
+ interface ChartNoDataOverlayProps {
13
+ /**
14
+ * Sets additional CSS classes to the component.
15
+ */
16
+ className: string;
17
+ }
18
+ /**
19
+ * The the Kendo UI for Vue `ChartNoDataOverlay` component. The component is used to display an overlay with a message when the Chart has no data, no series, or all series are empty.
20
+ * The overlay will be automatically cleared if the series receive data.
21
+ */
22
+ declare const ChartNoDataOverlay: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
23
+ className: PropType<string>;
24
+ }>, {
25
+ kendoLocalizationService: {};
26
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
+ className: PropType<string>;
28
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
29
+ export { ChartNoDataOverlay, type ChartNoDataOverlayProps };
@@ -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
+ import { BaseChartProps } from './BaseChartProps';
9
+ /**
10
+ * Represents the props of the Kendo UI for Vue Chart component.
11
+ */
12
+ export interface ChartProps extends BaseChartProps {
13
+ /**
14
+ * When set, the prop is used to render the Donut Center template.
15
+ */
16
+ donutCenterRender?: string | Function | object;
17
+ }
@@ -0,0 +1,35 @@
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 interface DonutCenterStyle {
12
+ height: string;
13
+ left: string;
14
+ top: string;
15
+ width: string;
16
+ }
17
+ /**
18
+ * @hidden
19
+ */
20
+ export interface DonutCenterProps {
21
+ render?: any;
22
+ }
23
+ /**
24
+ * @hidden
25
+ */
26
+ declare const DonutCenter: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
27
+ render: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
28
+ }>, {}, {
29
+ donutCenterStyles: any;
30
+ }, {}, {
31
+ onRender(event: any): void;
32
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
33
+ render: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
34
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
35
+ export { DonutCenter };