@progress/kendo-react-charts 7.2.4-develop.2 → 7.2.4-develop.4

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 (599) hide show
  1. package/BaseChart.js +8 -0
  2. package/BaseChart.mjs +248 -0
  3. package/Chart.js +8 -0
  4. package/Chart.mjs +58 -0
  5. package/ChartBreadcrumb.js +8 -0
  6. package/ChartBreadcrumb.mjs +77 -0
  7. package/ChartContext.js +8 -0
  8. package/ChartContext.mjs +14 -0
  9. package/Container.js +8 -0
  10. package/Container.mjs +13 -0
  11. package/DonutCenter.js +8 -0
  12. package/DonutCenter.mjs +48 -0
  13. package/Sparkline.js +8 -0
  14. package/Sparkline.mjs +60 -0
  15. package/StockChart.js +8 -0
  16. package/StockChart.mjs +68 -0
  17. package/components/AxisDefaults.js +8 -0
  18. package/components/AxisDefaults.mjs +14 -0
  19. package/components/CategoryAxis.js +8 -0
  20. package/components/CategoryAxis.mjs +21 -0
  21. package/components/CategoryAxisItem.js +8 -0
  22. package/components/CategoryAxisItem.mjs +15 -0
  23. package/components/ChartArea.js +8 -0
  24. package/components/ChartArea.mjs +14 -0
  25. package/components/Legend.js +8 -0
  26. package/components/Legend.mjs +14 -0
  27. package/components/Navigator.js +8 -0
  28. package/components/Navigator.mjs +14 -0
  29. package/components/Pane.js +8 -0
  30. package/components/Pane.mjs +15 -0
  31. package/components/PaneDefaults.js +8 -0
  32. package/components/PaneDefaults.mjs +15 -0
  33. package/components/Panes.js +8 -0
  34. package/components/Panes.mjs +21 -0
  35. package/components/PlotArea.js +8 -0
  36. package/components/PlotArea.mjs +14 -0
  37. package/components/Series.js +8 -0
  38. package/components/Series.mjs +21 -0
  39. package/components/SeriesDefaults.js +8 -0
  40. package/components/SeriesDefaults.mjs +14 -0
  41. package/components/SeriesItem.js +8 -0
  42. package/components/SeriesItem.mjs +30 -0
  43. package/components/Subtitle.js +8 -0
  44. package/components/Subtitle.mjs +14 -0
  45. package/components/Title.js +8 -0
  46. package/components/Title.mjs +14 -0
  47. package/components/Tooltip.js +8 -0
  48. package/components/Tooltip.mjs +14 -0
  49. package/components/ValueAxis.js +8 -0
  50. package/components/ValueAxis.mjs +21 -0
  51. package/components/ValueAxisItem.js +8 -0
  52. package/components/ValueAxisItem.mjs +15 -0
  53. package/components/XAxis.js +8 -0
  54. package/components/XAxis.mjs +21 -0
  55. package/components/XAxisItem.js +8 -0
  56. package/components/XAxisItem.mjs +15 -0
  57. package/components/YAxis.js +8 -0
  58. package/components/YAxis.mjs +21 -0
  59. package/components/YAxisItem.js +8 -0
  60. package/components/YAxisItem.mjs +15 -0
  61. package/components/Zoomable.js +8 -0
  62. package/components/Zoomable.mjs +14 -0
  63. package/components/axis-defaults/Crosshair.js +8 -0
  64. package/components/axis-defaults/Crosshair.mjs +15 -0
  65. package/components/axis-defaults/CrosshairTooltip.js +8 -0
  66. package/components/axis-defaults/CrosshairTooltip.mjs +15 -0
  67. package/components/axis-defaults/Labels.js +8 -0
  68. package/components/axis-defaults/Labels.mjs +15 -0
  69. package/components/axis-defaults/Title.js +8 -0
  70. package/components/axis-defaults/Title.mjs +15 -0
  71. package/components/base/CollectionConfigurationComponent.js +8 -0
  72. package/components/base/CollectionConfigurationComponent.mjs +35 -0
  73. package/components/base/ConfigurationComponent.js +8 -0
  74. package/components/base/ConfigurationComponent.mjs +47 -0
  75. package/components/category-axis-item/Crosshair.js +8 -0
  76. package/components/category-axis-item/Crosshair.mjs +14 -0
  77. package/components/category-axis-item/CrosshairTooltip.js +8 -0
  78. package/components/category-axis-item/CrosshairTooltip.mjs +14 -0
  79. package/components/category-axis-item/Labels.js +8 -0
  80. package/components/category-axis-item/Labels.mjs +14 -0
  81. package/components/category-axis-item/Notes.js +8 -0
  82. package/components/category-axis-item/Notes.mjs +14 -0
  83. package/components/category-axis-item/NotesIcon.js +8 -0
  84. package/components/category-axis-item/NotesIcon.mjs +14 -0
  85. package/components/category-axis-item/NotesLabel.js +8 -0
  86. package/components/category-axis-item/NotesLabel.mjs +14 -0
  87. package/components/category-axis-item/RangeLabels.js +8 -0
  88. package/components/category-axis-item/RangeLabels.mjs +14 -0
  89. package/components/category-axis-item/Title.js +8 -0
  90. package/components/category-axis-item/Title.mjs +15 -0
  91. package/components/legend/InactiveItems.js +8 -0
  92. package/components/legend/InactiveItems.mjs +15 -0
  93. package/components/legend/Item.js +8 -0
  94. package/components/legend/Item.mjs +15 -0
  95. package/components/legend/Title.js +8 -0
  96. package/components/legend/Title.mjs +15 -0
  97. package/components/navigator/CategoryAxis.js +8 -0
  98. package/components/navigator/CategoryAxis.mjs +15 -0
  99. package/components/navigator/Hint.js +8 -0
  100. package/components/navigator/Hint.mjs +14 -0
  101. package/components/navigator/Pane.js +8 -0
  102. package/components/navigator/Pane.mjs +15 -0
  103. package/components/navigator/Select.js +8 -0
  104. package/components/navigator/Select.mjs +14 -0
  105. package/components/navigator/Series.js +8 -0
  106. package/components/navigator/Series.mjs +21 -0
  107. package/components/navigator/SeriesItem.js +8 -0
  108. package/components/navigator/SeriesItem.mjs +15 -0
  109. package/components/pane-defaults/Title.js +8 -0
  110. package/components/pane-defaults/Title.mjs +15 -0
  111. package/components/series-item/ErrorBars.js +8 -0
  112. package/components/series-item/ErrorBars.mjs +14 -0
  113. package/components/series-item/Extremes.js +8 -0
  114. package/components/series-item/Extremes.mjs +14 -0
  115. package/components/series-item/Highlight.js +8 -0
  116. package/components/series-item/Highlight.mjs +14 -0
  117. package/components/series-item/Labels.js +8 -0
  118. package/components/series-item/Labels.mjs +14 -0
  119. package/components/series-item/LabelsFrom.js +8 -0
  120. package/components/series-item/LabelsFrom.mjs +14 -0
  121. package/components/series-item/LabelsTo.js +8 -0
  122. package/components/series-item/LabelsTo.mjs +14 -0
  123. package/components/series-item/Markers.js +8 -0
  124. package/components/series-item/Markers.mjs +14 -0
  125. package/components/series-item/Notes.js +8 -0
  126. package/components/series-item/Notes.mjs +14 -0
  127. package/components/series-item/NotesIcon.js +8 -0
  128. package/components/series-item/NotesIcon.mjs +14 -0
  129. package/components/series-item/NotesLabel.js +8 -0
  130. package/components/series-item/NotesLabel.mjs +14 -0
  131. package/components/series-item/Outliers.js +8 -0
  132. package/components/series-item/Outliers.mjs +14 -0
  133. package/components/series-item/Tooltip.js +8 -0
  134. package/components/series-item/Tooltip.mjs +14 -0
  135. package/components/value-axis-item/Crosshair.js +8 -0
  136. package/components/value-axis-item/Crosshair.mjs +14 -0
  137. package/components/value-axis-item/CrosshairTooltip.js +8 -0
  138. package/components/value-axis-item/CrosshairTooltip.mjs +14 -0
  139. package/components/value-axis-item/Labels.js +8 -0
  140. package/components/value-axis-item/Labels.mjs +14 -0
  141. package/components/value-axis-item/Notes.js +8 -0
  142. package/components/value-axis-item/Notes.mjs +14 -0
  143. package/components/value-axis-item/NotesIcon.js +8 -0
  144. package/components/value-axis-item/NotesIcon.mjs +14 -0
  145. package/components/value-axis-item/NotesLabel.js +8 -0
  146. package/components/value-axis-item/NotesLabel.mjs +14 -0
  147. package/components/value-axis-item/Title.js +8 -0
  148. package/components/value-axis-item/Title.mjs +15 -0
  149. package/components/x-axis-item/Crosshair.js +8 -0
  150. package/components/x-axis-item/Crosshair.mjs +14 -0
  151. package/components/x-axis-item/CrosshairTooltip.js +8 -0
  152. package/components/x-axis-item/CrosshairTooltip.mjs +14 -0
  153. package/components/x-axis-item/Labels.js +8 -0
  154. package/components/x-axis-item/Labels.mjs +14 -0
  155. package/components/x-axis-item/Notes.js +8 -0
  156. package/components/x-axis-item/Notes.mjs +14 -0
  157. package/components/x-axis-item/NotesIcon.js +8 -0
  158. package/components/x-axis-item/NotesIcon.mjs +14 -0
  159. package/components/x-axis-item/NotesLabel.js +8 -0
  160. package/components/x-axis-item/NotesLabel.mjs +14 -0
  161. package/components/x-axis-item/Title.js +8 -0
  162. package/components/x-axis-item/Title.mjs +15 -0
  163. package/components/y-axis-item/Crosshair.js +8 -0
  164. package/components/y-axis-item/Crosshair.mjs +14 -0
  165. package/components/y-axis-item/CrosshairTooltip.js +8 -0
  166. package/components/y-axis-item/CrosshairTooltip.mjs +14 -0
  167. package/components/y-axis-item/Labels.js +8 -0
  168. package/components/y-axis-item/Labels.mjs +14 -0
  169. package/components/y-axis-item/Notes.js +8 -0
  170. package/components/y-axis-item/Notes.mjs +14 -0
  171. package/components/y-axis-item/NotesIcon.js +8 -0
  172. package/components/y-axis-item/NotesIcon.mjs +14 -0
  173. package/components/y-axis-item/NotesLabel.js +8 -0
  174. package/components/y-axis-item/NotesLabel.mjs +14 -0
  175. package/components/y-axis-item/Title.js +8 -0
  176. package/components/y-axis-item/Title.mjs +15 -0
  177. package/dist/cdn/js/kendo-react-charts.js +8 -65
  178. package/events/axis-label-click-event.js +8 -0
  179. package/events/axis-label-click-event.mjs +20 -0
  180. package/events/base-event.js +8 -0
  181. package/events/base-event.mjs +19 -0
  182. package/events/chart-event-builder.js +8 -0
  183. package/events/chart-event-builder.mjs +61 -0
  184. package/events/dom-event.js +8 -0
  185. package/events/dom-event.mjs +23 -0
  186. package/events/dom-events-builder.js +8 -0
  187. package/events/dom-events-builder.mjs +33 -0
  188. package/events/dom-events.js +8 -0
  189. package/events/dom-events.mjs +128 -0
  190. package/events/drag-end-event.js +8 -0
  191. package/events/drag-end-event.mjs +20 -0
  192. package/events/drag-event.js +8 -0
  193. package/events/drag-event.mjs +20 -0
  194. package/events/drag-start-event.js +8 -0
  195. package/events/drag-start-event.mjs +20 -0
  196. package/events/drilldown-event.js +8 -0
  197. package/events/drilldown-event.mjs +20 -0
  198. package/events/drilldown-state-change-event.js +8 -0
  199. package/events/drilldown-state-change-event.mjs +19 -0
  200. package/events/legend-item-click-event.js +8 -0
  201. package/events/legend-item-click-event.mjs +26 -0
  202. package/events/legend-item-hover-event.js +8 -0
  203. package/events/legend-item-hover-event.mjs +26 -0
  204. package/events/legend-item-leave-event.js +8 -0
  205. package/events/legend-item-leave-event.mjs +26 -0
  206. package/events/navigator-filter-event.js +8 -0
  207. package/events/navigator-filter-event.mjs +20 -0
  208. package/events/note-click-event.js +8 -0
  209. package/events/note-click-event.mjs +20 -0
  210. package/events/note-hover-event.js +8 -0
  211. package/events/note-hover-event.mjs +20 -0
  212. package/events/plot-area-click-event.js +8 -0
  213. package/events/plot-area-click-event.mjs +20 -0
  214. package/events/plot-area-hover-event.js +8 -0
  215. package/events/plot-area-hover-event.mjs +20 -0
  216. package/events/preventable-event.js +8 -0
  217. package/events/preventable-event.mjs +33 -0
  218. package/events/render-event.js +8 -0
  219. package/events/render-event.mjs +20 -0
  220. package/events/select-end-event.js +8 -0
  221. package/events/select-end-event.mjs +20 -0
  222. package/events/select-event.js +8 -0
  223. package/events/select-event.mjs +20 -0
  224. package/events/select-start-event.js +8 -0
  225. package/events/select-start-event.mjs +20 -0
  226. package/events/series-click-event.js +8 -0
  227. package/events/series-click-event.mjs +21 -0
  228. package/events/series-hover-event.js +8 -0
  229. package/events/series-hover-event.mjs +20 -0
  230. package/events/zoom-end-event.js +8 -0
  231. package/events/zoom-end-event.mjs +21 -0
  232. package/events/zoom-event.js +8 -0
  233. package/events/zoom-event.mjs +21 -0
  234. package/events/zoom-start-event.js +8 -0
  235. package/events/zoom-start-event.mjs +21 -0
  236. package/index.d.mts +8704 -5
  237. package/index.d.ts +8704 -34
  238. package/index.js +8 -65
  239. package/index.mjs +240 -1820
  240. package/methods/index.js +8 -0
  241. package/methods/index.mjs +27 -0
  242. package/package-metadata.js +8 -0
  243. package/package-metadata.mjs +19 -0
  244. package/package.json +5 -5
  245. package/sankey/Sankey.js +8 -0
  246. package/sankey/Sankey.mjs +65 -0
  247. package/sankey/propTypes.js +8 -0
  248. package/sankey/propTypes.mjs +82 -0
  249. package/sankey/theme-service.js +25 -0
  250. package/sankey/theme-service.mjs +98 -0
  251. package/store/reducer.js +8 -0
  252. package/store/reducer.mjs +59 -0
  253. package/store/store.js +8 -0
  254. package/store/store.mjs +20 -0
  255. package/theming/theme-service.js +51 -0
  256. package/theming/theme-service.mjs +122 -0
  257. package/tooltip/Crosshair.js +8 -0
  258. package/tooltip/Crosshair.mjs +70 -0
  259. package/tooltip/CrosshairContainer.js +8 -0
  260. package/tooltip/CrosshairContainer.mjs +65 -0
  261. package/tooltip/Point.js +8 -0
  262. package/tooltip/Point.mjs +22 -0
  263. package/tooltip/Popup.js +8 -0
  264. package/tooltip/Popup.mjs +69 -0
  265. package/tooltip/Series.js +8 -0
  266. package/tooltip/Series.mjs +112 -0
  267. package/tooltip/SharedTooltipContent.js +8 -0
  268. package/tooltip/SharedTooltipContent.mjs +22 -0
  269. package/utils/index.js +8 -0
  270. package/utils/index.mjs +31 -0
  271. package/BaseChart.d.ts +0 -125
  272. package/BaseChartProps.d.ts +0 -199
  273. package/Chart.d.ts +0 -82
  274. package/ChartBreadcrumb.d.ts +0 -46
  275. package/ChartContext.d.ts +0 -21
  276. package/ChartProps.d.ts +0 -14
  277. package/Container.d.ts +0 -12
  278. package/DonutCenter.d.ts +0 -41
  279. package/Sparkline.d.ts +0 -91
  280. package/SparklineProps.d.ts +0 -18
  281. package/StockChart.d.ts +0 -45
  282. package/StockChartProps.d.ts +0 -19
  283. package/api-types/axis-range.interface.d.ts +0 -17
  284. package/api-types/chart-axis.interface.d.ts +0 -40
  285. package/api-types/chart-drilldown-state.interface.d.ts +0 -28
  286. package/api-types/chart-pane.interface.d.ts +0 -18
  287. package/api-types/chart-plotarea.interface.d.ts +0 -18
  288. package/api-types/event-axis-options.interface.d.ts +0 -13
  289. package/api-types/event-series-options.interface.d.ts +0 -21
  290. package/api-types/series-point.interface.d.ts +0 -42
  291. package/argument-types/axis-label-visual-args.interface.d.ts +0 -47
  292. package/argument-types/axis-note-visual-args.interface.d.ts +0 -31
  293. package/argument-types/drilldown-series-factory-props.interface.d.ts +0 -21
  294. package/argument-types/error-bars-visual-args.interface.d.ts +0 -35
  295. package/argument-types/highlight-toggle-args.interface.d.ts +0 -38
  296. package/argument-types/highlight-visual-args.interface.d.ts +0 -55
  297. package/argument-types/legend-item-visual-args.interface.d.ts +0 -31
  298. package/argument-types/legend-labels-content-args.interface.d.ts +0 -25
  299. package/argument-types/markers-visual-args.interface.d.ts +0 -43
  300. package/argument-types/plot-band-label-visual-args.interface.d.ts +0 -31
  301. package/argument-types/series-labels-visual-args.interface.d.ts +0 -31
  302. package/argument-types/series-note-visual-args.interface.d.ts +0 -47
  303. package/argument-types/series-visual-args.interface.d.ts +0 -80
  304. package/argument-types/title-visual-args.interface.d.ts +0 -31
  305. package/common/api-types.d.ts +0 -12
  306. package/common/charts.d.ts +0 -9
  307. package/common/events.d.ts +0 -26
  308. package/common/property-types.d.ts +0 -136
  309. package/components/AxisDefaults.d.ts +0 -13
  310. package/components/CategoryAxis.d.ts +0 -13
  311. package/components/CategoryAxisItem.d.ts +0 -17
  312. package/components/ChartArea.d.ts +0 -13
  313. package/components/Legend.d.ts +0 -17
  314. package/components/Navigator.d.ts +0 -17
  315. package/components/Pane.d.ts +0 -13
  316. package/components/PaneDefaults.d.ts +0 -17
  317. package/components/Panes.d.ts +0 -13
  318. package/components/PlotArea.d.ts +0 -13
  319. package/components/Series.d.ts +0 -13
  320. package/components/SeriesDefaults.d.ts +0 -13
  321. package/components/SeriesItem.d.ts +0 -25
  322. package/components/Subtitle.d.ts +0 -13
  323. package/components/Title.d.ts +0 -13
  324. package/components/Tooltip.d.ts +0 -15
  325. package/components/ValueAxis.d.ts +0 -13
  326. package/components/ValueAxisItem.d.ts +0 -17
  327. package/components/XAxis.d.ts +0 -13
  328. package/components/XAxisItem.d.ts +0 -17
  329. package/components/YAxis.d.ts +0 -13
  330. package/components/YAxisItem.d.ts +0 -17
  331. package/components/Zoomable.d.ts +0 -13
  332. package/components/axis-defaults/Crosshair.d.ts +0 -13
  333. package/components/axis-defaults/CrosshairTooltip.d.ts +0 -13
  334. package/components/axis-defaults/Labels.d.ts +0 -13
  335. package/components/axis-defaults/Title.d.ts +0 -13
  336. package/components/axis-defaults/index.d.ts +0 -9
  337. package/components/base/CollectionConfigurationComponent.d.ts +0 -23
  338. package/components/base/ConfigurationComponent.d.ts +0 -28
  339. package/components/category-axis-item/Crosshair.d.ts +0 -17
  340. package/components/category-axis-item/CrosshairTooltip.d.ts +0 -13
  341. package/components/category-axis-item/Labels.d.ts +0 -13
  342. package/components/category-axis-item/Notes.d.ts +0 -13
  343. package/components/category-axis-item/NotesIcon.d.ts +0 -13
  344. package/components/category-axis-item/NotesLabel.d.ts +0 -13
  345. package/components/category-axis-item/RangeLabels.d.ts +0 -13
  346. package/components/category-axis-item/Select.d.ts +0 -11
  347. package/components/category-axis-item/Title.d.ts +0 -13
  348. package/components/category-axis-item/index.d.ts +0 -14
  349. package/components/index.d.ts +0 -39
  350. package/components/legend/InactiveItems.d.ts +0 -13
  351. package/components/legend/Item.d.ts +0 -13
  352. package/components/legend/Title.d.ts +0 -17
  353. package/components/legend/index.d.ts +0 -8
  354. package/components/navigator/CategoryAxis.d.ts +0 -13
  355. package/components/navigator/Hint.d.ts +0 -13
  356. package/components/navigator/Pane.d.ts +0 -13
  357. package/components/navigator/Select.d.ts +0 -13
  358. package/components/navigator/Series.d.ts +0 -13
  359. package/components/navigator/SeriesItem.d.ts +0 -13
  360. package/components/navigator/category-axis/Crosshair.d.ts +0 -13
  361. package/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -13
  362. package/components/navigator/category-axis/Labels.d.ts +0 -13
  363. package/components/navigator/category-axis/Notes.d.ts +0 -13
  364. package/components/navigator/category-axis/NotesIcon.d.ts +0 -13
  365. package/components/navigator/category-axis/NotesLabel.d.ts +0 -13
  366. package/components/navigator/category-axis/Select.d.ts +0 -11
  367. package/components/navigator/category-axis/Title.d.ts +0 -13
  368. package/components/navigator/category-axis/index.d.ts +0 -13
  369. package/components/navigator/index.d.ts +0 -14
  370. package/components/navigator/pane/Title.d.ts +0 -13
  371. package/components/navigator/pane/index.d.ts +0 -6
  372. package/components/navigator/series-item/ErrorBars.d.ts +0 -13
  373. package/components/navigator/series-item/Extremes.d.ts +0 -13
  374. package/components/navigator/series-item/Highlight.d.ts +0 -13
  375. package/components/navigator/series-item/Labels.d.ts +0 -13
  376. package/components/navigator/series-item/LabelsFrom.d.ts +0 -13
  377. package/components/navigator/series-item/LabelsTo.d.ts +0 -13
  378. package/components/navigator/series-item/Markers.d.ts +0 -13
  379. package/components/navigator/series-item/Notes.d.ts +0 -13
  380. package/components/navigator/series-item/NotesIcon.d.ts +0 -13
  381. package/components/navigator/series-item/NotesLabel.d.ts +0 -13
  382. package/components/navigator/series-item/Outliers.d.ts +0 -13
  383. package/components/navigator/series-item/Tooltip.d.ts +0 -15
  384. package/components/navigator/series-item/index.d.ts +0 -17
  385. package/components/pane/Title.d.ts +0 -13
  386. package/components/pane/index.d.ts +0 -6
  387. package/components/pane-defaults/Title.d.ts +0 -13
  388. package/components/pane-defaults/index.d.ts +0 -6
  389. package/components/series-defaults/Labels.d.ts +0 -13
  390. package/components/series-defaults/LabelsFrom.d.ts +0 -13
  391. package/components/series-defaults/LabelsTo.d.ts +0 -13
  392. package/components/series-defaults/Notes.d.ts +0 -13
  393. package/components/series-defaults/NotesIcon.d.ts +0 -13
  394. package/components/series-defaults/NotesLabel.d.ts +0 -13
  395. package/components/series-defaults/Tooltip.d.ts +0 -15
  396. package/components/series-defaults/index.d.ts +0 -12
  397. package/components/series-item/ErrorBars.d.ts +0 -13
  398. package/components/series-item/Extremes.d.ts +0 -13
  399. package/components/series-item/Highlight.d.ts +0 -13
  400. package/components/series-item/Labels.d.ts +0 -17
  401. package/components/series-item/LabelsFrom.d.ts +0 -13
  402. package/components/series-item/LabelsTo.d.ts +0 -13
  403. package/components/series-item/Markers.d.ts +0 -13
  404. package/components/series-item/Notes.d.ts +0 -13
  405. package/components/series-item/NotesIcon.d.ts +0 -13
  406. package/components/series-item/NotesLabel.d.ts +0 -13
  407. package/components/series-item/Outliers.d.ts +0 -13
  408. package/components/series-item/Tooltip.d.ts +0 -15
  409. package/components/series-item/index.d.ts +0 -17
  410. package/components/value-axis-item/Crosshair.d.ts +0 -17
  411. package/components/value-axis-item/CrosshairTooltip.d.ts +0 -13
  412. package/components/value-axis-item/Labels.d.ts +0 -13
  413. package/components/value-axis-item/Notes.d.ts +0 -13
  414. package/components/value-axis-item/NotesIcon.d.ts +0 -13
  415. package/components/value-axis-item/NotesLabel.d.ts +0 -13
  416. package/components/value-axis-item/Title.d.ts +0 -13
  417. package/components/value-axis-item/index.d.ts +0 -12
  418. package/components/x-axis-item/Crosshair.d.ts +0 -17
  419. package/components/x-axis-item/CrosshairTooltip.d.ts +0 -13
  420. package/components/x-axis-item/Labels.d.ts +0 -13
  421. package/components/x-axis-item/Notes.d.ts +0 -13
  422. package/components/x-axis-item/NotesIcon.d.ts +0 -13
  423. package/components/x-axis-item/NotesLabel.d.ts +0 -13
  424. package/components/x-axis-item/Title.d.ts +0 -13
  425. package/components/x-axis-item/index.d.ts +0 -12
  426. package/components/y-axis-item/Crosshair.d.ts +0 -17
  427. package/components/y-axis-item/CrosshairTooltip.d.ts +0 -13
  428. package/components/y-axis-item/Labels.d.ts +0 -13
  429. package/components/y-axis-item/Notes.d.ts +0 -13
  430. package/components/y-axis-item/NotesIcon.d.ts +0 -13
  431. package/components/y-axis-item/NotesLabel.d.ts +0 -13
  432. package/components/y-axis-item/Title.d.ts +0 -13
  433. package/components/y-axis-item/index.d.ts +0 -12
  434. package/events/axis-label-click-event.d.ts +0 -36
  435. package/events/base-event.d.ts +0 -18
  436. package/events/chart-event-builder.d.ts +0 -10
  437. package/events/dom-event.d.ts +0 -23
  438. package/events/dom-events-builder.d.ts +0 -11
  439. package/events/dom-events.d.ts +0 -28
  440. package/events/drag-end-event.d.ts +0 -26
  441. package/events/drag-event.d.ts +0 -26
  442. package/events/drag-start-event.d.ts +0 -26
  443. package/events/drilldown-event.d.ts +0 -42
  444. package/events/drilldown-state-change-event.d.ts +0 -26
  445. package/events/legend-item-click-event.d.ts +0 -36
  446. package/events/legend-item-hover-event.d.ts +0 -36
  447. package/events/legend-item-leave-event.d.ts +0 -36
  448. package/events/navigator-filter-event.d.ts +0 -23
  449. package/events/note-click-event.d.ts +0 -36
  450. package/events/note-hover-event.d.ts +0 -36
  451. package/events/plot-area-click-event.d.ts +0 -35
  452. package/events/plot-area-hover-event.d.ts +0 -35
  453. package/events/preventable-event.d.ts +0 -22
  454. package/events/render-event.d.ts +0 -15
  455. package/events/select-end-event.d.ts +0 -28
  456. package/events/select-event.d.ts +0 -28
  457. package/events/select-start-event.d.ts +0 -28
  458. package/events/series-click-event.d.ts +0 -49
  459. package/events/series-hover-event.d.ts +0 -53
  460. package/events/zoom-end-event.d.ts +0 -28
  461. package/events/zoom-event.d.ts +0 -32
  462. package/events/zoom-start-event.d.ts +0 -26
  463. package/field-types/auto-base-unit-steps.interface.d.ts +0 -43
  464. package/field-types/axis-labels-position.d.ts +0 -26
  465. package/field-types/axis-line.interface.d.ts +0 -26
  466. package/field-types/axis-ticks.interface.d.ts +0 -33
  467. package/field-types/axis-title-position.d.ts +0 -26
  468. package/field-types/base-unit.d.ts +0 -38
  469. package/field-types/border.interface.d.ts +0 -22
  470. package/field-types/bullet-target-line.interface.d.ts +0 -13
  471. package/field-types/bullet-target.interface.d.ts +0 -23
  472. package/field-types/category-base-unit.d.ts +0 -39
  473. package/field-types/dash-type.d.ts +0 -32
  474. package/field-types/date-formats.interface.d.ts +0 -43
  475. package/field-types/drag-action.interface.d.ts +0 -19
  476. package/field-types/error-bar-line.interface.d.ts +0 -18
  477. package/field-types/grid-lines.interface.d.ts +0 -34
  478. package/field-types/highlight-line.interface.d.ts +0 -26
  479. package/field-types/label-connectors.interface.d.ts +0 -21
  480. package/field-types/label-rotation.interface.d.ts +0 -23
  481. package/field-types/legend-labels.interface.d.ts +0 -32
  482. package/field-types/line-style.d.ts +0 -32
  483. package/field-types/lock-axis.d.ts +0 -8
  484. package/field-types/margin.interface.d.ts +0 -25
  485. package/field-types/marker-type.d.ts +0 -35
  486. package/field-types/modifier-key.d.ts +0 -8
  487. package/field-types/mousewheel-select.interface.d.ts +0 -22
  488. package/field-types/mousewheel-zoom.interface.d.ts +0 -22
  489. package/field-types/negative-bubble-values.interface.d.ts +0 -17
  490. package/field-types/note-label-position.d.ts +0 -33
  491. package/field-types/note-line.interface.d.ts +0 -26
  492. package/field-types/note-position.d.ts +0 -33
  493. package/field-types/overlay.interface.d.ts +0 -19
  494. package/field-types/padding.interface.d.ts +0 -10
  495. package/field-types/plot-band-label.interface.d.ts +0 -91
  496. package/field-types/plot-band.interface.d.ts +0 -34
  497. package/field-types/series-labels-position.d.ts +0 -20
  498. package/field-types/series-line.interface.d.ts +0 -32
  499. package/field-types/series-stack.interface.d.ts +0 -21
  500. package/field-types/series-type.d.ts +0 -73
  501. package/field-types/trendline-forecast.interface.d.ts +0 -17
  502. package/field-types/week-start-day.enum.d.ts +0 -37
  503. package/methods/index.d.ts +0 -40
  504. package/option-types/axis-defaults/crosshair.interface.d.ts +0 -45
  505. package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -38
  506. package/option-types/axis-defaults/labels.interface.d.ts +0 -73
  507. package/option-types/axis-defaults/title.interface.d.ts +0 -71
  508. package/option-types/axis-defaults.interface.d.ts +0 -77
  509. package/option-types/category-axis-item/crosshair.interface.d.ts +0 -44
  510. package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -38
  511. package/option-types/category-axis-item/labels.interface.d.ts +0 -108
  512. package/option-types/category-axis-item/notes.icon.interface.d.ts +0 -36
  513. package/option-types/category-axis-item/notes.interface.d.ts +0 -49
  514. package/option-types/category-axis-item/notes.label.interface.d.ts +0 -50
  515. package/option-types/category-axis-item/range-labels.interface.d.ts +0 -28
  516. package/option-types/category-axis-item/select.interface.d.ts +0 -30
  517. package/option-types/category-axis-item/title.interface.d.ts +0 -69
  518. package/option-types/category-axis-item.interface.d.ts +0 -163
  519. package/option-types/chart-area.interface.d.ts +0 -34
  520. package/option-types/legend/inactive-items.interface.d.ts +0 -14
  521. package/option-types/legend/item.interface.d.ts +0 -121
  522. package/option-types/legend/legend-title.interface.d.ts +0 -65
  523. package/option-types/legend.interface.d.ts +0 -98
  524. package/option-types/navigator/hint.interface.d.ts +0 -25
  525. package/option-types/navigator/select.interface.d.ts +0 -22
  526. package/option-types/navigator.interface.d.ts +0 -41
  527. package/option-types/pane/title.interface.d.ts +0 -60
  528. package/option-types/pane-defaults/title.interface.d.ts +0 -56
  529. package/option-types/pane-defaults.interface.d.ts +0 -43
  530. package/option-types/pane.interface.d.ts +0 -43
  531. package/option-types/plot-area.interface.d.ts +0 -30
  532. package/option-types/series-defaults/labels.from.interface.d.ts +0 -55
  533. package/option-types/series-defaults/labels.interface.d.ts +0 -77
  534. package/option-types/series-defaults/labels.to.interface.d.ts +0 -55
  535. package/option-types/series-defaults/notes.icon.interface.d.ts +0 -36
  536. package/option-types/series-defaults/notes.interface.d.ts +0 -40
  537. package/option-types/series-defaults/notes.label.interface.d.ts +0 -50
  538. package/option-types/series-defaults/tooltip.interface.d.ts +0 -45
  539. package/option-types/series-defaults.interface.d.ts +0 -95
  540. package/option-types/series-item/error-bars.interface.d.ts +0 -59
  541. package/option-types/series-item/extremes.interface.d.ts +0 -36
  542. package/option-types/series-item/highlight.interface.d.ts +0 -67
  543. package/option-types/series-item/labels.from.interface.d.ts +0 -71
  544. package/option-types/series-item/labels.interface.d.ts +0 -101
  545. package/option-types/series-item/labels.to.interface.d.ts +0 -69
  546. package/option-types/series-item/markers.interface.d.ts +0 -69
  547. package/option-types/series-item/notes.icon.interface.d.ts +0 -36
  548. package/option-types/series-item/notes.interface.d.ts +0 -50
  549. package/option-types/series-item/notes.label.interface.d.ts +0 -50
  550. package/option-types/series-item/outliers.interface.d.ts +0 -36
  551. package/option-types/series-item/tooltip.interface.d.ts +0 -46
  552. package/option-types/series-item/trendline.interface.d.ts +0 -34
  553. package/option-types/series-item.interface.d.ts +0 -474
  554. package/option-types/subtitle.interface.d.ts +0 -65
  555. package/option-types/title.interface.d.ts +0 -59
  556. package/option-types/tooltip.interface.d.ts +0 -52
  557. package/option-types/value-axis-item/crosshair.interface.d.ts +0 -30
  558. package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -38
  559. package/option-types/value-axis-item/labels.interface.d.ts +0 -86
  560. package/option-types/value-axis-item/notes.icon.interface.d.ts +0 -36
  561. package/option-types/value-axis-item/notes.interface.d.ts +0 -49
  562. package/option-types/value-axis-item/notes.label.interface.d.ts +0 -50
  563. package/option-types/value-axis-item/title.interface.d.ts +0 -70
  564. package/option-types/value-axis-item.interface.d.ts +0 -118
  565. package/option-types/x-axis-item/crosshair.interface.d.ts +0 -30
  566. package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -38
  567. package/option-types/x-axis-item/labels.interface.d.ts +0 -93
  568. package/option-types/x-axis-item/notes.icon.interface.d.ts +0 -36
  569. package/option-types/x-axis-item/notes.interface.d.ts +0 -50
  570. package/option-types/x-axis-item/notes.label.interface.d.ts +0 -50
  571. package/option-types/x-axis-item/title.interface.d.ts +0 -69
  572. package/option-types/x-axis-item.interface.d.ts +0 -139
  573. package/option-types/y-axis-item/crosshair.interface.d.ts +0 -30
  574. package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -38
  575. package/option-types/y-axis-item/labels.interface.d.ts +0 -93
  576. package/option-types/y-axis-item/notes.icon.interface.d.ts +0 -36
  577. package/option-types/y-axis-item/notes.interface.d.ts +0 -49
  578. package/option-types/y-axis-item/notes.label.interface.d.ts +0 -50
  579. package/option-types/y-axis-item/title.interface.d.ts +0 -70
  580. package/option-types/y-axis-item.interface.d.ts +0 -135
  581. package/option-types/zoomable.interface.d.ts +0 -18
  582. package/package-metadata.d.ts +0 -9
  583. package/sankey/Sankey.d.ts +0 -10
  584. package/sankey/index.d.ts +0 -7
  585. package/sankey/propTypes.d.ts +0 -117
  586. package/sankey/theme-service.d.ts +0 -9
  587. package/sankey/types.d.ts +0 -124
  588. package/store/reducer.d.ts +0 -18
  589. package/store/store.d.ts +0 -30
  590. package/theming/theme-service.d.ts +0 -10
  591. package/tooltip/Context.d.ts +0 -15
  592. package/tooltip/Crosshair.d.ts +0 -40
  593. package/tooltip/CrosshairContainer.d.ts +0 -32
  594. package/tooltip/Point.d.ts +0 -72
  595. package/tooltip/Popup.d.ts +0 -35
  596. package/tooltip/Series.d.ts +0 -39
  597. package/tooltip/SharedTooltipContent.d.ts +0 -15
  598. package/tooltip/index.d.ts +0 -7
  599. package/utils/index.d.ts +0 -17
@@ -1,50 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Border, NoteLabelPosition } from '../../common/property-types';
6
- /**
7
- * @hidden
8
- */
9
- export interface SeriesNotesLabel {
10
- /**
11
- * The background color of the label. Accepts a valid CSS color string, including hex and rgb.
12
- */
13
- background?: string;
14
- /**
15
- * The border of the label.
16
- */
17
- border?: Border;
18
- /**
19
- * The text color of the label. Accepts a valid CSS color string, including hex and rgb.
20
- */
21
- color?: string;
22
- /**
23
- * The function which returns the label content. The function argument contains a `value` field which defines the point value. You can split the text into multiple lines by using line feed characters (`"\n"`).
24
- */
25
- content?: (e: any) => string;
26
- /**
27
- * The font style of the label.
28
- */
29
- font?: string;
30
- /**
31
- * The format for displaying the notes label. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the axis value.
32
- */
33
- format?: string;
34
- /**
35
- * The position of the labels.
36
- *
37
- * The available options are:
38
- * - `"inside"`—The label is positioned inside the icon.
39
- * - `"outside"`—The label is positioned outside the icon.
40
- */
41
- position?: NoteLabelPosition;
42
- /**
43
- * The rotation angle of the label. By default, the label is not rotated.
44
- */
45
- rotation?: number;
46
- /**
47
- * If set to `true`, the Chart displays the series notes label. By default, the series notes label is visible.
48
- */
49
- visible?: boolean;
50
- }
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Border, MarkerType } from '../../common/property-types';
6
- /**
7
- * @hidden
8
- */
9
- export interface SeriesOutliers {
10
- /**
11
- * The background color of the series outliers.
12
- */
13
- background?: string;
14
- /**
15
- * The border of the outliers.
16
- */
17
- border?: Border;
18
- /**
19
- * The rotation angle of the outliers.
20
- */
21
- rotation?: number;
22
- /**
23
- * The marker size in pixels.
24
- */
25
- size?: number;
26
- /**
27
- * The outliers shape.
28
- *
29
- * The supported values are:
30
- * * `"circle"`—The marker shape is a circle.
31
- * * `"square"`—The marker shape is a square.
32
- * * `"triangle"`—The marker shape is a triangle.
33
- * * `"cross"`—The marker shape is a cross.
34
- */
35
- type?: MarkerType;
36
- }
@@ -1,46 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Border, Padding } from '../../common/property-types';
6
- /**
7
- * @hidden
8
- */
9
- export interface SeriesTooltip {
10
- /**
11
- * The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
12
- */
13
- background?: string;
14
- /**
15
- * The border configuration options.
16
- */
17
- border?: Border;
18
- /**
19
- * The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
20
- */
21
- color?: string;
22
- /**
23
- * The font of the tooltip.
24
- */
25
- font?: string;
26
- /**
27
- * The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
28
- *
29
- * The available format placeholders are:
30
- * - Area, Bar, Column, Line, Funnel, Pyramid, Pie, radarArea, radarColumn and radarLine: {0} - value.
31
- * - Bubble: {0} - x value, {1} - y value, {2} - size value, {3} - category name.
32
- * - Scatter, scatterLine: {0} - x value, {1} - y value.
33
- * - PolarArea, polarLine and polarScatterL: {0} - x value (degrees), {1} - y value.
34
- * - Candlestick and OHLC: {0} - open value, {1} - high value, {2} - low value, {3} - close value, {4} - category name.
35
- * - RangeArea, rangeBar, rangeColumn: {0} - from value, {1} - to value.
36
- */
37
- format?: string;
38
- /**
39
- * The padding of the tooltip. A numeric value sets all paddings.
40
- */
41
- padding?: Padding | number;
42
- /**
43
- * If set to `true`, the Chart displays the series tooltip. By default, the series tooltip is not displayed.
44
- */
45
- visible?: boolean;
46
- }
@@ -1,34 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { TrendlineForecast } from '../../common/property-types';
6
- /**
7
- * The configuration options of the series trendlines.
8
- */
9
- export interface SeriesTrendline {
10
- /**
11
- * The trendline forecast settings. By default, the trendline does not display a forecast.
12
- *
13
- * The forecast setting is supported for Linear Trendlines on date and scatter series.
14
- */
15
- forecast?: TrendlineForecast;
16
- /**
17
- * The number of intervals to take when calculating averages. The value should be an integer greater than 2.
18
- *
19
- * The period setting is supported only for Moving Average trendlines.
20
- */
21
- period?: number;
22
- /**
23
- * The order (degree) of the Polynomial trendline. The default value is 2.
24
- *
25
- * Accepted values are from 2 to 6:
26
- * * 2: a Quadratic polynomial trendline with a single extreme point (minimum or maximum) point.
27
- * * 3: a Cubic polynomial trendline with up to 2 extreme points.
28
- * * 4: a polynomial trendline of 4th degree with up to 3 extreme points.
29
- * * 5: a polynomial trendline of 5th degree with up to 4 extreme points.
30
- * * 6: a polynomial trendline of 6th degree with up to 5 extreme points.
31
- *
32
- */
33
- order?: number;
34
- }
@@ -1,474 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { drawing } from '@progress/kendo-drawing';
6
- import { Border, BulletTarget, DashType, LabelConnectors, LegendItem, SeriesTrendline } from '../common/property-types';
7
- import { Margin, NegativeBubbleValues, Overlay, SeriesLine, SeriesType } from '../common/property-types';
8
- import { LineStyle, SeriesStack, SeriesVisualArgs } from '../common/property-types';
9
- import { SeriesErrorBars } from './series-item/error-bars.interface';
10
- import { SeriesExtremes } from './series-item/extremes.interface';
11
- import { SeriesHighlight } from './series-item/highlight.interface';
12
- import { SeriesLabels } from './series-item/labels.interface';
13
- import { SeriesMarkers } from './series-item/markers.interface';
14
- import { SeriesNotes } from './series-item/notes.interface';
15
- import { SeriesOutliers } from './series-item/outliers.interface';
16
- import { SeriesTooltip } from './series-item/tooltip.interface';
17
- /**
18
- * @hidden
19
- */
20
- export interface Series {
21
- /**
22
- * The aggregate function for the date series ([see example]({% slug axes_chart_charts %}#toc-aggregating-data)). The function is used when a category (year, month, or other) contains two or more points. The Chart displays the return value of the function instead of the individual points.
23
- *
24
- * The supported values are:
25
- * - `"avg"`—The average of all values for the date period.
26
- * - `"count"`—The number of values for the date period.
27
- * - `"max"`—The highest value for the date period.
28
- * - `"min"`—The lowest value for the date period.
29
- * - `"sum"`—The sum of all values for the date period. Defaults to `0` if no data points are defined.
30
- * - `"sumOrNull"`—The sum of all values for the date period. Defaults to `null` if no data points are defined.
31
- * - `"first"`—The first value.
32
- * - function (values, series, dataItems, category)—A user-defined aggregate function. Returns a single value or a data item.
33
- * - object (compound aggregate)—Applicable to the Candlestick, Box Plot, and OHLC series. Specifies the aggregate for each data item field.
34
- */
35
- aggregate?: any;
36
- /**
37
- * The name of the value axis. The axis option is supported for Scatter plots. For more information on Scatter plots, refer to [`xAxis`]({% slug api_charts_chartxaxisitemprops %}) and [`yAxis`]({% slug api_charts_chartyaxisitemprops %}).
38
- */
39
- axis?: string;
40
- /**
41
- * If set to true, the Chart automatically scales down to fit the content area. Applicable for the Pie and Donut series.
42
- */
43
- autoFit?: boolean;
44
- /**
45
- * The border of the Chart series. The border option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"donut"`, `"pie"`, `"bubble"`, `"boxPlot"`, `"candlestick"`, or `"ohlc"`.
46
- */
47
- border?: Border;
48
- /**
49
- * The name of the category axis that will be used for the series. If no [`categoryAxis`]({% slug api_charts_chartcategoryaxisitemprops %}) is specified, the first axis is used.
50
- */
51
- categoryAxis?: string;
52
- /**
53
- * The data item field which contains the category name or date. If the category is a date, the points are rendered in chronological order.
54
- */
55
- categoryField?: string;
56
- /**
57
- * The data field that contains the `close` value. The `closeField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"` or `"ohlc"`.
58
- */
59
- closeField?: string;
60
- /**
61
- * The series base color.
62
- *
63
- * The supported values are:
64
- * - CSS color string, including hex and rgb.
65
- * - function (point)—A user-defined function that is evaluated for each point. Returning `undefined` assumes the default series color.
66
- */
67
- color?: any;
68
- /**
69
- * The data item field which contains the series color. The `colorField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"rangeBar"`, `"rangeColumn"`, `"bubble"`, `"donut"`, `"pie"`, `"candlestick"`, `"ohlc"`, or `"waterfall"`.
70
- */
71
- colorField?: string;
72
- /**
73
- * The label connectors options. The connectors option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"` or `"pie"` and [`series.labels.visible`]({% slug api_charts_chartserieslabelsprops %}#toc-visible) is set to `true`.
74
- */
75
- connectors?: LabelConnectors;
76
- /**
77
- * The data item field which contains the current value. The `currentField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bullet"` or `"verticalBullet"`.
78
- */
79
- currentField?: string;
80
- /**
81
- * The dash type of line Chart. The `dashType` option is considered only if the [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) option is set to `"line"`.
82
- *
83
- * The following dash types are supported:
84
- * - `"dash"`—A line consisting of dashes.
85
- * - `"dashDot"`—A line consisting of a repeating pattern of dash-dot.
86
- * - `"dot"`—A line consisting of dots.
87
- * - `"longDash"`—A line consisting of a repeating pattern of long-dash.
88
- * - `"longDashDot"`—A line consisting of a repeating pattern of long-dash-dot.
89
- * - `"longDashDotDot"`—A line consisting of a repeating pattern of long-dash-dot-dot.
90
- * - `"solid"`—A solid line.
91
- */
92
- dashType?: DashType;
93
- /**
94
- * The array of data items which represent the series data.
95
- *
96
- * You can set it to:
97
- * - Array of objects. Each point is bound to the field specified through the [`series.field`]({% slug api_charts_chartseriesitemprops %}#toc-field) option.
98
- * - Array of numbers. Supported when the [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) option is set to `"area"`, `"bar"`, `"column"`, `"donut"`, `"pie"`, `"line"`, or `"waterfall"`.
99
- * - Array of arrays of numbers. Supported when the [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) option is set to `"bubble"`, `"scatter"`, `"scatterLine"`, `"ohlc"`, `"polar"`, `"rangeBar"`, or `"rangeArea"`.
100
- *
101
- * The Bubble series need arrays of three values—X value, Y value, and Size value—for example, `[1, 1, 10]`. The Scatter and ScatterLine series need arrays of two values—X value and Y value. The OHLC and Candlestick series need arrays of four values—open, high, low, and close. The RangeBar and RangeArea series need arrays of two values—the from and to value.
102
- */
103
- data?: any[];
104
- /**
105
- * The series color when the open value is greater than the close value. The `downColor` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"`.
106
- */
107
- downColor?: string;
108
- /**
109
- * The data field which contains the color that is applied when the `open` value is greater than the `close` value. The `downColorField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"`.
110
- */
111
- downColorField?: string;
112
- /**
113
- * The data field which contains the value to use to [drill down]({% slug drilldown_charts %}) into detailed data for the point.
114
- */
115
- drilldownField?: string;
116
- /**
117
- * The `dynamicHeight` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"funnel"` or `"pyramid"`. When set to `false`, all segments become with the same height. Otherwise, the height of each segment is based on its value.
118
- */
119
- dynamicHeight?: boolean;
120
- /**
121
- * The `dynamicSlope` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"funnel"`. When set to `true`, the ratio of the bases of each segment is calculated based on the ratio of `currentDataItem.value`/`nextDataItem.value`. The last element is always created like a rectangle since there is no following element.
122
- */
123
- dynamicSlope?: boolean;
124
- /**
125
- * The data item field which contains the [`series.errorBars`]({% slug api_charts_chartseriesitemprops %}#toc-errorbars) high value ([see example]({% slug errorbars_chart_charts %}#toc-categorical-charts)). The `errorHighField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, or `"area"`.
126
- */
127
- errorHighField?: string;
128
- /**
129
- * The data item field which contains the [`series.errorBars`]({% slug api_charts_chartseriesitemprops %}#toc-errorbars) low value ([see example]({% slug errorbars_chart_charts %}#toc-categorical-charts)). The `errorLowField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, or `"area"`.
130
- */
131
- errorLowField?: string;
132
- /**
133
- * The data item field which contains a Boolean value indicating whether the sector is exploded. The `explodeField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"` or `"pie"`.
134
- */
135
- explodeField?: string;
136
- /**
137
- * The data item field which contains the series value.
138
- */
139
- field?: string;
140
- /**
141
- * The name of the parent series of the trendline.
142
- *
143
- * The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
144
- * "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
145
- */
146
- for?: string;
147
- /**
148
- * The data item field which contains the series from value.
149
- */
150
- fromField?: string;
151
- /**
152
- * The distance between the categories expressed as a percentage of the bar width. See the related spacing setting. The `gap` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`, `"radarColumn"`, or `"waterfall"`.
153
- */
154
- gap?: number;
155
- /**
156
- * The data field which contains the high value. The `highField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"` or `"ohlc"`.
157
- */
158
- highField?: string;
159
- /**
160
- * The diameter of the donut hole in pixels. The `holeSize` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"`.
161
- */
162
- holeSize?: number;
163
- /**
164
- * The Chart line configuration options. The line option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"area"`, `"candlestick"`, `"ohlc"`, or `"waterfall"`.
165
- */
166
- line?: SeriesLine;
167
- /**
168
- * The data field containing the low value. The `lowField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"` or `"ohlc"`.
169
- */
170
- lowField?: string;
171
- /**
172
- * The data item field which contains the series lower value.
173
- */
174
- lowerField?: string;
175
- /**
176
- * The margin around each donut series (ring). A numeric value sets all margins.
177
- */
178
- margin?: Margin | number;
179
- /**
180
- * The maximum size of the Chart bubble series marker.
181
- */
182
- maxSize?: number;
183
- /**
184
- * The data item field which contains the series mean value.
185
- */
186
- meanField?: string;
187
- /**
188
- * The data item field which contains the series median value.
189
- */
190
- medianField?: string;
191
- /**
192
- * The minimum size of the Chart bubble series marker.
193
- */
194
- minSize?: number;
195
- /**
196
- * The behavior for handling missing values. The `missingValues` option is available when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"area"`, `"rangeArea"`, `"line"`, `"scatterLine"`, `"radarLine"`, `"radarArea"`, `"polarLine"`, or `"polarArea"`.
197
- *
198
- * The supported values are:
199
- * - `"gap"`—The plot stops before the missing point and continues after it.
200
- * - `"interpolate"`—The value is interpolated from neighboring points. Represents the default value for all series except for the `"area"` and stacked series. Area and stacked series default to `"zero"`.
201
- * - `"zero"`—The value is assumed to be zero.
202
- */
203
- missingValues?: 'gap' | 'interpolate' | 'zero';
204
- /**
205
- * The name of the Chart series which is visible in the legend.
206
- */
207
- name?: string;
208
- /**
209
- * Specifies the top-base/bottom-base ratio of the whole Funnel Chart. If the `neckRatio` is set to `3`, it means the top base is three times smaller than the bottom base. The `neckRatio` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"funnel"` and `dynamicSlope` is set to `false`.
210
- */
211
- neckRatio?: number;
212
- /**
213
- * The color to use for the Bar, Column, or Waterfall series with negative values. Accepts a valid CSS color string, including hex and rgb.
214
- */
215
- negativeColor?: string;
216
- /**
217
- * The options for displaying the Chart negative bubble values.
218
- */
219
- negativeValues?: NegativeBubbleValues;
220
- /**
221
- * The data item field which contains the series note text ([see example]({% slug notes_chart_charts %}#toc-series-notes)).
222
- */
223
- noteTextField?: string;
224
- /**
225
- * The opacity of the series. By default, the series are opaque.
226
- */
227
- opacity?: number;
228
- /**
229
- * The data field which contains the open value. The `openField` option is available when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"` or `"ohlc"`.
230
- */
231
- openField?: string;
232
- /**
233
- * The data item field which contains the series outliers value.
234
- */
235
- outliersField?: string;
236
- /**
237
- * The overlay options of the Chart series.
238
- */
239
- overlay?: Overlay;
240
- /**
241
- * The padding around the Chart (equal on all sides). The padding option is available when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"` or `"pie"`.
242
- */
243
- padding?: number;
244
- /**
245
- * The data item field which contains the series `q1` value.
246
- */
247
- q1Field?: string;
248
- /**
249
- * The data item field which contains the series `q3` value.
250
- */
251
- q3Field?: string;
252
- /**
253
- * The space in pixels between the different segments of the Funnel or Pyramid Chart. The `segmentSpacing` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"funnel"` or `"pyramid"`.
254
- */
255
- segmentSpacing?: number;
256
- /**
257
- * The radius of the Chart Donut series in pixels. If not set, the available space is split evenly between the series.
258
- */
259
- size?: number;
260
- /**
261
- * The data field which contains the bubble size value.
262
- */
263
- sizeField?: string;
264
- /**
265
- * The distance between series points within a category. Expressed as a percentage of the bar width. See the related `gap` setting. The spacing option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`, or `"radarColumn"`.
266
- */
267
- spacing?: number;
268
- /**
269
- * A Boolean value which indicates if the series have to be stacked. A string value is interpreted as [`series.stack.group`]({% slug api_charts_seriesstack %}#toc-group).
270
- *
271
- * The `stack` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, `"area"`, `"verticalLine"`, `"verticalArea"`, `"radarLine"`, `"radarArea"`, and `"radarColumn"`. If not overridden, the stack settings of the first series are inherited as a default value by the rest of the series.
272
- */
273
- stack?: boolean | string | SeriesStack;
274
- /**
275
- * The start angle (in degrees) of the first Donut or Pie segment. Angles increase clockwise with zero to the left. Negative values are acceptable.
276
- */
277
- startAngle?: number;
278
- /**
279
- * The `style` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"line"`, `"scatterLine"`, `"radarLine"`, or `"polarLine"`.
280
- *
281
- * The supported values are:
282
- * - `"normal"` (default)—The values are connected with a straight line.
283
- * - `"step"`—The values are connected with a right-angled line.
284
- * Only available when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"line"`.
285
- * - `"smooth"`—The values are connected with a smooth line.
286
- * Not supported for stacked area series with missing values.
287
- */
288
- style?: LineStyle;
289
- /**
290
- * The data item field which contains the summary type for the Waterfall series. The value (if any) of a data item marked as a summary point will be discarded.
291
- *
292
- * Summary columns are optional and can be one of two types:
293
- * - `"runningTotal"`—Displays the sum of all items since the last `"runningTotal"` point.
294
- * - `"total"`—Displays the sum of all previous items.
295
- */
296
- summaryField?: string;
297
- /**
298
- * The configuration options of the target. The `target` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bullet"` or `"verticalBullet"`.
299
- */
300
- target?: BulletTarget;
301
- /**
302
- * The data item field which contains the series to value.
303
- */
304
- toField?: string;
305
- /**
306
- * The type of the series.
307
- *
308
- * The supported values are:
309
- * - `area`
310
- * - `bar`
311
- * - `boxPlot`
312
- * - `bubble`
313
- * - `bullet`
314
- * - `candlestick`
315
- * - `column`
316
- * - `donut`
317
- * - `exponentialTrendline`
318
- * - `funnel`
319
- * - `pyramid`
320
- * - `heatmap`
321
- * - `horizontalWaterfall`
322
- * - `line`
323
- * - `linearTrendline`
324
- * - `logarithmicTrendline`
325
- * - `movingAverageTrendline`
326
- * - `ohlc`
327
- * - `pie`
328
- * - `polarArea`
329
- * - `polarLine`
330
- * - `polarScatter`
331
- * - `polynomialTrendline`
332
- * - `powerTrendline`
333
- * - `radarArea`
334
- * - `radarColumn`
335
- * - `radarLine`
336
- * - `rangeArea`
337
- * - `rangeBar`
338
- * - `rangeColumn`
339
- * - `scatter`
340
- * - `scatterLine`
341
- * - `verticalArea`
342
- * - `verticalBoxPlot`
343
- * - `verticalBullet`
344
- * - `verticalLine`
345
- * - `verticalRangeArea`
346
- * - `waterfall`
347
- */
348
- type?: SeriesType;
349
- /**
350
- * The data item field which contains the series upper value.
351
- */
352
- upperField?: string;
353
- /**
354
- * Sets the visible property of a Chart series.
355
- */
356
- visible?: boolean;
357
- /**
358
- * A value which indicates whether to show the point category (for Funnel, Pyramid, Donut, and Pie series) or the series name (for other available series types) in the legend.
359
- */
360
- visibleInLegend?: boolean;
361
- /**
362
- * The data item field which indicates whether to show the point category name in the legend. The `visibleInLegendField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"funnel"`, `"pyramid"`, `"donut"`, or `"pie"`.
363
- */
364
- visibleInLegendField?: string;
365
- /**
366
- * A function that can be used to create a custom visual for the points. Applicable for the Bar, Column, Pie, Donut, Funnel, Pyramid, Range Bar, Range Column, and Waterfall series.
367
- *
368
- * The available argument fields are:
369
- *
370
- * - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
371
- * - `options`—The point options.
372
- * - `createVisual`—A function that can be used to get the default visual.
373
- * - `category`—The point category.
374
- * - `dataItem`—The point `dataItem`.
375
- * - `value`—The point value.
376
- * - `stackValue`—The cumulative point value on the stack. Available only for the stackable series.
377
- * - `sender`—The Chart instance.
378
- * - `series`—The point series.
379
- * - `percentage`—The point value represented as a percentage value. Available only for the Donut, Pie, and 100% Stacked Charts.
380
- * - `runningTotal`—The sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series.
381
- * - `total`—The sum of all previous series values. Available for the Waterfall series.
382
- * - `radius`—The segment radius. Available for the Donut and Pie series.
383
- * - `innerRadius`—The segment inner radius. Available for the Donut series.
384
- * - `startAngle`—The segment start angle. Available for the Donut and Pie series.
385
- * - `endAngle`—The segment end angle. Available for the Donut and Pie series.
386
- * - `center`—The segment center point. Available for the Donut and Pie series.
387
- * - `points`—The segment points. Available for the Funnel and Pyramid series.
388
- */
389
- visual?: (e: SeriesVisualArgs) => drawing.Element;
390
- /**
391
- * The line width. The `width` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"line"`, `"scatterLine"`, `"radarLine"`, or `"polarLine"`.
392
- */
393
- width?: number;
394
- /**
395
- * The name of the X axis. The [`xAxis`]({% slug api_charts_chartxaxisitemprops %}) option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bubble"`, `"scatter"`, `"scatterLine"`, or `"polar"` series. For the Polar series, the [`xAxis`]({% slug api_charts_chartxaxisitemprops %}) range is expressed in degrees.
396
- */
397
- xAxis?: string;
398
- /**
399
- * The data item field which contains the [`series.errorBars`]({% slug api_charts_chartseriesitemprops %}#toc-errorbars) xAxis high value ([see example]({% slug errorbars_chart_charts %}#toc-scatter-charts)). The `xErrorHighField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"scatter"``, `"scatterLine"`, or `"bubble"`.
400
- */
401
- xErrorHighField?: string;
402
- /**
403
- * The data item field which contains the [`series.errorBars`]({% slug api_charts_chartseriesitemprops %}#toc-errorbars) xAxis low value ([see example]({% slug errorbars_chart_charts %}#toc-scatter-charts)). The `xErrorLowField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"scatter"`, `"scatterLine"`, or `"bubble"`.
404
- */
405
- xErrorLowField?: string;
406
- /**
407
- * The data item field containing the x value. The `xField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bubble"`, `"scatter"`, `"scatterLine"`, or `"polar"` series.
408
- */
409
- xField?: string;
410
- /**
411
- * The name of the Y axis to use. Available for the Bubble, Scatter, Scatter Line, and Polar series.
412
- */
413
- yAxis?: string;
414
- /**
415
- * The data item field which contains the [`series.errorBars`]({% slug api_charts_chartseriesitemprops %}#toc-errorbars) yAxis high value ([see example]({% slug errorbars_chart_charts %}#toc-scatter-charts)). The `yErrorHighField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"scatter"`, `"scatterLine"`, or `"bubble"`.
416
- */
417
- yErrorHighField?: string;
418
- /**
419
- * The data item field which contains the [`series.errorBars`]({% slug api_charts_chartseriesitemprops %}#toc-errorbars) yAxis low value ([see example]({% slug errorbars_chart_charts %}#toc-scatter-charts)). The `yErrorLowField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"scatter"`, `"scatterLine"`, or `"bubble"`.
420
- */
421
- yErrorLowField?: string;
422
- /**
423
- * The data item field containing the y value. The `yField` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bubble"`, `"scatter"`, or `"scatterLine"`.
424
- */
425
- yField?: string;
426
- /**
427
- * An optional Z-index that can be used to change the default stacking order of series. The series with the highest Z-index are placed on top. Series with no Z-index use the default stacking order based on the series type. For example, Line series will be on top with the Bar and Area following after.
428
- */
429
- zIndex?: number;
430
- /**
431
- * The error bars of the Chart series. The `errorBars` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, `"area"`, `"scatter"`, `"scatterLine"`, or `"bubble"`.
432
- */
433
- errorBars?: SeriesErrorBars;
434
- /**
435
- * The configuration of the Chart series extremes. Applies to extreme outliers. For more information, refer to [`series.outliers`]({% slug api_charts_chartseriesitemprops %}#toc-outliers).
436
- */
437
- extremes?: SeriesExtremes;
438
- /**
439
- * The configuration of the Chart series highlight.
440
- */
441
- highlight?: SeriesHighlight;
442
- /**
443
- * The configuration of the Chart series label. The Chart displays the series labels when the [`series.labels.visible`]({% slug api_charts_chartserieslabelsprops %}#toc-visible) option is set to `true`.
444
- */
445
- labels?: SeriesLabels;
446
- /**
447
- * The configuration of the Chart series marker. The Chart displays the series markers when the [`series.markers.visible`]({% slug api_charts_chartseriesmarkersprops %}#toc-visible) option is set to `true`. The markers option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"area"`, `"rangeArea"`, `"line"`, `"scatter"`, `"scatterLine"`, `"radarLine"`, `"radarArea"`, `"polarLine"`, `"polarScatter"`, or `"polarArea"`.
448
- */
449
- markers?: SeriesMarkers;
450
- /**
451
- * The configuration of the Chart legend item.
452
- * By default, the Legend item type and markers are inherited from the series.
453
- */
454
- legendItem?: LegendItem;
455
- /**
456
- * The configuration of the series notes.
457
- */
458
- notes?: SeriesNotes;
459
- /**
460
- * The configuration of the Chart series outliers. Applies to mild outliers. For more information, refer to [`series.extremes`]({% slug api_charts_chartseriesitemprops %}#toc-extremes).
461
- */
462
- outliers?: SeriesOutliers;
463
- /**
464
- * The configuration options of the Chart series tooltip.
465
- */
466
- tooltip?: SeriesTooltip;
467
- /**
468
- * The configuration options of the series trendlines.
469
- *
470
- * The `trendline` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
471
- * "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
472
- */
473
- trendline?: SeriesTrendline;
474
- }