@progress/kendo-charts 2.12.3-develop.4 → 2.13.0-develop.2
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.
- package/dist/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/chart/plotarea/categorical-plotarea.js +9 -6
- package/dist/es2015/chart/plotarea/categorical-plotarea.js +9 -6
- package/dist/npm/api-types/axis-range.interface.d.ts +14 -0
- package/dist/npm/api-types/chart-axis.interface.d.ts +50 -0
- package/dist/npm/api-types/chart-pane.interface.d.ts +16 -0
- package/dist/npm/api-types/chart-plotarea.interface.d.ts +16 -0
- package/dist/npm/api-types/event-axis-options.interface.d.ts +9 -0
- package/dist/npm/api-types/event-series-options.interface.d.ts +19 -0
- package/dist/npm/api-types/series-point.interface.d.ts +46 -0
- package/dist/npm/api-types.d.ts +7 -0
- package/dist/npm/argument-types/axis-label-content-args.interface.d.ts +41 -0
- package/dist/npm/argument-types/axis-label-visual-args.interface.d.ts +52 -0
- package/dist/npm/argument-types/axis-note-content-args.interface.d.ts +19 -0
- package/dist/npm/argument-types/axis-note-visual-args.interface.d.ts +32 -0
- package/dist/npm/argument-types/error-bars-value-args.interface.d.ts +29 -0
- package/dist/npm/argument-types/error-bars-visual-args.interface.d.ts +37 -0
- package/dist/npm/argument-types/highlight-toggle-args.interface.d.ts +41 -0
- package/dist/npm/argument-types/highlight-visual-args.interface.d.ts +63 -0
- package/dist/npm/argument-types/legend-item-visual-args.interface.d.ts +43 -0
- package/dist/npm/argument-types/legend-labels-content-args.interface.d.ts +31 -0
- package/dist/npm/argument-types/markers-visual-args.interface.d.ts +47 -0
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.d.ts +32 -0
- package/dist/npm/argument-types/series-labels-content-args.interface.d.ts +54 -0
- package/dist/npm/argument-types/series-labels-visual-args.interface.d.ts +77 -0
- package/dist/npm/argument-types/series-note-content-args.interface.d.ts +29 -0
- package/dist/npm/argument-types/series-note-visual-args.interface.d.ts +52 -0
- package/dist/npm/argument-types/series-visual-args.interface.d.ts +95 -0
- package/dist/npm/argument-types/title-visual-args.interface.d.ts +32 -0
- package/dist/npm/chart-options.d.ts +226 -0
- package/dist/npm/chart.d.ts +4 -3
- package/dist/npm/field-types/auto-base-unit-steps.interface.d.ts +62 -0
- package/dist/npm/field-types/axis-labels-position.d.ts +62 -0
- package/dist/npm/field-types/axis-line.interface.d.ts +41 -0
- package/dist/npm/field-types/axis-ticks.interface.d.ts +45 -0
- package/dist/npm/field-types/axis-title-position.d.ts +62 -0
- package/dist/npm/field-types/base-unit.d.ts +82 -0
- package/dist/npm/field-types/border.interface.d.ts +19 -4
- package/dist/npm/field-types/bullet-target-line.interface.d.ts +9 -0
- package/dist/npm/field-types/bullet-target.interface.d.ts +23 -0
- package/dist/npm/field-types/category-base-unit.d.ts +113 -0
- package/dist/npm/field-types/dash-type.d.ts +87 -5
- package/dist/npm/field-types/date-formats.interface.d.ts +47 -0
- package/dist/npm/field-types/drag-action.interface.d.ts +17 -0
- package/dist/npm/field-types/error-bar-line.interface.d.ts +16 -0
- package/dist/npm/field-types/grid-lines.interface.d.ts +47 -0
- package/dist/npm/field-types/highlight-line.interface.d.ts +27 -0
- package/dist/npm/field-types/label-connectors.interface.d.ts +19 -0
- package/dist/npm/field-types/label-rotation.interface.d.ts +24 -0
- package/dist/npm/field-types/legend-labels.interface.d.ts +37 -0
- package/dist/npm/field-types/line-style.d.ts +90 -0
- package/dist/npm/field-types/lock-axis.d.ts +19 -0
- package/dist/npm/field-types/margin.interface.d.ts +15 -5
- package/dist/npm/field-types/marker-type.d.ts +94 -0
- package/dist/npm/field-types/modifier-key.d.ts +30 -0
- package/dist/npm/field-types/mousewheel-select.interface.d.ts +17 -0
- package/dist/npm/field-types/mousewheel-zoom.interface.d.ts +21 -0
- package/dist/npm/field-types/negative-bubble-values.interface.d.ts +15 -0
- package/dist/npm/field-types/note-label-position.d.ts +107 -0
- package/dist/npm/field-types/note-line.interface.d.ts +26 -0
- package/dist/npm/field-types/note-position.d.ts +104 -0
- package/dist/npm/field-types/overlay.interface.d.ts +15 -0
- package/dist/npm/field-types/padding.interface.d.ts +11 -1
- package/dist/npm/field-types/plot-band-label.interface.d.ts +100 -0
- package/dist/npm/field-types/plot-band.interface.d.ts +53 -0
- package/dist/npm/field-types/series-labels-alignment.d.ts +16 -0
- package/dist/npm/field-types/series-labels-position.d.ts +28 -0
- package/dist/npm/field-types/series-line.interface.d.ts +32 -0
- package/dist/npm/field-types/series-mean.interface.d.ts +26 -0
- package/dist/npm/field-types/series-median.interface.d.ts +26 -0
- package/dist/npm/field-types/series-pattern.interface.d.ts +77 -67
- package/dist/npm/field-types/series-stack.interface.d.ts +19 -0
- package/dist/npm/field-types/series-type.d.ts +244 -0
- package/dist/npm/field-types/series-whiskers.interface.d.ts +26 -0
- package/dist/npm/field-types/trendline-forecast.interface.d.ts +14 -0
- package/dist/npm/field-types/week-start-day.enum.d.ts +49 -0
- package/dist/npm/field-types.d.ts +46 -6
- package/dist/npm/main.d.ts +4 -0
- package/dist/npm/main.js +11 -6
- package/dist/npm/option-types/axis-crosshair-tooltip.interface.d.ts +49 -0
- package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +43 -0
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +69 -0
- package/dist/npm/option-types/axis-defaults/title.interface.d.ts +63 -0
- package/dist/npm/option-types/axis-defaults.interface.d.ts +101 -0
- package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +40 -0
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +115 -0
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/category-axis-item/notes.interface.d.ts +40 -0
- package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +55 -0
- package/dist/npm/option-types/category-axis-item/range-labels.interface.d.ts +28 -0
- package/dist/npm/option-types/category-axis-item/select.interface.d.ts +35 -0
- package/dist/npm/option-types/category-axis-item/title.interface.d.ts +65 -0
- package/dist/npm/option-types/category-axis-item.interface.d.ts +195 -0
- package/dist/npm/option-types/chart-area.interface.d.ts +36 -0
- package/dist/npm/option-types/legend/inactive-items.interface.d.ts +12 -0
- package/dist/npm/option-types/legend/item.interface.d.ts +124 -0
- package/dist/npm/option-types/legend/legend-title.interface.d.ts +67 -0
- package/dist/npm/option-types/legend/markers.interface.d.ts +34 -0
- package/dist/npm/option-types/legend.interface.d.ts +120 -0
- package/dist/npm/option-types/navigator/hint-content-args.interface.d.ts +15 -0
- package/dist/npm/option-types/navigator/hint.interface.d.ts +27 -0
- package/dist/npm/option-types/navigator/select.interface.d.ts +22 -0
- package/dist/npm/option-types/navigator.interface.d.ts +56 -0
- package/dist/npm/option-types/pane/title.interface.d.ts +65 -0
- package/dist/npm/option-types/pane-defaults/title.interface.d.ts +51 -0
- package/dist/npm/option-types/pane-defaults.interface.d.ts +53 -0
- package/dist/npm/option-types/pane.interface.d.ts +53 -0
- package/dist/npm/option-types/plot-area.interface.d.ts +33 -0
- package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +54 -0
- package/dist/npm/option-types/series-defaults/labels.interface.d.ts +78 -0
- package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +57 -0
- package/dist/npm/option-types/series-defaults/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/series-defaults/notes.interface.d.ts +31 -0
- package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +58 -0
- package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +54 -0
- package/dist/npm/option-types/series-defaults.interface.d.ts +218 -0
- package/dist/npm/option-types/series-item/error-bars.interface.d.ts +60 -0
- package/dist/npm/option-types/series-item/extremes.interface.d.ts +32 -0
- package/dist/npm/option-types/series-item/highlight.interface.d.ts +64 -0
- package/dist/npm/option-types/series-item/labels.from.interface.d.ts +73 -0
- package/dist/npm/option-types/series-item/labels.interface.d.ts +104 -0
- package/dist/npm/option-types/series-item/labels.to.interface.d.ts +74 -0
- package/dist/npm/option-types/series-item/markers-highlight.interface.d.ts +22 -0
- package/dist/npm/option-types/series-item/markers.interface.d.ts +59 -0
- package/dist/npm/option-types/series-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/series-item/notes.interface.d.ts +35 -0
- package/dist/npm/option-types/series-item/notes.label.interface.d.ts +59 -0
- package/dist/npm/option-types/series-item/outliers.interface.d.ts +32 -0
- package/dist/npm/option-types/series-item/tooltip.interface.d.ts +59 -0
- package/dist/npm/option-types/series-item/trendline.interface.d.ts +31 -0
- package/dist/npm/option-types/series-item.interface.d.ts +645 -0
- package/dist/npm/option-types/subtitle.interface.d.ts +74 -0
- package/dist/npm/option-types/title.interface.d.ts +75 -0
- package/dist/npm/option-types/tooltip-border.interface.d.ts +12 -0
- package/dist/npm/option-types/tooltip.interface.d.ts +65 -0
- package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +36 -0
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +101 -0
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/value-axis-item/notes.interface.d.ts +39 -0
- package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +60 -0
- package/dist/npm/option-types/value-axis-item/title.interface.d.ts +64 -0
- package/dist/npm/option-types/value-axis-item.interface.d.ts +148 -0
- package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +33 -0
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +109 -0
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/x-axis-item/notes.interface.d.ts +40 -0
- package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +58 -0
- package/dist/npm/option-types/x-axis-item/title.interface.d.ts +65 -0
- package/dist/npm/option-types/x-axis-item.interface.d.ts +165 -0
- package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +36 -0
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +107 -0
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/y-axis-item/notes.interface.d.ts +40 -0
- package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +58 -0
- package/dist/npm/option-types/y-axis-item/title.interface.d.ts +65 -0
- package/dist/npm/option-types/y-axis-item.interface.d.ts +154 -0
- package/dist/npm/option-types/zoomable.interface.d.ts +16 -0
- package/dist/npm/property-types.d.ts +151 -0
- package/dist/npm/sankey.d.ts +5 -3
- package/dist/systemjs/kendo-charts.js +1 -1
- 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
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
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';
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -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
|
|