@progress/kendo-charts 2.12.3-develop.4 → 2.13.0-develop.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. package/dist/npm/api-types/axis-range.interface.d.ts +14 -0
  2. package/dist/npm/api-types/chart-axis.interface.d.ts +50 -0
  3. package/dist/npm/api-types/chart-pane.interface.d.ts +16 -0
  4. package/dist/npm/api-types/chart-plotarea.interface.d.ts +16 -0
  5. package/dist/npm/api-types/event-axis-options.interface.d.ts +9 -0
  6. package/dist/npm/api-types/event-series-options.interface.d.ts +19 -0
  7. package/dist/npm/api-types/series-point.interface.d.ts +46 -0
  8. package/dist/npm/api-types.d.ts +7 -0
  9. package/dist/npm/argument-types/axis-label-content-args.interface.d.ts +41 -0
  10. package/dist/npm/argument-types/axis-label-visual-args.interface.d.ts +52 -0
  11. package/dist/npm/argument-types/axis-note-content-args.interface.d.ts +19 -0
  12. package/dist/npm/argument-types/axis-note-visual-args.interface.d.ts +32 -0
  13. package/dist/npm/argument-types/error-bars-value-args.interface.d.ts +29 -0
  14. package/dist/npm/argument-types/error-bars-visual-args.interface.d.ts +37 -0
  15. package/dist/npm/argument-types/highlight-toggle-args.interface.d.ts +41 -0
  16. package/dist/npm/argument-types/highlight-visual-args.interface.d.ts +63 -0
  17. package/dist/npm/argument-types/legend-item-visual-args.interface.d.ts +43 -0
  18. package/dist/npm/argument-types/legend-labels-content-args.interface.d.ts +31 -0
  19. package/dist/npm/argument-types/markers-visual-args.interface.d.ts +47 -0
  20. package/dist/npm/argument-types/plot-band-label-visual-args.interface.d.ts +32 -0
  21. package/dist/npm/argument-types/series-labels-content-args.interface.d.ts +54 -0
  22. package/dist/npm/argument-types/series-labels-visual-args.interface.d.ts +77 -0
  23. package/dist/npm/argument-types/series-note-content-args.interface.d.ts +29 -0
  24. package/dist/npm/argument-types/series-note-visual-args.interface.d.ts +52 -0
  25. package/dist/npm/argument-types/series-visual-args.interface.d.ts +95 -0
  26. package/dist/npm/argument-types/title-visual-args.interface.d.ts +32 -0
  27. package/dist/npm/chart-options.d.ts +226 -0
  28. package/dist/npm/chart.d.ts +4 -3
  29. package/dist/npm/field-types/auto-base-unit-steps.interface.d.ts +62 -0
  30. package/dist/npm/field-types/axis-labels-position.d.ts +62 -0
  31. package/dist/npm/field-types/axis-line.interface.d.ts +41 -0
  32. package/dist/npm/field-types/axis-ticks.interface.d.ts +45 -0
  33. package/dist/npm/field-types/axis-title-position.d.ts +62 -0
  34. package/dist/npm/field-types/base-unit.d.ts +82 -0
  35. package/dist/npm/field-types/border.interface.d.ts +19 -4
  36. package/dist/npm/field-types/bullet-target-line.interface.d.ts +9 -0
  37. package/dist/npm/field-types/bullet-target.interface.d.ts +23 -0
  38. package/dist/npm/field-types/category-base-unit.d.ts +113 -0
  39. package/dist/npm/field-types/dash-type.d.ts +87 -5
  40. package/dist/npm/field-types/date-formats.interface.d.ts +47 -0
  41. package/dist/npm/field-types/drag-action.interface.d.ts +17 -0
  42. package/dist/npm/field-types/error-bar-line.interface.d.ts +16 -0
  43. package/dist/npm/field-types/grid-lines.interface.d.ts +47 -0
  44. package/dist/npm/field-types/highlight-line.interface.d.ts +27 -0
  45. package/dist/npm/field-types/label-connectors.interface.d.ts +19 -0
  46. package/dist/npm/field-types/label-rotation.interface.d.ts +24 -0
  47. package/dist/npm/field-types/legend-labels.interface.d.ts +37 -0
  48. package/dist/npm/field-types/line-style.d.ts +90 -0
  49. package/dist/npm/field-types/lock-axis.d.ts +19 -0
  50. package/dist/npm/field-types/margin.interface.d.ts +15 -5
  51. package/dist/npm/field-types/marker-type.d.ts +94 -0
  52. package/dist/npm/field-types/modifier-key.d.ts +30 -0
  53. package/dist/npm/field-types/mousewheel-select.interface.d.ts +17 -0
  54. package/dist/npm/field-types/mousewheel-zoom.interface.d.ts +21 -0
  55. package/dist/npm/field-types/negative-bubble-values.interface.d.ts +15 -0
  56. package/dist/npm/field-types/note-label-position.d.ts +107 -0
  57. package/dist/npm/field-types/note-line.interface.d.ts +26 -0
  58. package/dist/npm/field-types/note-position.d.ts +104 -0
  59. package/dist/npm/field-types/overlay.interface.d.ts +15 -0
  60. package/dist/npm/field-types/padding.interface.d.ts +11 -1
  61. package/dist/npm/field-types/plot-band-label.interface.d.ts +100 -0
  62. package/dist/npm/field-types/plot-band.interface.d.ts +53 -0
  63. package/dist/npm/field-types/series-labels-alignment.d.ts +16 -0
  64. package/dist/npm/field-types/series-labels-position.d.ts +28 -0
  65. package/dist/npm/field-types/series-line.interface.d.ts +32 -0
  66. package/dist/npm/field-types/series-mean.interface.d.ts +26 -0
  67. package/dist/npm/field-types/series-median.interface.d.ts +26 -0
  68. package/dist/npm/field-types/series-pattern.interface.d.ts +77 -67
  69. package/dist/npm/field-types/series-stack.interface.d.ts +19 -0
  70. package/dist/npm/field-types/series-type.d.ts +244 -0
  71. package/dist/npm/field-types/series-whiskers.interface.d.ts +26 -0
  72. package/dist/npm/field-types/trendline-forecast.interface.d.ts +14 -0
  73. package/dist/npm/field-types/week-start-day.enum.d.ts +49 -0
  74. package/dist/npm/field-types.d.ts +46 -6
  75. package/dist/npm/main.d.ts +4 -0
  76. package/dist/npm/option-types/axis-crosshair-tooltip.interface.d.ts +49 -0
  77. package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +43 -0
  78. package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +6 -0
  79. package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +69 -0
  80. package/dist/npm/option-types/axis-defaults/title.interface.d.ts +63 -0
  81. package/dist/npm/option-types/axis-defaults.interface.d.ts +101 -0
  82. package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +40 -0
  83. package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +6 -0
  84. package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +115 -0
  85. package/dist/npm/option-types/category-axis-item/notes.icon.interface.d.ts +32 -0
  86. package/dist/npm/option-types/category-axis-item/notes.interface.d.ts +40 -0
  87. package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +55 -0
  88. package/dist/npm/option-types/category-axis-item/range-labels.interface.d.ts +28 -0
  89. package/dist/npm/option-types/category-axis-item/select.interface.d.ts +35 -0
  90. package/dist/npm/option-types/category-axis-item/title.interface.d.ts +65 -0
  91. package/dist/npm/option-types/category-axis-item.interface.d.ts +195 -0
  92. package/dist/npm/option-types/chart-area.interface.d.ts +36 -0
  93. package/dist/npm/option-types/legend/inactive-items.interface.d.ts +12 -0
  94. package/dist/npm/option-types/legend/item.interface.d.ts +124 -0
  95. package/dist/npm/option-types/legend/legend-title.interface.d.ts +67 -0
  96. package/dist/npm/option-types/legend/markers.interface.d.ts +34 -0
  97. package/dist/npm/option-types/legend.interface.d.ts +120 -0
  98. package/dist/npm/option-types/navigator/hint-content-args.interface.d.ts +15 -0
  99. package/dist/npm/option-types/navigator/hint.interface.d.ts +27 -0
  100. package/dist/npm/option-types/navigator/select.interface.d.ts +22 -0
  101. package/dist/npm/option-types/navigator.interface.d.ts +56 -0
  102. package/dist/npm/option-types/pane/title.interface.d.ts +65 -0
  103. package/dist/npm/option-types/pane-defaults/title.interface.d.ts +51 -0
  104. package/dist/npm/option-types/pane-defaults.interface.d.ts +53 -0
  105. package/dist/npm/option-types/pane.interface.d.ts +53 -0
  106. package/dist/npm/option-types/plot-area.interface.d.ts +33 -0
  107. package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +54 -0
  108. package/dist/npm/option-types/series-defaults/labels.interface.d.ts +78 -0
  109. package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +57 -0
  110. package/dist/npm/option-types/series-defaults/notes.icon.interface.d.ts +32 -0
  111. package/dist/npm/option-types/series-defaults/notes.interface.d.ts +31 -0
  112. package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +58 -0
  113. package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +54 -0
  114. package/dist/npm/option-types/series-defaults.interface.d.ts +218 -0
  115. package/dist/npm/option-types/series-item/error-bars.interface.d.ts +60 -0
  116. package/dist/npm/option-types/series-item/extremes.interface.d.ts +32 -0
  117. package/dist/npm/option-types/series-item/highlight.interface.d.ts +64 -0
  118. package/dist/npm/option-types/series-item/labels.from.interface.d.ts +73 -0
  119. package/dist/npm/option-types/series-item/labels.interface.d.ts +104 -0
  120. package/dist/npm/option-types/series-item/labels.to.interface.d.ts +74 -0
  121. package/dist/npm/option-types/series-item/markers-highlight.interface.d.ts +22 -0
  122. package/dist/npm/option-types/series-item/markers.interface.d.ts +59 -0
  123. package/dist/npm/option-types/series-item/notes.icon.interface.d.ts +32 -0
  124. package/dist/npm/option-types/series-item/notes.interface.d.ts +35 -0
  125. package/dist/npm/option-types/series-item/notes.label.interface.d.ts +59 -0
  126. package/dist/npm/option-types/series-item/outliers.interface.d.ts +32 -0
  127. package/dist/npm/option-types/series-item/tooltip.interface.d.ts +59 -0
  128. package/dist/npm/option-types/series-item/trendline.interface.d.ts +31 -0
  129. package/dist/npm/option-types/series-item.interface.d.ts +645 -0
  130. package/dist/npm/option-types/subtitle.interface.d.ts +74 -0
  131. package/dist/npm/option-types/title.interface.d.ts +75 -0
  132. package/dist/npm/option-types/tooltip-border.interface.d.ts +12 -0
  133. package/dist/npm/option-types/tooltip.interface.d.ts +65 -0
  134. package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +36 -0
  135. package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +6 -0
  136. package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +101 -0
  137. package/dist/npm/option-types/value-axis-item/notes.icon.interface.d.ts +32 -0
  138. package/dist/npm/option-types/value-axis-item/notes.interface.d.ts +39 -0
  139. package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +60 -0
  140. package/dist/npm/option-types/value-axis-item/title.interface.d.ts +64 -0
  141. package/dist/npm/option-types/value-axis-item.interface.d.ts +148 -0
  142. package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +33 -0
  143. package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +6 -0
  144. package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +109 -0
  145. package/dist/npm/option-types/x-axis-item/notes.icon.interface.d.ts +32 -0
  146. package/dist/npm/option-types/x-axis-item/notes.interface.d.ts +40 -0
  147. package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +58 -0
  148. package/dist/npm/option-types/x-axis-item/title.interface.d.ts +65 -0
  149. package/dist/npm/option-types/x-axis-item.interface.d.ts +165 -0
  150. package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +36 -0
  151. package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +6 -0
  152. package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +107 -0
  153. package/dist/npm/option-types/y-axis-item/notes.icon.interface.d.ts +32 -0
  154. package/dist/npm/option-types/y-axis-item/notes.interface.d.ts +40 -0
  155. package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +58 -0
  156. package/dist/npm/option-types/y-axis-item/title.interface.d.ts +65 -0
  157. package/dist/npm/option-types/y-axis-item.interface.d.ts +154 -0
  158. package/dist/npm/option-types/zoomable.interface.d.ts +16 -0
  159. package/dist/npm/property-types.d.ts +151 -0
  160. package/dist/npm/sankey.d.ts +5 -3
  161. package/package.json +4 -2
@@ -0,0 +1,244 @@
1
+ /**
2
+ * Specifies the series type.
3
+ *
4
+ * The supported values are:
5
+ * {% platform_content angular %}
6
+ * - `"area"`—Shows data as continuous lines that display trends over time, evenly distributed along the category field.
7
+ * - `"bar"`—Shows data as sets of horizontal bars that display the relationship between individual items and the whole category.
8
+ * - `"boxPlot"`—Shows data as a box-and-whisker diagram, which displays the distribution of values in a series.
9
+ * - `"bubble"`—Shows data as bubbles, where each bubble represents a value from the series data.
10
+ * - `"bullet"`—Shows data as vertical bars that display the performance measure, and markers that display the comparative measure.
11
+ * - `"candlestick"`—Shows data as candlesticks, which display the open, close, high, and low values of a series.
12
+ * - `"column"`—Shows data as sets of vertical bars that display the relationship between individual items and the whole category.
13
+ * - `"donut"`—Shows data as a series of rings that are sliced depending on the value.
14
+ * - `"exponentialTrendline"`—Shows an [exponential trendline](https://www.telerik.com/kendo-angular-ui/components/charts/elements/trendlines#exponential-trendline) for the specified parent series.
15
+ * - `"funnel"`—Shows data as a funnel, which is useful for sales data visualization.
16
+ * - `"heatmap"`—Shows data as a heatmap, which is useful for comparing values in a matrix.
17
+ * - `"horizontalWaterfall"`—Shows data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
18
+ * - `"line"`—Shows data as continuous lines that connect data points evenly distributed along the category field.
19
+ * - `"linearTrendline"`—Shows a [linear trendline](https://www.telerik.com/kendo-angular-ui/components/charts/elements/trendlines#linear-trendline) for the specified parent series.
20
+ * - `"logarithmicTrendline"`—Shows a [logarithmic trendline](https://www.telerik.com/kendo-angular-ui/components/charts/elements/trendlines#logarithmic-trendline) for the specified parent series.
21
+ * - `"movingAverageTrendline"`—Shows a [moving average trendline](https://www.telerik.com/kendo-angular-ui/components/charts/elements/trendlines#moving-average-trendline) for the specified parent series.
22
+ * - `"ohlc"`—Shows data as OHLC (open-high-low-close) bars, which display the open, high, low, and close values of a series.
23
+ * - `"pie"`—Shows data as a series of pie slices, which display the contribution of each value to a total.
24
+ * - `"polarArea"`—Shows data as a series of polar area segments, which display the contribution of each value to a total.
25
+ * - `"polarLine"`—Shows data as continuous lines that connect data points evenly distributed along the category field.
26
+ * - `"polarScatter"`—Shows data as points distributed in a polar coordinate system.
27
+ * - `"polynomialTrendline"`—Shows a [polynomial trendline](https://www.telerik.com/kendo-angular-ui/components/charts/elements/trendlines#polynomial-trendline) for the specified parent series.
28
+ * - `"powerTrendline"`—Shows a [power trendline](https://www.telerik.com/kendo-angular-ui/components/charts/elements/trendlines#power-trendline) for the specified parent series.
29
+ * - `"pyramid"`—Shows data as a pyramid divided in segments proportional to each value.
30
+ * - `"radarArea"`—Shows data as a series of radar area segments, which display the contribution of each value to a total.
31
+ * - `"radarColumn"`—Shows data as sets of vertical bars that display the relationship between individual items and the whole category.
32
+ * - `"radarLine"`—Shows data as continuous lines that connect data points evenly distributed along the category field.
33
+ * - `"rangeArea"`—Shows data as a series of range area segments, which display the contribution of each value to a total.
34
+ * - `"rangeBar"`—Shows data as sets of horizontal bars that display the relationship between individual items and the whole category.
35
+ * - `"rangeColumn"`—Shows data as sets of vertical bars that display the relationship between individual items and the whole category.
36
+ * - `"scatter"`—Shows data as points that display the relationship between two variables.
37
+ * - `"scatterLine"`—Shows data as continuous lines that connect data points evenly distributed along the category field.
38
+ * - `"verticalArea"`—Shows data as continuous lines that display trends over time, evenly distributed along the category field.
39
+ * - `"verticalBoxPlot"`—Shows data as a box-and-whisker diagram, which displays the distribution of values in a series.
40
+ * - `"verticalBullet"`—Shows data as vertical bars that display the performance measure, and markers that display the comparative measure.
41
+ * - `"verticalLine"`—Shows data as continuous lines that connect data points evenly distributed along the category field.
42
+ * - `"verticalRangeArea"`—Shows data as a series of range area segments, which display the contribution of each value to a total.
43
+ * - `"waterfall"`—Shows data as a waterfall chart, which is useful for comparing positive and negative values over a period.
44
+ * {% endplatform_content %}
45
+ * {% platform_content react %}
46
+ * - `"area"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
47
+ * - `"bar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
48
+ * - `"boxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
49
+ * - `"bubble"`—Displays the data as bubbles, where each bubble represents a value from the series data.
50
+ * - `"bullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
51
+ * - `"candlestick"`—Displays the data as candlesticks, which show the open, close, high, and low values of a series.
52
+ * - `"column"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
53
+ * - `"donut"`—Displays the data as a series of rings that are sliced depending on the value.
54
+ * - `"exponentialTrendline"`—Displays an exponential [trendline]({% slug trendlines_chart_charts %}#toc-exponential-trendline) for the specified parent series.
55
+ * - `"funnel"`—Displays the data as a funnel, which is useful for sales data visualization.
56
+ * - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
57
+ * - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
58
+ * - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
59
+ * - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}#toc-linear-trendline) for the specified parent series.
60
+ * - `"logarithmicTrendline"`—Displays a logarithmic [trendline]({% slug trendlines_chart_charts %}#toc-logarithmic-trendline) for the specified parent series.
61
+ * - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}#toc-moving-average-trendline) for the specified parent series.
62
+ * - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
63
+ * - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
64
+ * - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
65
+ * - `"polarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
66
+ * - `"polarScatter"`—Displays the data as points distributed in a polar coordinate system.
67
+ * - `"polynomialTrendline"`—Displays a polynomial [trendline]({% slug trendlines_chart_charts %}#toc-polynomial-trendline) for the specified parent series.
68
+ * - `"powerTrendline"`—Displays a power [trendline]({% slug trendlines_chart_charts %}#toc-power-trendline) for the specified parent series.
69
+ * - `"pyramid"`—Displays the data as a pyramid divided in segments proportional to each value.
70
+ * - `"radarArea"`—Displays the data as a series of radar area segments, which show the contribution of each value to a total.
71
+ * - `"radarColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
72
+ * - `"radarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
73
+ * - `"rangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
74
+ * - `"rangeBar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
75
+ * - `"rangeColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
76
+ * - `"scatter"`—Displays the data as points that show the relationship between two variables.
77
+ * - `"scatterLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
78
+ * - `"verticalArea"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
79
+ * - `"verticalBoxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
80
+ * - `"verticalBullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
81
+ * - `"verticalLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
82
+ * - `"verticalRangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
83
+ * - `"waterfall"`—Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
84
+ * {% endplatform_content %}
85
+ * {% platform_content vue %}
86
+ * - `"area"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
87
+ * - `"bar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
88
+ * - `"boxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
89
+ * - `"bubble"`—Displays the data as bubbles, where each bubble represents a value from the series data.
90
+ * - `"bullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
91
+ * - `"candlestick"`—Displays the data as candlesticks, which show the open, close, high, and low values of a series.
92
+ * - `"column"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
93
+ * - `"donut"`—Displays the data as a series of rings that are sliced depending on the value.
94
+ * - `"exponentialTrendline"`—Displays an exponential [trendline]({% slug trendlines_chart_charts %}#toc-exponential-trendline) for the specified parent series.
95
+ * - `"funnel"`—Displays the data as a funnel, which is useful for sales data visualization.
96
+ * - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
97
+ * - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
98
+ * - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
99
+ * - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}#toc-linear-trendline) for the specified parent series.
100
+ * - `"logarithmicTrendline"`—Displays a logarithmic [trendline]({% slug trendlines_chart_charts %}#toc-logarithmic-trendline) for the specified parent series.
101
+ * - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}#toc-moving-average-trendline) for the specified parent series.
102
+ * - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
103
+ * - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
104
+ * - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
105
+ * - `"polarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
106
+ * - `"polarScatter"`—Displays the data as points distributed in a polar coordinate system.
107
+ * - `"polynomialTrendline"`—Displays a polynomial [trendline]({% slug trendlines_chart_charts %}#toc-polynomial-trendline) for the specified parent series.
108
+ * - `"powerTrendline"`—Displays a power [trendline]({% slug trendlines_chart_charts %}#toc-power-trendline) for the specified parent series.
109
+ * - `"pyramid"`—Displays the data as a pyramid divided in segments proportional to each value.
110
+ * - `"radarArea"`—Displays the data as a series of radar area segments, which show the contribution of each value to a total.
111
+ * - `"radarColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
112
+ * - `"radarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
113
+ * - `"rangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
114
+ * - `"rangeBar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
115
+ * - `"rangeColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
116
+ * - `"scatter"`—Displays the data as points that show the relationship between two variables.
117
+ * - `"scatterLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
118
+ * - `"verticalArea"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
119
+ * - `"verticalBoxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
120
+ * - `"verticalBullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
121
+ * - `"verticalLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
122
+ * - `"verticalRangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
123
+ * - `"waterfall"`—Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
124
+ * {% endplatform_content %}
125
+ * {% platform_content angular %}
126
+ * @example
127
+ * ```ts
128
+ * import { Component } from '@angular/core';
129
+ * import { SeriesType } from '@progress/kendo-angular-charts';
130
+ *
131
+ * _@Component({
132
+ * selector: 'my-app',
133
+ * template: `
134
+ * <kendo-chart>
135
+ * <kendo-chart-series>
136
+ * <kendo-chart-series-item [type]="seriesType" [data]="[1, 2, 3]">
137
+ * </kendo-chart-series-item>
138
+ * </kendo-chart-series>
139
+ * </kendo-chart>
140
+ * `
141
+ * })
142
+ * class AppComponent {
143
+ * public seriesType: SeriesType = "verticalLine";
144
+ * }
145
+ *
146
+ * ```
147
+ * {% endplatform_content %}
148
+ * {% platform_content react %}
149
+ * @example
150
+ * ```jsx
151
+ * import {
152
+ * Chart,
153
+ * ChartSeries,
154
+ * ChartSeriesItem
155
+ * } from '@progress/kendo-react-charts';
156
+ *
157
+ * const data = [1, 2, 3];
158
+ * const seriesType = "verticalLine";
159
+ *
160
+ * const ChartContainer = () => (
161
+ * <Chart>
162
+ * <ChartSeries>
163
+ * <ChartSeriesItem type="line" data={data} type={seriesType} />
164
+ * </ChartSeries>
165
+ * </Chart>
166
+ * );
167
+ * ```
168
+ * {% endplatform_content %}
169
+ * {% platform_content vue %}
170
+ * @example
171
+ * ```jsx
172
+ * <template>
173
+ * <Chart>
174
+ * <ChartSeries>
175
+ * <ChartSeriesItem
176
+ * :type="'line'"
177
+ * :data-items="dataItems"
178
+ * :type="seriesType"
179
+ * />
180
+ * </ChartSeries>
181
+ * </Chart>
182
+ * </template>
183
+ * <script>
184
+ * import {
185
+ * Chart,
186
+ * ChartSeries,
187
+ * ChartSeriesItem,
188
+ * } from '@progress/kendo-vue-charts';
189
+ * export default {
190
+ * components: {
191
+ * Chart,
192
+ * ChartSeries,
193
+ * ChartSeriesItem,
194
+ * },
195
+ * data() {
196
+ * return {
197
+ * dataItems: [1, 2, 3],
198
+ * seriesType: 'verticalLine',
199
+ * };
200
+ * },
201
+ * };
202
+ * </script>
203
+ * ```
204
+ * {% endplatform_content %}
205
+ */
206
+ export type SeriesType =
207
+ | 'area'
208
+ | 'bar'
209
+ | 'boxPlot'
210
+ | 'bubble'
211
+ | 'bullet'
212
+ | 'candlestick'
213
+ | 'column'
214
+ | 'donut'
215
+ | 'exponentialTrendline'
216
+ | 'funnel'
217
+ | 'pyramid'
218
+ | 'heatmap'
219
+ | 'horizontalWaterfall'
220
+ | 'line'
221
+ | 'linearTrendline'
222
+ | 'logarithmicTrendline'
223
+ | 'movingAverageTrendline'
224
+ | 'ohlc'
225
+ | 'pie'
226
+ | 'polarArea'
227
+ | 'polarLine'
228
+ | 'polarScatter'
229
+ | 'polynomialTrendline'
230
+ | 'powerTrendline'
231
+ | 'radarArea'
232
+ | 'radarColumn'
233
+ | 'radarLine'
234
+ | 'rangeArea'
235
+ | 'rangeBar'
236
+ | 'rangeColumn'
237
+ | 'scatter'
238
+ | 'scatterLine'
239
+ | 'verticalArea'
240
+ | 'verticalBoxPlot'
241
+ | 'verticalBullet'
242
+ | 'verticalLine'
243
+ | 'verticalRangeArea'
244
+ | 'waterfall';
@@ -0,0 +1,26 @@
1
+ import { DashType } from './dash-type';
2
+
3
+ /**
4
+ * Specifies the appearance settings for the BoxPlot whiskers.
5
+ */
6
+ export interface SeriesWhiskers {
7
+ /**
8
+ * Specifies the color of the whiskers. Accepts a valid CSS color string, including hex and rgb.
9
+ */
10
+ color?: string;
11
+
12
+ /**
13
+ * Specifies the dash type of the whiskers.
14
+ */
15
+ dashType?: DashType;
16
+
17
+ /**
18
+ * Specifies the whiskers opacity. By default, the whiskers area is opaque (`opacity: 1`).
19
+ */
20
+ opacity?: number;
21
+
22
+ /**
23
+ * Specifies the width (in pixels) of the whiskers.
24
+ */
25
+ width?: number;
26
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Specifies the series trendline forecast settings.
3
+ */
4
+ export interface TrendlineForecast {
5
+ /**
6
+ * Specifies the number of intervals to extend the trendline before the first data point.
7
+ */
8
+ before?: number;
9
+
10
+ /**
11
+ * Specifies the number of intervals to extend the trendline after the last data point.
12
+ */
13
+ after?: number;
14
+ }
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Specifies the `weekStartDay` of a Date category axis.
3
+ *
4
+ * {% platform_content angular %}
5
+ * See the [Displaying Time Series](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#displaying-time-series) example.
6
+ * {% endplatform_content %}
7
+ * {% platform_content react %}
8
+ * See the [Displaying Dates](https://www.telerik.com/kendo-react-ui/components/charts/chart/elements/axes#displaying-dates) example.
9
+ * {% endplatform_content %}
10
+ * {% platform_content vue %}
11
+ * See the [Displaying Dates](https://www.telerik.com/kendo-vue-ui/components/charts/elements/axes#displaying-dates) example.
12
+ * {% endplatform_content %}
13
+ */
14
+ export enum WeekStartDay {
15
+ /**
16
+ * Specifies Sunday as the first day of the week.
17
+ */
18
+ Sunday,
19
+
20
+ /**
21
+ * Specifies Monday as the first day of the week.
22
+ */
23
+ Monday,
24
+
25
+ /**
26
+ * Specifies Tuesday as the first day of the week.
27
+ */
28
+ Tuesday,
29
+
30
+ /**
31
+ * Specifies Wednesday as the first day of the week.
32
+ */
33
+ Wednesday,
34
+
35
+ /**
36
+ * Specifies Thursday as the first day of the week.
37
+ */
38
+ Thursday,
39
+
40
+ /**
41
+ * Specifies Friday as the first day of the week.
42
+ */
43
+ Friday,
44
+
45
+ /**
46
+ * Specifies Saturday as the first day of the week.
47
+ */
48
+ Saturday
49
+ }
@@ -1,7 +1,47 @@
1
- export { Border } from './field-types/border.interface';
2
- export { DashType } from './field-types/dash-type';
3
- export { Margin } from './field-types/margin.interface';
4
- export { Padding } from './field-types/padding.interface';
5
- export { RenderMode } from './field-types/render-mode';
6
- export { FocusHighlight, FocusHighlightBorder } from './field-types/focus-highlight.interface';
1
+ export * from './field-types/auto-base-unit-steps.interface';
2
+ export * from './field-types/axis-labels-position';
3
+ export * from './field-types/axis-line.interface';
4
+ export * from './field-types/axis-ticks.interface';
5
+ export * from './field-types/axis-title-position';
6
+ export * from './field-types/base-unit';
7
+ export * from './field-types/border.interface';
8
+ export * from './field-types/bullet-target-line.interface';
9
+ export * from './field-types/bullet-target.interface';
10
+ export * from './field-types/category-base-unit';
11
+ export * from './field-types/dash-type';
12
+ export * from './field-types/date-formats.interface';
13
+ export * from './field-types/drag-action.interface';
14
+ export * from './field-types/error-bar-line.interface';
15
+ export * from './field-types/focus-highlight.interface';
16
+ export * from './field-types/grid-lines.interface';
17
+ export * from './field-types/highlight-line.interface';
18
+ export * from './field-types/label-connectors.interface';
19
+ export * from './field-types/label-rotation.interface';
20
+ export * from './field-types/legend-labels.interface';
21
+ export * from './field-types/line-style';
22
+ export * from './field-types/lock-axis';
23
+ export * from './field-types/margin.interface';
24
+ export * from './field-types/marker-type';
25
+ export * from './field-types/modifier-key';
26
+ export * from './field-types/mousewheel-select.interface';
27
+ export * from './field-types/mousewheel-zoom.interface';
28
+ export * from './field-types/negative-bubble-values.interface';
29
+ export * from './field-types/note-label-position';
30
+ export * from './field-types/note-line.interface';
31
+ export * from './field-types/note-position';
32
+ export * from './field-types/overlay.interface';
33
+ export * from './field-types/padding.interface';
34
+ export * from './field-types/plot-band-label.interface';
35
+ export * from './field-types/plot-band.interface';
36
+ export * from './field-types/render-mode';
37
+ export * from './field-types/series-labels-alignment';
38
+ export * from './field-types/series-labels-position';
39
+ export * from './field-types/series-line.interface';
40
+ export * from './field-types/series-mean.interface';
41
+ export * from './field-types/series-median.interface';
7
42
  export * from './field-types/series-pattern.interface';
43
+ export * from './field-types/series-stack.interface';
44
+ export * from './field-types/series-type';
45
+ export * from './field-types/series-whiskers.interface';
46
+ export * from './field-types/trendline-forecast.interface';
47
+ export * from './field-types/week-start-day.enum';
@@ -12,6 +12,10 @@ export * from './common';
12
12
  export * from './field-types'
13
13
  export * from './validation';
14
14
  export * from './chart-wizard';
15
+ export * from './chart-options';
16
+ export * from './field-types';
17
+ export * from './property-types';
18
+ export * from './api-types';
15
19
 
16
20
  export function chartBaseTheme(): any;
17
21
 
@@ -0,0 +1,49 @@
1
+ import { Padding } from '../property-types';
2
+ import { TooltipBorder } from './tooltip-border.interface';
3
+
4
+ /**
5
+ * @hidden
6
+ */
7
+ export interface AxisCrosshairTooltip {
8
+
9
+ /**
10
+ * The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
11
+ */
12
+ background?: string;
13
+
14
+ /**
15
+ * The border options of the tooltip.
16
+ */
17
+ border?: TooltipBorder;
18
+
19
+ /**
20
+ * The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
21
+ */
22
+ color?: string;
23
+
24
+ /**
25
+ * The font of the tooltip.
26
+ */
27
+ font?: string;
28
+
29
+ /**
30
+ * The format for displaying the tooltip.
31
+ * Contains one placeholder (`"{0}"`) which represents the value.
32
+ *
33
+ * {% platform_content angular %}
34
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
35
+ * {% endplatform_content %}
36
+ */
37
+ format?: string;
38
+
39
+ /**
40
+ * The padding of the crosshair tooltip. A numeric value sets all paddings.
41
+ */
42
+ padding?: Padding | number;
43
+
44
+ /**
45
+ * If set to `true`, the Chart displays the axis crosshair tooltip.
46
+ * By default, the axis crosshair tooltip is not visible.
47
+ */
48
+ visible?: boolean;
49
+ }
@@ -0,0 +1,43 @@
1
+ import { DashType } from '../../property-types';
2
+ import { AxisDefaultsCrosshairTooltip } from './crosshair.tooltip.interface';
3
+ /**
4
+ * Specifies the configuration options of the axis crosshair.
5
+ * {% platform_content angular %}
6
+ * See the [Default Axis Configuration example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#default-axis-configuration).
7
+ * {% endplatform_content %}
8
+ */
9
+ export interface AxisDefaultsCrosshair {
10
+
11
+ /**
12
+ * Specifies the color of the crosshair. Accepts a valid CSS color string, including `hex` and `rgb`.
13
+ */
14
+ color?: string;
15
+
16
+ /**
17
+ * Specifies the dash type of the crosshair.
18
+ */
19
+ dashType?: DashType;
20
+
21
+ /**
22
+ * Specifies the opacity of the crosshair. By default, the crosshair is opaque.
23
+ */
24
+ opacity?: number;
25
+
26
+ /**
27
+ * Determines whether the Chart displays the axis crosshair.
28
+ * By default, the axis crosshair is not visible.
29
+ */
30
+ visible?: boolean;
31
+
32
+ /**
33
+ * Specifies the width of the crosshair in pixels.
34
+ */
35
+ width?: number;
36
+
37
+ /**
38
+ * Specifies the options of the crosshair tooltip.
39
+ * The crosshair tooltip is displayed when the `axisDefaults.crosshair.tooltip.visible`
40
+ * option is set to `true`.
41
+ */
42
+ tooltip?: AxisDefaultsCrosshairTooltip;
43
+ }
@@ -0,0 +1,6 @@
1
+ import { AxisCrosshairTooltip } from '../axis-crosshair-tooltip.interface';
2
+
3
+ /**
4
+ * Specifies the configuration options of the axis crosshair tooltip.
5
+ */
6
+ export interface AxisDefaultsCrosshairTooltip extends AxisCrosshairTooltip {}
@@ -0,0 +1,69 @@
1
+ import { drawing } from '@progress/kendo-drawing';
2
+ import { AxisLabelContentArgs, AxisLabelVisualArgs, LabelRotation, Margin, Padding } from '../../property-types';
3
+
4
+ /**
5
+ * Specifies the configuration options for the axis label.
6
+ * {% platform_content angular %}
7
+ * See the [Default Axis Configuration example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#default-axis-configuration).
8
+ * {% endplatform_content %}
9
+ */
10
+ export interface AxisDefaultsLabels {
11
+
12
+ /**
13
+ * Specifies the function which returns the label content.
14
+ * Use line feed characters (`"\n"`) to split the text into multiple lines.
15
+ */
16
+ content?: (e: AxisLabelContentArgs) => string;
17
+
18
+ /**
19
+ * Specifies the font style of the labels.
20
+ */
21
+ font?: string;
22
+
23
+ /**
24
+ * Specifies the format for displaying the labels. Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting). Contains one placeholder (`"{0}"`) which represents the category value.
25
+ */
26
+ format?: string;
27
+
28
+ /**
29
+ * Specifies the margin of the labels. A numeric value sets all margins.
30
+ */
31
+ margin?: Margin | number;
32
+
33
+ /**
34
+ * Determines whether the Chart mirrors the axis labels and ticks.
35
+ * When enabled, labels that are normally on the left side of the axis render on the right.
36
+ */
37
+ mirror?: boolean;
38
+
39
+ /**
40
+ * Specifies the padding of the labels. A numeric value sets all paddings.
41
+ */
42
+ padding?: Padding | number;
43
+
44
+ /**
45
+ * Specifies the rotation angle of the labels. By default, the labels are not rotated.
46
+ * For horizontal axes, set to `"auto"` to rotate labels only when the slot size is insufficient for the entire labels.
47
+ */
48
+ rotation?: LabelRotation | number | 'auto';
49
+
50
+ /**
51
+ * Specifies the number of labels to skip. By default, no labels are skipped.
52
+ */
53
+ skip?: number;
54
+
55
+ /**
56
+ * Specifies the label-rendering step&mdash;renders every n<sup>th</sup> label. By default, every label is rendered.
57
+ */
58
+ step?: number;
59
+
60
+ /**
61
+ * Determines whether the Chart displays the axis labels. By default, the axis labels are visible.
62
+ */
63
+ visible?: boolean;
64
+
65
+ /**
66
+ * Specifies a function for creating a custom visual for the labels.
67
+ */
68
+ visual?: (e: AxisLabelVisualArgs) => drawing.Element;
69
+ }
@@ -0,0 +1,63 @@
1
+ import { drawing } from '@progress/kendo-drawing';
2
+ import { AxisTitlePosition, Border, Margin, Padding, TitleVisualArgs } from '../../property-types';
3
+
4
+ /**
5
+ * Specifies the configuration options for the axis title.
6
+ */
7
+ export interface AxisDefaultsTitle {
8
+
9
+ /**
10
+ * Specifies the background color of the title. Accepts a valid CSS color string, including hex and rgb.
11
+ */
12
+ background?: string;
13
+
14
+ /**
15
+ * Specifies the border of the title.
16
+ */
17
+ border?: Border;
18
+
19
+ /**
20
+ * Specifies the text color of the title. Accepts a valid CSS color string, including hex and rgb.
21
+ */
22
+ color?: string;
23
+
24
+ /**
25
+ * Specifies the font style of the title.
26
+ */
27
+ font?: string;
28
+
29
+ /**
30
+ * Specifies the margin of the title. A numeric value sets all margins.
31
+ */
32
+ margin?: Margin | number;
33
+
34
+ /**
35
+ * Specifies the padding of the title. A numeric value sets all paddings.
36
+ */
37
+ padding?: Padding | number;
38
+
39
+ /**
40
+ * Specifies the position of the title.
41
+ */
42
+ position?: AxisTitlePosition;
43
+
44
+ /**
45
+ * Specifies the rotation angle of the title. By default, the title is not rotated.
46
+ */
47
+ rotation?: number;
48
+
49
+ /**
50
+ * Specifies the text of the title. Use line feed characters (`"\n"`) to split the text into multiple lines.
51
+ */
52
+ text?: string;
53
+
54
+ /**
55
+ * Determines whether the Chart displays the axis title. By default, the axis title is visible.
56
+ */
57
+ visible?: boolean;
58
+
59
+ /**
60
+ * Specifies a function for creating a custom visual for the title.
61
+ */
62
+ visual?: (e: TitleVisualArgs) => drawing.Element;
63
+ }