@progress/kendo-angular-charts 16.6.0-develop.11 → 16.6.0-develop.13
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/chart.directives.d.ts +0 -4
- package/charts.module.d.ts +1 -1
- package/common.directives.d.ts +0 -4
- package/directives.d.ts +136 -4
- package/esm2020/chart.directives.mjs +0 -26
- package/esm2020/charts.module.mjs +2 -2
- package/esm2020/common.directives.mjs +0 -74
- package/esm2020/directives.mjs +343 -10
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/sankey.directives.mjs +0 -18
- package/esm2020/sparkline.directives.mjs +0 -6
- package/esm2020/stock-chart.directives.mjs +1 -35
- package/fesm2015/progress-kendo-angular-charts.mjs +2135 -2093
- package/fesm2020/progress-kendo-angular-charts.mjs +2179 -2137
- package/package.json +8 -8
- package/sankey.directives.d.ts +0 -4
- package/sparkline.directives.d.ts +0 -4
- package/stock-chart.directives.d.ts +1 -5
|
@@ -73,77 +73,3 @@ import { SeriesDrilldownTemplateDirective } from './chart/series-drilldown-templ
|
|
|
73
73
|
import { ChartBreadcrumbComponent } from './chart-breadcrumb.component';
|
|
74
74
|
// Re-exports
|
|
75
75
|
export { TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent };
|
|
76
|
-
/**
|
|
77
|
-
* @hidden
|
|
78
|
-
*/
|
|
79
|
-
export const KENDO_CHARTSCOMMON = [
|
|
80
|
-
TooltipPopupComponent,
|
|
81
|
-
SeriesTooltipTemplateDirective,
|
|
82
|
-
SharedTooltipTemplateDirective,
|
|
83
|
-
CrosshairTooltipsContainerComponent,
|
|
84
|
-
CrosshairTooltipComponent,
|
|
85
|
-
AxisDefaultsComponent,
|
|
86
|
-
AxisDefaultsCrosshairComponent,
|
|
87
|
-
AxisDefaultsCrosshairTooltipComponent,
|
|
88
|
-
AxisDefaultsLabelsComponent,
|
|
89
|
-
AxisDefaultsTitleComponent,
|
|
90
|
-
CategoryAxisComponent,
|
|
91
|
-
CategoryAxisCrosshairComponent,
|
|
92
|
-
CategoryAxisCrosshairTooltipComponent,
|
|
93
|
-
CategoryAxisItemComponent,
|
|
94
|
-
CategoryAxisLabelsComponent,
|
|
95
|
-
CategoryAxisRangeLabelsComponent,
|
|
96
|
-
CategoryAxisNotesComponent,
|
|
97
|
-
CategoryAxisNotesIconComponent,
|
|
98
|
-
CategoryAxisNotesLabelComponent,
|
|
99
|
-
CategoryAxisSelectComponent,
|
|
100
|
-
CategoryAxisTitleComponent,
|
|
101
|
-
ChartAreaComponent,
|
|
102
|
-
ChartBreadcrumbComponent,
|
|
103
|
-
LegendComponent,
|
|
104
|
-
LegendInactiveItemsComponent,
|
|
105
|
-
LegendItemComponent,
|
|
106
|
-
PaneComponent,
|
|
107
|
-
PaneDefaultsComponent,
|
|
108
|
-
PaneDefaultsTitleComponent,
|
|
109
|
-
PanesComponent,
|
|
110
|
-
PanesTitleComponent,
|
|
111
|
-
PlotAreaComponent,
|
|
112
|
-
SeriesComponent,
|
|
113
|
-
SeriesDefaultsComponent,
|
|
114
|
-
SeriesDefaultsLabelsComponent,
|
|
115
|
-
SeriesDefaultsLabelsFromComponent,
|
|
116
|
-
SeriesDefaultsLabelsToComponent,
|
|
117
|
-
SeriesDefaultsNotesComponent,
|
|
118
|
-
SeriesDefaultsNotesIconComponent,
|
|
119
|
-
SeriesDefaultsNotesLabelComponent,
|
|
120
|
-
SeriesDefaultsTooltipComponent,
|
|
121
|
-
SeriesDrilldownTemplateDirective,
|
|
122
|
-
SeriesErrorBarsComponent,
|
|
123
|
-
SeriesExtremesComponent,
|
|
124
|
-
SeriesHighlightComponent,
|
|
125
|
-
SeriesItemComponent,
|
|
126
|
-
SeriesLabelsComponent,
|
|
127
|
-
SeriesLabelsFromComponent,
|
|
128
|
-
SeriesLabelsToComponent,
|
|
129
|
-
SeriesMarkersComponent,
|
|
130
|
-
SeriesNotesComponent,
|
|
131
|
-
SeriesNotesIconComponent,
|
|
132
|
-
SeriesNotesLabelComponent,
|
|
133
|
-
SeriesOutliersComponent,
|
|
134
|
-
SeriesTooltipComponent,
|
|
135
|
-
SeriesTrendlineComponent,
|
|
136
|
-
SeriesTrendlineForecastComponent,
|
|
137
|
-
SubtitleComponent,
|
|
138
|
-
TitleComponent,
|
|
139
|
-
TooltipComponent,
|
|
140
|
-
ValueAxisComponent,
|
|
141
|
-
ValueAxisCrosshairComponent,
|
|
142
|
-
ValueAxisCrosshairTooltipComponent,
|
|
143
|
-
ValueAxisItemComponent,
|
|
144
|
-
ValueAxisLabelsComponent,
|
|
145
|
-
ValueAxisNotesComponent,
|
|
146
|
-
ValueAxisNotesIconComponent,
|
|
147
|
-
ValueAxisNotesLabelComponent,
|
|
148
|
-
ValueAxisTitleComponent
|
|
149
|
-
];
|
package/esm2020/directives.mjs
CHANGED
|
@@ -3,26 +3,360 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { SparklineComponent } from './sparkline.component';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
6
|
+
import { ChartComponent } from './chart.component';
|
|
7
|
+
import { DonutCenterTemplateDirective } from './chart/donut-center-template.directive';
|
|
8
|
+
import { XAxisComponent } from './chart/x-axis.component';
|
|
9
|
+
import { XAxisCrosshairComponent } from './chart/x-axis-item/crosshair.component';
|
|
10
|
+
import { XAxisCrosshairTooltipComponent } from './chart/x-axis-item/crosshair.tooltip.component';
|
|
11
|
+
import { XAxisItemComponent } from './chart/x-axis-item.component';
|
|
12
|
+
import { XAxisLabelsComponent } from './chart/x-axis-item/labels.component';
|
|
13
|
+
import { XAxisNotesComponent } from './chart/x-axis-item/notes.component';
|
|
14
|
+
import { XAxisNotesIconComponent } from './chart/x-axis-item/notes.icon.component';
|
|
15
|
+
import { XAxisNotesLabelComponent } from './chart/x-axis-item/notes.label.component';
|
|
16
|
+
import { XAxisTitleComponent } from './chart/x-axis-item/title.component';
|
|
17
|
+
import { YAxisComponent } from './chart/y-axis.component';
|
|
18
|
+
import { YAxisCrosshairComponent } from './chart/y-axis-item/crosshair.component';
|
|
19
|
+
import { YAxisCrosshairTooltipComponent } from './chart/y-axis-item/crosshair.tooltip.component';
|
|
20
|
+
import { YAxisItemComponent } from './chart/y-axis-item.component';
|
|
21
|
+
import { YAxisLabelsComponent } from './chart/y-axis-item/labels.component';
|
|
22
|
+
import { YAxisNotesComponent } from './chart/y-axis-item/notes.component';
|
|
23
|
+
import { YAxisNotesIconComponent } from './chart/y-axis-item/notes.icon.component';
|
|
24
|
+
import { YAxisNotesLabelComponent } from './chart/y-axis-item/notes.label.component';
|
|
25
|
+
import { YAxisTitleComponent } from './chart/y-axis-item/title.component';
|
|
26
|
+
import { ZoomableComponent } from './chart/zoomable.component';
|
|
27
|
+
import { SeriesTooltipTemplateDirective } from './chart/tooltip/series-tooltip-template.directive';
|
|
28
|
+
import { SharedTooltipTemplateDirective } from './chart/tooltip/shared-tooltip-template.directive';
|
|
29
|
+
import { CrosshairTooltipComponent } from './chart/tooltip/crosshair-tooltip.component';
|
|
30
|
+
import { CrosshairTooltipsContainerComponent } from './chart/tooltip/crosshair-tooltips-container.component';
|
|
31
|
+
import { TooltipPopupComponent } from './chart/tooltip/tooltip-popup.component';
|
|
32
|
+
import { AxisDefaultsComponent } from './chart/axis-defaults.component';
|
|
33
|
+
import { AxisDefaultsCrosshairComponent } from './chart/axis-defaults/crosshair.component';
|
|
34
|
+
import { AxisDefaultsCrosshairTooltipComponent } from './chart/axis-defaults/crosshair.tooltip.component';
|
|
35
|
+
import { AxisDefaultsLabelsComponent } from './chart/axis-defaults/labels.component';
|
|
36
|
+
import { AxisDefaultsTitleComponent } from './chart/axis-defaults/title.component';
|
|
37
|
+
import { CategoryAxisComponent } from './chart/category-axis.component';
|
|
38
|
+
import { CategoryAxisCrosshairComponent } from './chart/category-axis-item/crosshair.component';
|
|
39
|
+
import { CategoryAxisCrosshairTooltipComponent } from './chart/category-axis-item/crosshair.tooltip.component';
|
|
40
|
+
import { CategoryAxisItemComponent } from './chart/category-axis-item.component';
|
|
41
|
+
import { CategoryAxisLabelsComponent } from './chart/category-axis-item/labels.component';
|
|
42
|
+
import { CategoryAxisRangeLabelsComponent } from './chart/category-axis-item/range-labels.component';
|
|
43
|
+
import { CategoryAxisNotesComponent } from './chart/category-axis-item/notes.component';
|
|
44
|
+
import { CategoryAxisNotesIconComponent } from './chart/category-axis-item/notes.icon.component';
|
|
45
|
+
import { CategoryAxisNotesLabelComponent } from './chart/category-axis-item/notes.label.component';
|
|
46
|
+
import { CategoryAxisSelectComponent } from './chart/category-axis-item/select.component';
|
|
47
|
+
import { CategoryAxisTitleComponent } from './chart/category-axis-item/title.component';
|
|
48
|
+
import { ChartAreaComponent } from './chart/chart-area.component';
|
|
49
|
+
import { LegendComponent } from './chart/legend.component';
|
|
50
|
+
import { LegendInactiveItemsComponent } from './chart/legend/inactive-items.component';
|
|
51
|
+
import { LegendItemComponent } from './chart/legend/item.component';
|
|
52
|
+
import { PaneComponent } from './chart/pane.component';
|
|
53
|
+
import { PaneDefaultsComponent } from './chart/pane-defaults.component';
|
|
54
|
+
import { PaneDefaultsTitleComponent } from './chart/pane-defaults/title.component';
|
|
55
|
+
import { PanesComponent } from './chart/panes.component';
|
|
56
|
+
import { PanesTitleComponent } from './chart/pane/title.component';
|
|
57
|
+
import { PlotAreaComponent } from './chart/plot-area.component';
|
|
58
|
+
import { SeriesComponent } from './chart/series.component';
|
|
59
|
+
import { SeriesDefaultsComponent } from './chart/series-defaults.component';
|
|
60
|
+
import { SeriesDefaultsLabelsComponent } from './chart/series-defaults/labels.component';
|
|
61
|
+
import { SeriesDefaultsLabelsFromComponent } from './chart/series-defaults/labels.from.component';
|
|
62
|
+
import { SeriesDefaultsLabelsToComponent } from './chart/series-defaults/labels.to.component';
|
|
63
|
+
import { SeriesDefaultsNotesComponent } from './chart/series-defaults/notes.component';
|
|
64
|
+
import { SeriesDefaultsNotesIconComponent } from './chart/series-defaults/notes.icon.component';
|
|
65
|
+
import { SeriesDefaultsNotesLabelComponent } from './chart/series-defaults/notes.label.component';
|
|
66
|
+
import { SeriesDefaultsTooltipComponent } from './chart/series-defaults/tooltip.component';
|
|
67
|
+
import { SeriesErrorBarsComponent } from './chart/series-item/error-bars.component';
|
|
68
|
+
import { SeriesExtremesComponent } from './chart/series-item/extremes.component';
|
|
69
|
+
import { SeriesHighlightComponent } from './chart/series-item/highlight.component';
|
|
70
|
+
import { SeriesItemComponent } from './chart/series-item.component';
|
|
71
|
+
import { SeriesLabelsComponent } from './chart/series-item/labels.component';
|
|
72
|
+
import { SeriesLabelsFromComponent } from './chart/series-item/labels.from.component';
|
|
73
|
+
import { SeriesLabelsToComponent } from './chart/series-item/labels.to.component';
|
|
74
|
+
import { SeriesMarkersComponent } from './chart/series-item/markers.component';
|
|
75
|
+
import { SeriesNotesComponent } from './chart/series-item/notes.component';
|
|
76
|
+
import { SeriesNotesIconComponent } from './chart/series-item/notes.icon.component';
|
|
77
|
+
import { SeriesNotesLabelComponent } from './chart/series-item/notes.label.component';
|
|
78
|
+
import { SeriesOutliersComponent } from './chart/series-item/outliers.component';
|
|
79
|
+
import { SeriesTooltipComponent } from './chart/series-item/tooltip.component';
|
|
80
|
+
import { SeriesTrendlineComponent } from './chart/series-item/trendline.component';
|
|
81
|
+
import { SeriesTrendlineForecastComponent } from './chart/series-item/trendline.forecast.component';
|
|
82
|
+
import { SubtitleComponent } from './chart/subtitle.component';
|
|
83
|
+
import { TitleComponent } from './chart/title.component';
|
|
84
|
+
import { TooltipComponent } from './chart/tooltip.component';
|
|
85
|
+
import { ValueAxisComponent } from './chart/value-axis.component';
|
|
86
|
+
import { ValueAxisCrosshairComponent } from './chart/value-axis-item/crosshair.component';
|
|
87
|
+
import { ValueAxisCrosshairTooltipComponent } from './chart/value-axis-item/crosshair.tooltip.component';
|
|
88
|
+
import { ValueAxisItemComponent } from './chart/value-axis-item.component';
|
|
89
|
+
import { ValueAxisLabelsComponent } from './chart/value-axis-item/labels.component';
|
|
90
|
+
import { ValueAxisNotesComponent } from './chart/value-axis-item/notes.component';
|
|
91
|
+
import { ValueAxisNotesIconComponent } from './chart/value-axis-item/notes.icon.component';
|
|
92
|
+
import { ValueAxisNotesLabelComponent } from './chart/value-axis-item/notes.label.component';
|
|
93
|
+
import { ValueAxisTitleComponent } from './chart/value-axis-item/title.component';
|
|
94
|
+
import { SeriesDrilldownTemplateDirective } from './chart/series-drilldown-template.directive';
|
|
95
|
+
import { ChartBreadcrumbComponent } from './chart-breadcrumb.component';
|
|
96
|
+
import { StockChartComponent } from './stock-chart.component';
|
|
97
|
+
import { NavigatorComponent } from './stock-chart/navigator.component';
|
|
98
|
+
import { NavigatorCategoryAxisComponent } from './stock-chart/navigator/category-axis.component';
|
|
99
|
+
import { NavigatorCategoryAxisCrosshairComponent } from './stock-chart/navigator/category-axis/crosshair.component';
|
|
100
|
+
import { NavigatorCategoryAxisCrosshairTooltipComponent } from './stock-chart/navigator/category-axis/crosshair.tooltip.component';
|
|
101
|
+
import { NavigatorCategoryAxisLabelsComponent } from './stock-chart/navigator/category-axis/labels.component';
|
|
102
|
+
import { NavigatorCategoryAxisNotesComponent } from './stock-chart/navigator/category-axis/notes.component';
|
|
103
|
+
import { NavigatorCategoryAxisNotesIconComponent } from './stock-chart/navigator/category-axis/notes.icon.component';
|
|
104
|
+
import { NavigatorCategoryAxisNotesLabelComponent } from './stock-chart/navigator/category-axis/notes.label.component';
|
|
105
|
+
import { NavigatorCategoryAxisSelectComponent } from './stock-chart/navigator/category-axis/select.component';
|
|
106
|
+
import { NavigatorCategoryAxisTitleComponent } from './stock-chart/navigator/category-axis/title.component';
|
|
107
|
+
import { NavigatorHintComponent } from './stock-chart/navigator/hint.component';
|
|
108
|
+
import { NavigatorPaneComponent } from './stock-chart/navigator/pane.component';
|
|
109
|
+
import { NavigatorPaneTitleComponent } from './stock-chart/navigator/pane/title.component';
|
|
110
|
+
import { NavigatorSelectComponent } from './stock-chart/navigator/select.component';
|
|
111
|
+
import { NavigatorSeriesComponent } from './stock-chart/navigator/series.component';
|
|
112
|
+
import { NavigatorSeriesItemComponent } from './stock-chart/navigator/series-item.component';
|
|
113
|
+
import { NavigatorSeriesErrorBarsComponent } from './stock-chart/navigator/series-item/error-bars.component';
|
|
114
|
+
import { NavigatorSeriesExtremesComponent } from './stock-chart/navigator/series-item/extremes.component';
|
|
115
|
+
import { NavigatorSeriesHighlightComponent } from './stock-chart/navigator/series-item/highlight.component';
|
|
116
|
+
import { NavigatorSeriesLabelsComponent } from './stock-chart/navigator/series-item/labels.component';
|
|
117
|
+
import { NavigatorSeriesLabelsFromComponent } from './stock-chart/navigator/series-item/labels.from.component';
|
|
118
|
+
import { NavigatorSeriesLabelsToComponent } from './stock-chart/navigator/series-item/labels.to.component';
|
|
119
|
+
import { NavigatorSeriesMarkersComponent } from './stock-chart/navigator/series-item/markers.component';
|
|
120
|
+
import { NavigatorSeriesNotesComponent } from './stock-chart/navigator/series-item/notes.component';
|
|
121
|
+
import { NavigatorSeriesNotesIconComponent } from './stock-chart/navigator/series-item/notes.icon.component';
|
|
122
|
+
import { NavigatorSeriesNotesLabelComponent } from './stock-chart/navigator/series-item/notes.label.component';
|
|
123
|
+
import { NavigatorSeriesOutliersComponent } from './stock-chart/navigator/series-item/outliers.component';
|
|
124
|
+
import { NavigatorSeriesTooltipComponent } from './stock-chart/navigator/series-item/tooltip.component';
|
|
125
|
+
import { SankeyComponent } from './sankey.component';
|
|
126
|
+
import { SankeyFlatBindingDirective } from './sankey/data-binding/flat-binding.directive';
|
|
127
|
+
import { SankeyLabelsComponent } from './sankey/labels.component';
|
|
128
|
+
import { SankeyLegendComponent } from './sankey/legend.component';
|
|
129
|
+
import { SankeyLinksComponent } from './sankey/links.component';
|
|
130
|
+
import { SankeyCustomMessagesComponent } from './sankey/localization/custom-messages.component';
|
|
131
|
+
import { LocalizedMessagesDirective } from './sankey/localization/localized-messages.directive';
|
|
132
|
+
import { SankeyNodesComponent } from './sankey/nodes.component';
|
|
133
|
+
import { SankeyTitleComponent } from './sankey/title.component';
|
|
134
|
+
import { SankeyTooltipComponent } from './sankey/tooltip.component';
|
|
135
|
+
import { SankeyLinkTooltipTemplateDirective } from './sankey/tooltip/link-tooltip-template.directive';
|
|
136
|
+
import { SankeyNodeTooltipTemplateDirective } from './sankey/tooltip/node-tooltip-template.directive';
|
|
137
|
+
import { SankeyTooltipPopupComponent } from './sankey/tooltip/tooltip-popup.component';
|
|
10
138
|
/**
|
|
11
139
|
* Utility array that contains all `Chart` related components and directives
|
|
12
140
|
*/
|
|
13
|
-
export const KENDO_CHART = [
|
|
141
|
+
export const KENDO_CHART = [
|
|
142
|
+
ChartComponent,
|
|
143
|
+
DonutCenterTemplateDirective,
|
|
144
|
+
XAxisComponent,
|
|
145
|
+
XAxisCrosshairComponent,
|
|
146
|
+
XAxisCrosshairTooltipComponent,
|
|
147
|
+
XAxisItemComponent,
|
|
148
|
+
XAxisLabelsComponent,
|
|
149
|
+
XAxisNotesComponent,
|
|
150
|
+
XAxisNotesIconComponent,
|
|
151
|
+
XAxisNotesLabelComponent,
|
|
152
|
+
XAxisTitleComponent,
|
|
153
|
+
YAxisComponent,
|
|
154
|
+
YAxisCrosshairComponent,
|
|
155
|
+
YAxisCrosshairTooltipComponent,
|
|
156
|
+
YAxisItemComponent,
|
|
157
|
+
YAxisLabelsComponent,
|
|
158
|
+
YAxisNotesComponent,
|
|
159
|
+
YAxisNotesIconComponent,
|
|
160
|
+
YAxisNotesLabelComponent,
|
|
161
|
+
YAxisTitleComponent,
|
|
162
|
+
ZoomableComponent,
|
|
163
|
+
TooltipPopupComponent,
|
|
164
|
+
SeriesTooltipTemplateDirective,
|
|
165
|
+
SharedTooltipTemplateDirective,
|
|
166
|
+
CrosshairTooltipsContainerComponent,
|
|
167
|
+
CrosshairTooltipComponent,
|
|
168
|
+
AxisDefaultsComponent,
|
|
169
|
+
AxisDefaultsCrosshairComponent,
|
|
170
|
+
AxisDefaultsCrosshairTooltipComponent,
|
|
171
|
+
AxisDefaultsLabelsComponent,
|
|
172
|
+
AxisDefaultsTitleComponent,
|
|
173
|
+
CategoryAxisComponent,
|
|
174
|
+
CategoryAxisCrosshairComponent,
|
|
175
|
+
CategoryAxisCrosshairTooltipComponent,
|
|
176
|
+
CategoryAxisItemComponent,
|
|
177
|
+
CategoryAxisLabelsComponent,
|
|
178
|
+
CategoryAxisRangeLabelsComponent,
|
|
179
|
+
CategoryAxisNotesComponent,
|
|
180
|
+
CategoryAxisNotesIconComponent,
|
|
181
|
+
CategoryAxisNotesLabelComponent,
|
|
182
|
+
CategoryAxisSelectComponent,
|
|
183
|
+
CategoryAxisTitleComponent,
|
|
184
|
+
ChartAreaComponent,
|
|
185
|
+
ChartBreadcrumbComponent,
|
|
186
|
+
LegendComponent,
|
|
187
|
+
LegendInactiveItemsComponent,
|
|
188
|
+
LegendItemComponent,
|
|
189
|
+
PaneComponent,
|
|
190
|
+
PaneDefaultsComponent,
|
|
191
|
+
PaneDefaultsTitleComponent,
|
|
192
|
+
PanesComponent,
|
|
193
|
+
PanesTitleComponent,
|
|
194
|
+
PlotAreaComponent,
|
|
195
|
+
SeriesComponent,
|
|
196
|
+
SeriesDefaultsComponent,
|
|
197
|
+
SeriesDefaultsLabelsComponent,
|
|
198
|
+
SeriesDefaultsLabelsFromComponent,
|
|
199
|
+
SeriesDefaultsLabelsToComponent,
|
|
200
|
+
SeriesDefaultsNotesComponent,
|
|
201
|
+
SeriesDefaultsNotesIconComponent,
|
|
202
|
+
SeriesDefaultsNotesLabelComponent,
|
|
203
|
+
SeriesDefaultsTooltipComponent,
|
|
204
|
+
SeriesDrilldownTemplateDirective,
|
|
205
|
+
SeriesErrorBarsComponent,
|
|
206
|
+
SeriesExtremesComponent,
|
|
207
|
+
SeriesHighlightComponent,
|
|
208
|
+
SeriesItemComponent,
|
|
209
|
+
SeriesLabelsComponent,
|
|
210
|
+
SeriesLabelsFromComponent,
|
|
211
|
+
SeriesLabelsToComponent,
|
|
212
|
+
SeriesMarkersComponent,
|
|
213
|
+
SeriesNotesComponent,
|
|
214
|
+
SeriesNotesIconComponent,
|
|
215
|
+
SeriesNotesLabelComponent,
|
|
216
|
+
SeriesOutliersComponent,
|
|
217
|
+
SeriesTooltipComponent,
|
|
218
|
+
SeriesTrendlineComponent,
|
|
219
|
+
SeriesTrendlineForecastComponent,
|
|
220
|
+
SubtitleComponent,
|
|
221
|
+
TitleComponent,
|
|
222
|
+
TooltipComponent,
|
|
223
|
+
ValueAxisComponent,
|
|
224
|
+
ValueAxisCrosshairComponent,
|
|
225
|
+
ValueAxisCrosshairTooltipComponent,
|
|
226
|
+
ValueAxisItemComponent,
|
|
227
|
+
ValueAxisLabelsComponent,
|
|
228
|
+
ValueAxisNotesComponent,
|
|
229
|
+
ValueAxisNotesIconComponent,
|
|
230
|
+
ValueAxisNotesLabelComponent,
|
|
231
|
+
ValueAxisTitleComponent
|
|
232
|
+
];
|
|
14
233
|
/**
|
|
15
234
|
* Utility array that contains all `SparkLine` related components and directives
|
|
16
235
|
*/
|
|
17
|
-
export const KENDO_SPARKLINE = [
|
|
236
|
+
export const KENDO_SPARKLINE = [
|
|
237
|
+
SparklineComponent
|
|
238
|
+
];
|
|
18
239
|
/**
|
|
19
240
|
* Utility array that contains all `StockChart` related components and directives
|
|
20
241
|
*/
|
|
21
|
-
export const KENDO_STOCKCHART = [
|
|
242
|
+
export const KENDO_STOCKCHART = [
|
|
243
|
+
StockChartComponent,
|
|
244
|
+
NavigatorComponent,
|
|
245
|
+
NavigatorCategoryAxisComponent,
|
|
246
|
+
NavigatorCategoryAxisCrosshairComponent,
|
|
247
|
+
NavigatorCategoryAxisCrosshairTooltipComponent,
|
|
248
|
+
NavigatorCategoryAxisLabelsComponent,
|
|
249
|
+
NavigatorCategoryAxisNotesComponent,
|
|
250
|
+
NavigatorCategoryAxisNotesIconComponent,
|
|
251
|
+
NavigatorCategoryAxisNotesLabelComponent,
|
|
252
|
+
NavigatorCategoryAxisSelectComponent,
|
|
253
|
+
NavigatorCategoryAxisTitleComponent,
|
|
254
|
+
NavigatorHintComponent,
|
|
255
|
+
NavigatorPaneComponent,
|
|
256
|
+
NavigatorPaneTitleComponent,
|
|
257
|
+
NavigatorSelectComponent,
|
|
258
|
+
NavigatorSeriesComponent,
|
|
259
|
+
NavigatorSeriesItemComponent,
|
|
260
|
+
NavigatorSeriesErrorBarsComponent,
|
|
261
|
+
NavigatorSeriesExtremesComponent,
|
|
262
|
+
NavigatorSeriesHighlightComponent,
|
|
263
|
+
NavigatorSeriesLabelsComponent,
|
|
264
|
+
NavigatorSeriesLabelsFromComponent,
|
|
265
|
+
NavigatorSeriesLabelsToComponent,
|
|
266
|
+
NavigatorSeriesMarkersComponent,
|
|
267
|
+
NavigatorSeriesNotesComponent,
|
|
268
|
+
NavigatorSeriesNotesIconComponent,
|
|
269
|
+
NavigatorSeriesNotesLabelComponent,
|
|
270
|
+
NavigatorSeriesOutliersComponent,
|
|
271
|
+
NavigatorSeriesTooltipComponent,
|
|
272
|
+
TooltipPopupComponent,
|
|
273
|
+
SeriesTooltipTemplateDirective,
|
|
274
|
+
SharedTooltipTemplateDirective,
|
|
275
|
+
CrosshairTooltipsContainerComponent,
|
|
276
|
+
CrosshairTooltipComponent,
|
|
277
|
+
AxisDefaultsComponent,
|
|
278
|
+
AxisDefaultsCrosshairComponent,
|
|
279
|
+
AxisDefaultsCrosshairTooltipComponent,
|
|
280
|
+
AxisDefaultsLabelsComponent,
|
|
281
|
+
AxisDefaultsTitleComponent,
|
|
282
|
+
CategoryAxisComponent,
|
|
283
|
+
CategoryAxisCrosshairComponent,
|
|
284
|
+
CategoryAxisCrosshairTooltipComponent,
|
|
285
|
+
CategoryAxisItemComponent,
|
|
286
|
+
CategoryAxisLabelsComponent,
|
|
287
|
+
CategoryAxisRangeLabelsComponent,
|
|
288
|
+
CategoryAxisNotesComponent,
|
|
289
|
+
CategoryAxisNotesIconComponent,
|
|
290
|
+
CategoryAxisNotesLabelComponent,
|
|
291
|
+
CategoryAxisSelectComponent,
|
|
292
|
+
CategoryAxisTitleComponent,
|
|
293
|
+
ChartAreaComponent,
|
|
294
|
+
ChartBreadcrumbComponent,
|
|
295
|
+
LegendComponent,
|
|
296
|
+
LegendInactiveItemsComponent,
|
|
297
|
+
LegendItemComponent,
|
|
298
|
+
PaneComponent,
|
|
299
|
+
PaneDefaultsComponent,
|
|
300
|
+
PaneDefaultsTitleComponent,
|
|
301
|
+
PanesComponent,
|
|
302
|
+
PanesTitleComponent,
|
|
303
|
+
PlotAreaComponent,
|
|
304
|
+
SeriesComponent,
|
|
305
|
+
SeriesDefaultsComponent,
|
|
306
|
+
SeriesDefaultsLabelsComponent,
|
|
307
|
+
SeriesDefaultsLabelsFromComponent,
|
|
308
|
+
SeriesDefaultsLabelsToComponent,
|
|
309
|
+
SeriesDefaultsNotesComponent,
|
|
310
|
+
SeriesDefaultsNotesIconComponent,
|
|
311
|
+
SeriesDefaultsNotesLabelComponent,
|
|
312
|
+
SeriesDefaultsTooltipComponent,
|
|
313
|
+
SeriesDrilldownTemplateDirective,
|
|
314
|
+
SeriesErrorBarsComponent,
|
|
315
|
+
SeriesExtremesComponent,
|
|
316
|
+
SeriesHighlightComponent,
|
|
317
|
+
SeriesItemComponent,
|
|
318
|
+
SeriesLabelsComponent,
|
|
319
|
+
SeriesLabelsFromComponent,
|
|
320
|
+
SeriesLabelsToComponent,
|
|
321
|
+
SeriesMarkersComponent,
|
|
322
|
+
SeriesNotesComponent,
|
|
323
|
+
SeriesNotesIconComponent,
|
|
324
|
+
SeriesNotesLabelComponent,
|
|
325
|
+
SeriesOutliersComponent,
|
|
326
|
+
SeriesTooltipComponent,
|
|
327
|
+
SeriesTrendlineComponent,
|
|
328
|
+
SeriesTrendlineForecastComponent,
|
|
329
|
+
SubtitleComponent,
|
|
330
|
+
TitleComponent,
|
|
331
|
+
TooltipComponent,
|
|
332
|
+
ValueAxisComponent,
|
|
333
|
+
ValueAxisCrosshairComponent,
|
|
334
|
+
ValueAxisCrosshairTooltipComponent,
|
|
335
|
+
ValueAxisItemComponent,
|
|
336
|
+
ValueAxisLabelsComponent,
|
|
337
|
+
ValueAxisNotesComponent,
|
|
338
|
+
ValueAxisNotesIconComponent,
|
|
339
|
+
ValueAxisNotesLabelComponent,
|
|
340
|
+
ValueAxisTitleComponent
|
|
341
|
+
];
|
|
22
342
|
/**
|
|
23
343
|
* Utility array that contains all `Sankey` related components and directives
|
|
24
344
|
*/
|
|
25
|
-
export const KENDO_SANKEY = [
|
|
345
|
+
export const KENDO_SANKEY = [
|
|
346
|
+
SankeyComponent,
|
|
347
|
+
SankeyTooltipPopupComponent,
|
|
348
|
+
SankeyLinkTooltipTemplateDirective,
|
|
349
|
+
SankeyNodeTooltipTemplateDirective,
|
|
350
|
+
SankeyCustomMessagesComponent,
|
|
351
|
+
LocalizedMessagesDirective,
|
|
352
|
+
SankeyTitleComponent,
|
|
353
|
+
SankeyLegendComponent,
|
|
354
|
+
SankeyTooltipComponent,
|
|
355
|
+
SankeyLinksComponent,
|
|
356
|
+
SankeyNodesComponent,
|
|
357
|
+
SankeyLabelsComponent,
|
|
358
|
+
SankeyFlatBindingDirective
|
|
359
|
+
];
|
|
26
360
|
/**
|
|
27
361
|
* Utility array that contains all `@progress/kendo-angular-charts` related components and directives
|
|
28
362
|
*/
|
|
@@ -30,6 +364,5 @@ export const KENDO_CHARTS = [
|
|
|
30
364
|
...KENDO_CHART,
|
|
31
365
|
...KENDO_SPARKLINE,
|
|
32
366
|
...KENDO_STOCKCHART,
|
|
33
|
-
...KENDO_SANKEY
|
|
34
|
-
...KENDO_CHARTSCOMMON
|
|
367
|
+
...KENDO_SANKEY
|
|
35
368
|
];
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-charts',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.6.0-develop.
|
|
12
|
+
publishDate: 1722615120,
|
|
13
|
+
version: '16.6.0-develop.13',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -18,21 +18,3 @@ import { SankeyNodeTooltipTemplateDirective } from './sankey/tooltip/node-toolti
|
|
|
18
18
|
import { SankeyTooltipPopupComponent } from './sankey/tooltip/tooltip-popup.component';
|
|
19
19
|
// Re-exports
|
|
20
20
|
export { SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective, SankeyFlatBindingDataBoundEvent };
|
|
21
|
-
/**
|
|
22
|
-
* @hidden
|
|
23
|
-
*/
|
|
24
|
-
export const SANKEY_DIRECTIVES = [
|
|
25
|
-
SankeyComponent,
|
|
26
|
-
SankeyTooltipPopupComponent,
|
|
27
|
-
SankeyLinkTooltipTemplateDirective,
|
|
28
|
-
SankeyNodeTooltipTemplateDirective,
|
|
29
|
-
SankeyCustomMessagesComponent,
|
|
30
|
-
LocalizedMessagesDirective,
|
|
31
|
-
SankeyTitleComponent,
|
|
32
|
-
SankeyLegendComponent,
|
|
33
|
-
SankeyTooltipComponent,
|
|
34
|
-
SankeyLinksComponent,
|
|
35
|
-
SankeyNodesComponent,
|
|
36
|
-
SankeyLabelsComponent,
|
|
37
|
-
SankeyFlatBindingDirective
|
|
38
|
-
];
|
|
@@ -32,38 +32,4 @@ import { NavigatorSeriesNotesLabelComponent } from './stock-chart/navigator/seri
|
|
|
32
32
|
import { NavigatorSeriesOutliersComponent } from './stock-chart/navigator/series-item/outliers.component';
|
|
33
33
|
import { NavigatorSeriesTooltipComponent } from './stock-chart/navigator/series-item/tooltip.component';
|
|
34
34
|
// Re-exports
|
|
35
|
-
export { StockChartComponent };
|
|
36
|
-
/**
|
|
37
|
-
* @hidden
|
|
38
|
-
*/
|
|
39
|
-
export const STOCK_CHART_DIRECTIVES = [
|
|
40
|
-
StockChartComponent,
|
|
41
|
-
NavigatorComponent,
|
|
42
|
-
NavigatorCategoryAxisComponent,
|
|
43
|
-
NavigatorCategoryAxisCrosshairComponent,
|
|
44
|
-
NavigatorCategoryAxisCrosshairTooltipComponent,
|
|
45
|
-
NavigatorCategoryAxisLabelsComponent,
|
|
46
|
-
NavigatorCategoryAxisNotesComponent,
|
|
47
|
-
NavigatorCategoryAxisNotesIconComponent,
|
|
48
|
-
NavigatorCategoryAxisNotesLabelComponent,
|
|
49
|
-
NavigatorCategoryAxisSelectComponent,
|
|
50
|
-
NavigatorCategoryAxisTitleComponent,
|
|
51
|
-
NavigatorHintComponent,
|
|
52
|
-
NavigatorPaneComponent,
|
|
53
|
-
NavigatorPaneTitleComponent,
|
|
54
|
-
NavigatorSelectComponent,
|
|
55
|
-
NavigatorSeriesComponent,
|
|
56
|
-
NavigatorSeriesItemComponent,
|
|
57
|
-
NavigatorSeriesErrorBarsComponent,
|
|
58
|
-
NavigatorSeriesExtremesComponent,
|
|
59
|
-
NavigatorSeriesHighlightComponent,
|
|
60
|
-
NavigatorSeriesLabelsComponent,
|
|
61
|
-
NavigatorSeriesLabelsFromComponent,
|
|
62
|
-
NavigatorSeriesLabelsToComponent,
|
|
63
|
-
NavigatorSeriesMarkersComponent,
|
|
64
|
-
NavigatorSeriesNotesComponent,
|
|
65
|
-
NavigatorSeriesNotesIconComponent,
|
|
66
|
-
NavigatorSeriesNotesLabelComponent,
|
|
67
|
-
NavigatorSeriesOutliersComponent,
|
|
68
|
-
NavigatorSeriesTooltipComponent
|
|
69
|
-
];
|
|
35
|
+
export { StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent };
|