@progress/kendo-angular-charts 13.0.0-develop.4 → 13.0.0-develop.5

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 (37) hide show
  1. package/chart/series-drilldown-template.directive.d.ts +25 -0
  2. package/chart/series-item.component.d.ts +4 -1
  3. package/chart/series.component.d.ts +3 -2
  4. package/chart-breadcrumb.component.d.ts +43 -0
  5. package/chart.component.d.ts +25 -1
  6. package/chart.directives.d.ts +2 -1
  7. package/chart.module.d.ts +69 -66
  8. package/common/collection-item.component.d.ts +1 -0
  9. package/common/collection.service.d.ts +1 -0
  10. package/common/events.d.ts +1 -0
  11. package/esm2020/chart/series-drilldown-template.directive.mjs +34 -0
  12. package/esm2020/chart/series-item.component.mjs +7 -1
  13. package/esm2020/chart/series.component.mjs +7 -6
  14. package/esm2020/chart-breadcrumb.component.mjs +82 -0
  15. package/esm2020/chart.component.mjs +68 -2
  16. package/esm2020/chart.directives.mjs +5 -1
  17. package/esm2020/chart.module.mjs +68 -65
  18. package/esm2020/common/collection-item.component.mjs +1 -0
  19. package/esm2020/common/collection.component.mjs +2 -2
  20. package/esm2020/common/events.mjs +1 -0
  21. package/esm2020/events/drilldown-event.mjs +21 -0
  22. package/esm2020/index.mjs +1 -0
  23. package/esm2020/package-metadata.mjs +2 -2
  24. package/esm2020/sparkline.component.mjs +22 -2
  25. package/esm2020/stock-chart/navigator/series-item.component.mjs +5 -3
  26. package/esm2020/stock-chart/navigator/series.component.mjs +6 -5
  27. package/esm2020/stock-chart.component.mjs +21 -1
  28. package/events/drilldown-event.d.ts +31 -0
  29. package/fesm2015/progress-kendo-angular-charts.mjs +353 -113
  30. package/fesm2020/progress-kendo-angular-charts.mjs +351 -113
  31. package/index.d.ts +1 -0
  32. package/option-types/series-item.interface.d.ts +4 -0
  33. package/package.json +9 -7
  34. package/sparkline.component.d.ts +15 -2
  35. package/stock-chart/navigator/series-item.component.d.ts +5 -1
  36. package/stock-chart/navigator/series.component.d.ts +3 -2
  37. package/stock-chart.component.d.ts +14 -1
@@ -0,0 +1,25 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { TemplateRef } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Represents the series [template](link:site.data.urls.angular['templatesyntax'])
9
+ * within the `<kendo-chart-series-item>` component for creating nested
10
+ * [Drilldown](slug:drilldown_chart_charts) series.
11
+ *
12
+ * When the user clicks on a data point with drilldown data,
13
+ * the Chart will create a new series based on this template.
14
+ *
15
+ * The template context is passes through the following fields:
16
+ * - `drilldownValue`&mdash;The drilldown field value.
17
+ * - `point`&mdash;The series point to drill down to.
18
+ * - `series`&mdash;The series to drill down to.
19
+ */
20
+ export declare class SeriesDrilldownTemplateDirective {
21
+ templateRef: TemplateRef<any>;
22
+ constructor(templateRef: TemplateRef<any>);
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDrilldownTemplateDirective, [{ optional: true; }]>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SeriesDrilldownTemplateDirective, "[kendoChartDrilldownSeries]", never, {}, {}, never>;
25
+ }
@@ -9,6 +9,7 @@ import { CollectionService } from '../common/collection.service';
9
9
  import { ConfigurationService } from '../common/configuration.service';
10
10
  import { Border, BulletTarget, DashType, LabelConnectors, LineStyle, Margin, NegativeBubbleValues, Overlay, Series, SeriesErrorBars, SeriesExtremes, SeriesHighlight, SeriesLabels, SeriesLine, SeriesMarkers, SeriesMean, SeriesMedian, SeriesNotes, SeriesOutliers, SeriesStack, SeriesTooltip, SeriesType, SeriesVisualArgs, SeriesWhiskers } from '../common/property-types';
11
11
  import { SeriesTooltipComponent } from './series-item/tooltip.component';
12
+ import { SeriesDrilldownTemplateDirective } from './series-drilldown-template.directive';
12
13
  import * as i0 from "@angular/core";
13
14
  /**
14
15
  * The configuration component for a series item.
@@ -31,6 +32,7 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
31
32
  data: any[];
32
33
  downColor: string;
33
34
  downColorField: string;
35
+ drilldownField: string;
34
36
  dynamicHeight: boolean;
35
37
  dynamicSlope: boolean;
36
38
  errorHighField: string;
@@ -100,6 +102,7 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
100
102
  outliers: SeriesOutliers;
101
103
  tooltip: SeriesTooltip;
102
104
  seriesTooltip: SeriesTooltipComponent;
105
+ drilldownTemplate: SeriesDrilldownTemplateDirective;
103
106
  constructor(configurationService: ConfigurationService, collectionService: CollectionService);
104
107
  /**
105
108
  * Toggles the series visibility and updates the parent Chart
@@ -115,5 +118,5 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
115
118
  togglePointVisibility(pointIndex: number): void;
116
119
  get seriesTooltipTemplateRef(): TemplateRef<any>;
117
120
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesItemComponent, never>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<SeriesItemComponent, "kendo-chart-series-item", never, { "aggregate": "aggregate"; "autoFit": "autoFit"; "axis": "axis"; "border": "border"; "categoryAxis": "categoryAxis"; "categoryField": "categoryField"; "closeField": "closeField"; "color": "color"; "colorField": "colorField"; "connectors": "connectors"; "currentField": "currentField"; "dashType": "dashType"; "data": "data"; "downColor": "downColor"; "downColorField": "downColorField"; "dynamicHeight": "dynamicHeight"; "dynamicSlope": "dynamicSlope"; "errorHighField": "errorHighField"; "errorLowField": "errorLowField"; "explodeField": "explodeField"; "field": "field"; "fromField": "fromField"; "gap": "gap"; "highField": "highField"; "holeSize": "holeSize"; "line": "line"; "lowField": "lowField"; "lowerField": "lowerField"; "margin": "margin"; "maxSize": "maxSize"; "mean": "mean"; "meanField": "meanField"; "median": "median"; "medianField": "medianField"; "minSize": "minSize"; "missingValues": "missingValues"; "name": "name"; "neckRatio": "neckRatio"; "negativeColor": "negativeColor"; "negativeValues": "negativeValues"; "noteTextField": "noteTextField"; "opacity": "opacity"; "openField": "openField"; "outliersField": "outliersField"; "overlay": "overlay"; "padding": "padding"; "q1Field": "q1Field"; "q3Field": "q3Field"; "segmentSpacing": "segmentSpacing"; "size": "size"; "sizeField": "sizeField"; "spacing": "spacing"; "stack": "stack"; "startAngle": "startAngle"; "style": "style"; "summaryField": "summaryField"; "target": "target"; "toField": "toField"; "type": "type"; "upperField": "upperField"; "visible": "visible"; "visibleInLegend": "visibleInLegend"; "visibleInLegendField": "visibleInLegendField"; "visual": "visual"; "width": "width"; "whiskers": "whiskers"; "xAxis": "xAxis"; "xErrorHighField": "xErrorHighField"; "xErrorLowField": "xErrorLowField"; "xField": "xField"; "yAxis": "yAxis"; "yErrorHighField": "yErrorHighField"; "yErrorLowField": "yErrorLowField"; "yField": "yField"; "zIndex": "zIndex"; "errorBars": "errorBars"; "extremes": "extremes"; "highlight": "highlight"; "labels": "labels"; "markers": "markers"; "notes": "notes"; "outliers": "outliers"; "tooltip": "tooltip"; }, {}, ["seriesTooltip"], never>;
121
+ static ɵcmp: i0.ɵɵComponentDeclaration<SeriesItemComponent, "kendo-chart-series-item", never, { "aggregate": "aggregate"; "autoFit": "autoFit"; "axis": "axis"; "border": "border"; "categoryAxis": "categoryAxis"; "categoryField": "categoryField"; "closeField": "closeField"; "color": "color"; "colorField": "colorField"; "connectors": "connectors"; "currentField": "currentField"; "dashType": "dashType"; "data": "data"; "downColor": "downColor"; "downColorField": "downColorField"; "drilldownField": "drilldownField"; "dynamicHeight": "dynamicHeight"; "dynamicSlope": "dynamicSlope"; "errorHighField": "errorHighField"; "errorLowField": "errorLowField"; "explodeField": "explodeField"; "field": "field"; "fromField": "fromField"; "gap": "gap"; "highField": "highField"; "holeSize": "holeSize"; "line": "line"; "lowField": "lowField"; "lowerField": "lowerField"; "margin": "margin"; "maxSize": "maxSize"; "mean": "mean"; "meanField": "meanField"; "median": "median"; "medianField": "medianField"; "minSize": "minSize"; "missingValues": "missingValues"; "name": "name"; "neckRatio": "neckRatio"; "negativeColor": "negativeColor"; "negativeValues": "negativeValues"; "noteTextField": "noteTextField"; "opacity": "opacity"; "openField": "openField"; "outliersField": "outliersField"; "overlay": "overlay"; "padding": "padding"; "q1Field": "q1Field"; "q3Field": "q3Field"; "segmentSpacing": "segmentSpacing"; "size": "size"; "sizeField": "sizeField"; "spacing": "spacing"; "stack": "stack"; "startAngle": "startAngle"; "style": "style"; "summaryField": "summaryField"; "target": "target"; "toField": "toField"; "type": "type"; "upperField": "upperField"; "visible": "visible"; "visibleInLegend": "visibleInLegend"; "visibleInLegendField": "visibleInLegendField"; "visual": "visual"; "width": "width"; "whiskers": "whiskers"; "xAxis": "xAxis"; "xErrorHighField": "xErrorHighField"; "xErrorLowField": "xErrorLowField"; "xField": "xField"; "yAxis": "yAxis"; "yErrorHighField": "yErrorHighField"; "yErrorLowField": "yErrorLowField"; "yField": "yField"; "zIndex": "zIndex"; "errorBars": "errorBars"; "extremes": "extremes"; "highlight": "highlight"; "labels": "labels"; "markers": "markers"; "notes": "notes"; "outliers": "outliers"; "tooltip": "tooltip"; }, {}, ["seriesTooltip", "drilldownTemplate"], never>;
119
122
  }
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { AfterContentChecked } from '@angular/core';
5
+ import { AfterContentChecked, ViewContainerRef } from '@angular/core';
6
6
  import { QueryList } from '@angular/core';
7
7
  import { CollectionComponent } from '../common/collection.component';
8
8
  import { CollectionService, Item } from '../common/collection.service';
@@ -36,8 +36,9 @@ export declare class SeriesComponent extends CollectionComponent implements Afte
36
36
  protected configurationService: ConfigurationService;
37
37
  protected collectionService: CollectionService;
38
38
  protected tooltipTemplateService: TooltipTemplateService;
39
+ viewContainer: ViewContainerRef;
39
40
  children: QueryList<Item>;
40
- constructor(configurationService: ConfigurationService, collectionService: CollectionService, tooltipTemplateService: TooltipTemplateService);
41
+ constructor(configurationService: ConfigurationService, collectionService: CollectionService, tooltipTemplateService: TooltipTemplateService, viewContainer: ViewContainerRef);
41
42
  ngAfterContentChecked(): void;
42
43
  protected readTooltipTemplates(): void;
43
44
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesComponent, never>;
@@ -0,0 +1,43 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
6
+ import { BreadCrumbComponent, BreadCrumbItem } from '@progress/kendo-angular-navigation';
7
+ import { ChartComponent } from './index';
8
+ import * as i0 from "@angular/core";
9
+ /**
10
+ * Navigation Breadcrumb component for Drilldown Charts.
11
+ *
12
+ * Use this component to implement navigation for [Drilldown Charts](slug:drilldown_chart_charts).
13
+ * Use the `chart` input to link the Breadcrumb to the Chart instance.
14
+ *
15
+ */
16
+ export declare class ChartBreadcrumbComponent implements OnInit, OnChanges, OnDestroy {
17
+ /**
18
+ * The Chart instance to link to.
19
+ */
20
+ chart: ChartComponent;
21
+ /**
22
+ * The definition of the breadcrumb root item.
23
+ *
24
+ * The default value is `{ icon: 'home', svgIcon: homeIcon, title: 'Home' }`.
25
+ * (homeIcon is imported from '@progress/kendo-svg-icons')
26
+ */
27
+ rootItem: BreadCrumbItem;
28
+ /**
29
+ * @hidden
30
+ */
31
+ items: BreadCrumbItem[];
32
+ breadcrumb: BreadCrumbComponent;
33
+ private subscription;
34
+ ngOnInit(): void;
35
+ ngOnChanges(changes: SimpleChanges): void;
36
+ ngOnDestroy(): void;
37
+ /**
38
+ * @hidden
39
+ */
40
+ onItemClick(target: BreadCrumbItem): void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartBreadcrumbComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChartBreadcrumbComponent, "kendo-chart-breadcrumb", ["kendoChartBreadcrumb"], { "chart": "chart"; "rootItem": "rootItem"; }, {}, never, never>;
43
+ }
@@ -52,6 +52,9 @@ import { SeriesOverEvent } from './events/series-over-event';
52
52
  import { ZoomEndEvent } from './events/zoom-end-event';
53
53
  import { ZoomEvent } from './events/zoom-event';
54
54
  import { ZoomStartEvent } from './events/zoom-start-event';
55
+ import { SeriesComponent } from './chart/series.component';
56
+ import { EmbeddedViewRef } from '@angular/core/core';
57
+ import { DrilldownEvent } from './events/drilldown-event';
55
58
  import * as i0 from "@angular/core";
56
59
  /**
57
60
  * The root Chart component.
@@ -216,6 +219,10 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
216
219
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
217
220
  */
218
221
  seriesClick: EventEmitter<SeriesClickEvent>;
222
+ /**
223
+ * Fires when the user when the user wants to drill down on a specific point.
224
+ */
225
+ drilldown: EventEmitter<DrilldownEvent>;
219
226
  /**
220
227
  * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
221
228
  */
@@ -245,6 +252,10 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
245
252
  * Can be prevented.
246
253
  */
247
254
  legendItemClick: EventEmitter<LegendItemClickEvent>;
255
+ /**
256
+ * Fires when the drill-down level has changed.
257
+ */
258
+ drilldownLevelChange: EventEmitter<number>;
248
259
  /**
249
260
  * Limits the automatic resizing of the Chart. Sets the maximum number of times per second
250
261
  * that the component redraws its content when the size of its container changes.
@@ -277,10 +288,21 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
277
288
  * The settings for the tooltip popup.
278
289
  */
279
290
  popupSettings: PopupSettings;
291
+ /**
292
+ * Gets or sets the current drill-down level for [Drilldown Charts](slug:drilldown_chart_charts).
293
+ *
294
+ * To return to a previous level, set the value to a number less than the current level.
295
+ * To return to the root chart, set the value to 0.
296
+ *
297
+ * Setting the value to a number greater than the current level will have no effect.
298
+ */
299
+ get drilldownLevel(): number;
300
+ set drilldownLevel(level: number);
280
301
  /**
281
302
  * The Drawing `Surface` of the Chart.
282
303
  */
283
304
  surface: Surface;
305
+ seriesCollectionComponent: QueryList<SeriesComponent>;
284
306
  seriesComponents: QueryList<SeriesItemComponent>;
285
307
  donutCenterTemplate: DonutCenterTemplateDirective;
286
308
  tooltipInstance: TooltipPopupComponent;
@@ -302,9 +324,11 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
302
324
  protected subscriptions: Subscription;
303
325
  protected rtl: boolean;
304
326
  protected hostClasses: string[];
327
+ protected drilldownState: EmbeddedViewRef<any>[];
305
328
  constructor(configurationService: ConfigurationService, themeService: ThemeService, element: ElementRef, intl: IntlService, localizationService: LocalizationService, ngZone: NgZone, instanceEventService: InstanceEventService, changeDetector: ChangeDetectorRef, renderer: Renderer2);
306
329
  ngOnInit(): void;
307
330
  ngAfterViewInit(): void;
331
+ private onDrilldown;
308
332
  ngAfterViewChecked(): void;
309
333
  ngOnChanges(changes: {
310
334
  [propertyName: string]: SimpleChange;
@@ -448,5 +472,5 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
448
472
  protected setDirection(): void;
449
473
  protected get isRTL(): boolean;
450
474
  static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
451
- static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "kendo-chart", ["kendoChart"], { "pannable": "pannable"; "renderAs": "renderAs"; "seriesColors": "seriesColors"; "subtitle": "subtitle"; "title": "title"; "transitions": "transitions"; "zoomable": "zoomable"; "axisDefaults": "axisDefaults"; "categoryAxis": "categoryAxis"; "chartArea": "chartArea"; "legend": "legend"; "panes": "panes"; "paneDefaults": "paneDefaults"; "plotArea": "plotArea"; "series": "series"; "seriesDefaults": "seriesDefaults"; "tooltip": "tooltip"; "valueAxis": "valueAxis"; "xAxis": "xAxis"; "yAxis": "yAxis"; "resizeRateLimit": "resizeRateLimit"; "popupSettings": "popupSettings"; }, { "axisLabelClick": "axisLabelClick"; "drag": "drag"; "dragEnd": "dragEnd"; "dragStart": "dragStart"; "legendItemHover": "legendItemHover"; "legendItemLeave": "legendItemLeave"; "noteClick": "noteClick"; "noteHover": "noteHover"; "noteLeave": "noteLeave"; "paneRender": "paneRender"; "plotAreaClick": "plotAreaClick"; "plotAreaHover": "plotAreaHover"; "plotAreaLeave": "plotAreaLeave"; "render": "render"; "select": "select"; "selectEnd": "selectEnd"; "selectStart": "selectStart"; "seriesClick": "seriesClick"; "seriesHover": "seriesHover"; "seriesOver": "seriesOver"; "seriesLeave": "seriesLeave"; "zoom": "zoom"; "zoomEnd": "zoomEnd"; "zoomStart": "zoomStart"; "legendItemClick": "legendItemClick"; }, ["donutCenterTemplate", "seriesComponents"], never>;
475
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "kendo-chart", ["kendoChart"], { "pannable": "pannable"; "renderAs": "renderAs"; "seriesColors": "seriesColors"; "subtitle": "subtitle"; "title": "title"; "transitions": "transitions"; "zoomable": "zoomable"; "axisDefaults": "axisDefaults"; "categoryAxis": "categoryAxis"; "chartArea": "chartArea"; "legend": "legend"; "panes": "panes"; "paneDefaults": "paneDefaults"; "plotArea": "plotArea"; "series": "series"; "seriesDefaults": "seriesDefaults"; "tooltip": "tooltip"; "valueAxis": "valueAxis"; "xAxis": "xAxis"; "yAxis": "yAxis"; "resizeRateLimit": "resizeRateLimit"; "popupSettings": "popupSettings"; "drilldownLevel": "drilldownLevel"; }, { "axisLabelClick": "axisLabelClick"; "drag": "drag"; "dragEnd": "dragEnd"; "dragStart": "dragStart"; "legendItemHover": "legendItemHover"; "legendItemLeave": "legendItemLeave"; "noteClick": "noteClick"; "noteHover": "noteHover"; "noteLeave": "noteLeave"; "paneRender": "paneRender"; "plotAreaClick": "plotAreaClick"; "plotAreaHover": "plotAreaHover"; "plotAreaLeave": "plotAreaLeave"; "render": "render"; "select": "select"; "selectEnd": "selectEnd"; "selectStart": "selectStart"; "seriesClick": "seriesClick"; "drilldown": "drilldown"; "seriesHover": "seriesHover"; "seriesOver": "seriesOver"; "seriesLeave": "seriesLeave"; "zoom": "zoom"; "zoomEnd": "zoomEnd"; "zoomStart": "zoomStart"; "legendItemClick": "legendItemClick"; "drilldownLevelChange": "drilldownLevelChange"; }, ["donutCenterTemplate", "seriesCollectionComponent", "seriesComponents"], never>;
452
476
  }
@@ -82,7 +82,8 @@ import { YAxisNotesIconComponent } from './chart/y-axis-item/notes.icon.componen
82
82
  import { YAxisNotesLabelComponent } from './chart/y-axis-item/notes.label.component';
83
83
  import { YAxisTitleComponent } from './chart/y-axis-item/title.component';
84
84
  import { ZoomableComponent } from './chart/zoomable.component';
85
- export { ChartComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent };
85
+ import { ChartBreadcrumbComponent } from './chart-breadcrumb.component';
86
+ export { ChartComponent, 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, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent };
86
87
  /**
87
88
  * @hidden
88
89
  */
package/chart.module.d.ts CHANGED
@@ -27,71 +27,74 @@ import * as i21 from "./chart/category-axis-item/notes.label.component";
27
27
  import * as i22 from "./chart/category-axis-item/select.component";
28
28
  import * as i23 from "./chart/category-axis-item/title.component";
29
29
  import * as i24 from "./chart/chart-area.component";
30
- import * as i25 from "./chart/legend.component";
31
- import * as i26 from "./chart/legend/inactive-items.component";
32
- import * as i27 from "./chart/legend/item.component";
33
- import * as i28 from "./chart/pane.component";
34
- import * as i29 from "./chart/pane-defaults.component";
35
- import * as i30 from "./chart/pane-defaults/title.component";
36
- import * as i31 from "./chart/panes.component";
37
- import * as i32 from "./chart/pane/title.component";
38
- import * as i33 from "./chart/plot-area.component";
39
- import * as i34 from "./chart/series.component";
40
- import * as i35 from "./chart/series-defaults.component";
41
- import * as i36 from "./chart/series-defaults/labels.component";
42
- import * as i37 from "./chart/series-defaults/labels.from.component";
43
- import * as i38 from "./chart/series-defaults/labels.to.component";
44
- import * as i39 from "./chart/series-defaults/notes.component";
45
- import * as i40 from "./chart/series-defaults/notes.icon.component";
46
- import * as i41 from "./chart/series-defaults/notes.label.component";
47
- import * as i42 from "./chart/series-defaults/tooltip.component";
48
- import * as i43 from "./chart/series-item/error-bars.component";
49
- import * as i44 from "./chart/series-item/extremes.component";
50
- import * as i45 from "./chart/series-item/highlight.component";
51
- import * as i46 from "./chart/series-item.component";
52
- import * as i47 from "./chart/series-item/labels.component";
53
- import * as i48 from "./chart/series-item/labels.from.component";
54
- import * as i49 from "./chart/series-item/labels.to.component";
55
- import * as i50 from "./chart/series-item/markers.component";
56
- import * as i51 from "./chart/series-item/notes.component";
57
- import * as i52 from "./chart/series-item/notes.icon.component";
58
- import * as i53 from "./chart/series-item/notes.label.component";
59
- import * as i54 from "./chart/series-item/outliers.component";
60
- import * as i55 from "./chart/series-item/tooltip.component";
61
- import * as i56 from "./chart/subtitle.component";
62
- import * as i57 from "./chart/title.component";
63
- import * as i58 from "./chart/tooltip.component";
64
- import * as i59 from "./chart/value-axis.component";
65
- import * as i60 from "./chart/value-axis-item/crosshair.component";
66
- import * as i61 from "./chart/value-axis-item/crosshair.tooltip.component";
67
- import * as i62 from "./chart/value-axis-item.component";
68
- import * as i63 from "./chart/value-axis-item/labels.component";
69
- import * as i64 from "./chart/value-axis-item/notes.component";
70
- import * as i65 from "./chart/value-axis-item/notes.icon.component";
71
- import * as i66 from "./chart/value-axis-item/notes.label.component";
72
- import * as i67 from "./chart/value-axis-item/title.component";
73
- import * as i68 from "./chart/x-axis.component";
74
- import * as i69 from "./chart/x-axis-item/crosshair.component";
75
- import * as i70 from "./chart/x-axis-item/crosshair.tooltip.component";
76
- import * as i71 from "./chart/x-axis-item.component";
77
- import * as i72 from "./chart/x-axis-item/labels.component";
78
- import * as i73 from "./chart/x-axis-item/notes.component";
79
- import * as i74 from "./chart/x-axis-item/notes.icon.component";
80
- import * as i75 from "./chart/x-axis-item/notes.label.component";
81
- import * as i76 from "./chart/x-axis-item/title.component";
82
- import * as i77 from "./chart/y-axis.component";
83
- import * as i78 from "./chart/y-axis-item/crosshair.component";
84
- import * as i79 from "./chart/y-axis-item/crosshair.tooltip.component";
85
- import * as i80 from "./chart/y-axis-item.component";
86
- import * as i81 from "./chart/y-axis-item/labels.component";
87
- import * as i82 from "./chart/y-axis-item/notes.component";
88
- import * as i83 from "./chart/y-axis-item/notes.icon.component";
89
- import * as i84 from "./chart/y-axis-item/notes.label.component";
90
- import * as i85 from "./chart/y-axis-item/title.component";
91
- import * as i86 from "./chart/zoomable.component";
92
- import * as i87 from "@angular/common";
93
- import * as i88 from "@progress/kendo-angular-popup";
94
- import * as i89 from "@progress/kendo-angular-common";
30
+ import * as i25 from "./chart-breadcrumb.component";
31
+ import * as i26 from "./chart/legend.component";
32
+ import * as i27 from "./chart/legend/inactive-items.component";
33
+ import * as i28 from "./chart/legend/item.component";
34
+ import * as i29 from "./chart/pane.component";
35
+ import * as i30 from "./chart/pane-defaults.component";
36
+ import * as i31 from "./chart/pane-defaults/title.component";
37
+ import * as i32 from "./chart/panes.component";
38
+ import * as i33 from "./chart/pane/title.component";
39
+ import * as i34 from "./chart/plot-area.component";
40
+ import * as i35 from "./chart/series.component";
41
+ import * as i36 from "./chart/series-defaults.component";
42
+ import * as i37 from "./chart/series-defaults/labels.component";
43
+ import * as i38 from "./chart/series-defaults/labels.from.component";
44
+ import * as i39 from "./chart/series-defaults/labels.to.component";
45
+ import * as i40 from "./chart/series-defaults/notes.component";
46
+ import * as i41 from "./chart/series-defaults/notes.icon.component";
47
+ import * as i42 from "./chart/series-defaults/notes.label.component";
48
+ import * as i43 from "./chart/series-defaults/tooltip.component";
49
+ import * as i44 from "./chart/series-drilldown-template.directive";
50
+ import * as i45 from "./chart/series-item/error-bars.component";
51
+ import * as i46 from "./chart/series-item/extremes.component";
52
+ import * as i47 from "./chart/series-item/highlight.component";
53
+ import * as i48 from "./chart/series-item.component";
54
+ import * as i49 from "./chart/series-item/labels.component";
55
+ import * as i50 from "./chart/series-item/labels.from.component";
56
+ import * as i51 from "./chart/series-item/labels.to.component";
57
+ import * as i52 from "./chart/series-item/markers.component";
58
+ import * as i53 from "./chart/series-item/notes.component";
59
+ import * as i54 from "./chart/series-item/notes.icon.component";
60
+ import * as i55 from "./chart/series-item/notes.label.component";
61
+ import * as i56 from "./chart/series-item/outliers.component";
62
+ import * as i57 from "./chart/series-item/tooltip.component";
63
+ import * as i58 from "./chart/subtitle.component";
64
+ import * as i59 from "./chart/title.component";
65
+ import * as i60 from "./chart/tooltip.component";
66
+ import * as i61 from "./chart/value-axis.component";
67
+ import * as i62 from "./chart/value-axis-item/crosshair.component";
68
+ import * as i63 from "./chart/value-axis-item/crosshair.tooltip.component";
69
+ import * as i64 from "./chart/value-axis-item.component";
70
+ import * as i65 from "./chart/value-axis-item/labels.component";
71
+ import * as i66 from "./chart/value-axis-item/notes.component";
72
+ import * as i67 from "./chart/value-axis-item/notes.icon.component";
73
+ import * as i68 from "./chart/value-axis-item/notes.label.component";
74
+ import * as i69 from "./chart/value-axis-item/title.component";
75
+ import * as i70 from "./chart/x-axis.component";
76
+ import * as i71 from "./chart/x-axis-item/crosshair.component";
77
+ import * as i72 from "./chart/x-axis-item/crosshair.tooltip.component";
78
+ import * as i73 from "./chart/x-axis-item.component";
79
+ import * as i74 from "./chart/x-axis-item/labels.component";
80
+ import * as i75 from "./chart/x-axis-item/notes.component";
81
+ import * as i76 from "./chart/x-axis-item/notes.icon.component";
82
+ import * as i77 from "./chart/x-axis-item/notes.label.component";
83
+ import * as i78 from "./chart/x-axis-item/title.component";
84
+ import * as i79 from "./chart/y-axis.component";
85
+ import * as i80 from "./chart/y-axis-item/crosshair.component";
86
+ import * as i81 from "./chart/y-axis-item/crosshair.tooltip.component";
87
+ import * as i82 from "./chart/y-axis-item.component";
88
+ import * as i83 from "./chart/y-axis-item/labels.component";
89
+ import * as i84 from "./chart/y-axis-item/notes.component";
90
+ import * as i85 from "./chart/y-axis-item/notes.icon.component";
91
+ import * as i86 from "./chart/y-axis-item/notes.label.component";
92
+ import * as i87 from "./chart/y-axis-item/title.component";
93
+ import * as i88 from "./chart/zoomable.component";
94
+ import * as i89 from "@angular/common";
95
+ import * as i90 from "@progress/kendo-angular-navigation";
96
+ import * as i91 from "@progress/kendo-angular-popup";
97
+ import * as i92 from "@progress/kendo-angular-common";
95
98
  /**
96
99
  * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
97
100
  *
@@ -116,6 +119,6 @@ import * as i89 from "@progress/kendo-angular-common";
116
119
  */
117
120
  export declare class ChartModule {
118
121
  static ɵfac: i0.ɵɵFactoryDeclaration<ChartModule, never>;
119
- static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.LegendComponent, typeof i26.LegendInactiveItemsComponent, typeof i27.LegendItemComponent, typeof i28.PaneComponent, typeof i29.PaneDefaultsComponent, typeof i30.PaneDefaultsTitleComponent, typeof i31.PanesComponent, typeof i32.PanesTitleComponent, typeof i33.PlotAreaComponent, typeof i34.SeriesComponent, typeof i35.SeriesDefaultsComponent, typeof i36.SeriesDefaultsLabelsComponent, typeof i37.SeriesDefaultsLabelsFromComponent, typeof i38.SeriesDefaultsLabelsToComponent, typeof i39.SeriesDefaultsNotesComponent, typeof i40.SeriesDefaultsNotesIconComponent, typeof i41.SeriesDefaultsNotesLabelComponent, typeof i42.SeriesDefaultsTooltipComponent, typeof i43.SeriesErrorBarsComponent, typeof i44.SeriesExtremesComponent, typeof i45.SeriesHighlightComponent, typeof i46.SeriesItemComponent, typeof i47.SeriesLabelsComponent, typeof i48.SeriesLabelsFromComponent, typeof i49.SeriesLabelsToComponent, typeof i50.SeriesMarkersComponent, typeof i51.SeriesNotesComponent, typeof i52.SeriesNotesIconComponent, typeof i53.SeriesNotesLabelComponent, typeof i54.SeriesOutliersComponent, typeof i55.SeriesTooltipComponent, typeof i56.SubtitleComponent, typeof i57.TitleComponent, typeof i58.TooltipComponent, typeof i59.ValueAxisComponent, typeof i60.ValueAxisCrosshairComponent, typeof i61.ValueAxisCrosshairTooltipComponent, typeof i62.ValueAxisItemComponent, typeof i63.ValueAxisLabelsComponent, typeof i64.ValueAxisNotesComponent, typeof i65.ValueAxisNotesIconComponent, typeof i66.ValueAxisNotesLabelComponent, typeof i67.ValueAxisTitleComponent, typeof i68.XAxisComponent, typeof i69.XAxisCrosshairComponent, typeof i70.XAxisCrosshairTooltipComponent, typeof i71.XAxisItemComponent, typeof i72.XAxisLabelsComponent, typeof i73.XAxisNotesComponent, typeof i74.XAxisNotesIconComponent, typeof i75.XAxisNotesLabelComponent, typeof i76.XAxisTitleComponent, typeof i77.YAxisComponent, typeof i78.YAxisCrosshairComponent, typeof i79.YAxisCrosshairTooltipComponent, typeof i80.YAxisItemComponent, typeof i81.YAxisLabelsComponent, typeof i82.YAxisNotesComponent, typeof i83.YAxisNotesIconComponent, typeof i84.YAxisNotesLabelComponent, typeof i85.YAxisTitleComponent, typeof i86.ZoomableComponent], [typeof i87.CommonModule, typeof i88.PopupModule, typeof i89.ResizeSensorModule], [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.LegendComponent, typeof i26.LegendInactiveItemsComponent, typeof i27.LegendItemComponent, typeof i28.PaneComponent, typeof i29.PaneDefaultsComponent, typeof i30.PaneDefaultsTitleComponent, typeof i31.PanesComponent, typeof i32.PanesTitleComponent, typeof i33.PlotAreaComponent, typeof i34.SeriesComponent, typeof i35.SeriesDefaultsComponent, typeof i36.SeriesDefaultsLabelsComponent, typeof i37.SeriesDefaultsLabelsFromComponent, typeof i38.SeriesDefaultsLabelsToComponent, typeof i39.SeriesDefaultsNotesComponent, typeof i40.SeriesDefaultsNotesIconComponent, typeof i41.SeriesDefaultsNotesLabelComponent, typeof i42.SeriesDefaultsTooltipComponent, typeof i43.SeriesErrorBarsComponent, typeof i44.SeriesExtremesComponent, typeof i45.SeriesHighlightComponent, typeof i46.SeriesItemComponent, typeof i47.SeriesLabelsComponent, typeof i48.SeriesLabelsFromComponent, typeof i49.SeriesLabelsToComponent, typeof i50.SeriesMarkersComponent, typeof i51.SeriesNotesComponent, typeof i52.SeriesNotesIconComponent, typeof i53.SeriesNotesLabelComponent, typeof i54.SeriesOutliersComponent, typeof i55.SeriesTooltipComponent, typeof i56.SubtitleComponent, typeof i57.TitleComponent, typeof i58.TooltipComponent, typeof i59.ValueAxisComponent, typeof i60.ValueAxisCrosshairComponent, typeof i61.ValueAxisCrosshairTooltipComponent, typeof i62.ValueAxisItemComponent, typeof i63.ValueAxisLabelsComponent, typeof i64.ValueAxisNotesComponent, typeof i65.ValueAxisNotesIconComponent, typeof i66.ValueAxisNotesLabelComponent, typeof i67.ValueAxisTitleComponent, typeof i68.XAxisComponent, typeof i69.XAxisCrosshairComponent, typeof i70.XAxisCrosshairTooltipComponent, typeof i71.XAxisItemComponent, typeof i72.XAxisLabelsComponent, typeof i73.XAxisNotesComponent, typeof i74.XAxisNotesIconComponent, typeof i75.XAxisNotesLabelComponent, typeof i76.XAxisTitleComponent, typeof i77.YAxisComponent, typeof i78.YAxisCrosshairComponent, typeof i79.YAxisCrosshairTooltipComponent, typeof i80.YAxisItemComponent, typeof i81.YAxisLabelsComponent, typeof i82.YAxisNotesComponent, typeof i83.YAxisNotesIconComponent, typeof i84.YAxisNotesLabelComponent, typeof i85.YAxisTitleComponent, typeof i86.ZoomableComponent]>;
122
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.ChartBreadcrumbComponent, typeof i26.LegendComponent, typeof i27.LegendInactiveItemsComponent, typeof i28.LegendItemComponent, typeof i29.PaneComponent, typeof i30.PaneDefaultsComponent, typeof i31.PaneDefaultsTitleComponent, typeof i32.PanesComponent, typeof i33.PanesTitleComponent, typeof i34.PlotAreaComponent, typeof i35.SeriesComponent, typeof i36.SeriesDefaultsComponent, typeof i37.SeriesDefaultsLabelsComponent, typeof i38.SeriesDefaultsLabelsFromComponent, typeof i39.SeriesDefaultsLabelsToComponent, typeof i40.SeriesDefaultsNotesComponent, typeof i41.SeriesDefaultsNotesIconComponent, typeof i42.SeriesDefaultsNotesLabelComponent, typeof i43.SeriesDefaultsTooltipComponent, typeof i44.SeriesDrilldownTemplateDirective, typeof i45.SeriesErrorBarsComponent, typeof i46.SeriesExtremesComponent, typeof i47.SeriesHighlightComponent, typeof i48.SeriesItemComponent, typeof i49.SeriesLabelsComponent, typeof i50.SeriesLabelsFromComponent, typeof i51.SeriesLabelsToComponent, typeof i52.SeriesMarkersComponent, typeof i53.SeriesNotesComponent, typeof i54.SeriesNotesIconComponent, typeof i55.SeriesNotesLabelComponent, typeof i56.SeriesOutliersComponent, typeof i57.SeriesTooltipComponent, typeof i58.SubtitleComponent, typeof i59.TitleComponent, typeof i60.TooltipComponent, typeof i61.ValueAxisComponent, typeof i62.ValueAxisCrosshairComponent, typeof i63.ValueAxisCrosshairTooltipComponent, typeof i64.ValueAxisItemComponent, typeof i65.ValueAxisLabelsComponent, typeof i66.ValueAxisNotesComponent, typeof i67.ValueAxisNotesIconComponent, typeof i68.ValueAxisNotesLabelComponent, typeof i69.ValueAxisTitleComponent, typeof i70.XAxisComponent, typeof i71.XAxisCrosshairComponent, typeof i72.XAxisCrosshairTooltipComponent, typeof i73.XAxisItemComponent, typeof i74.XAxisLabelsComponent, typeof i75.XAxisNotesComponent, typeof i76.XAxisNotesIconComponent, typeof i77.XAxisNotesLabelComponent, typeof i78.XAxisTitleComponent, typeof i79.YAxisComponent, typeof i80.YAxisCrosshairComponent, typeof i81.YAxisCrosshairTooltipComponent, typeof i82.YAxisItemComponent, typeof i83.YAxisLabelsComponent, typeof i84.YAxisNotesComponent, typeof i85.YAxisNotesIconComponent, typeof i86.YAxisNotesLabelComponent, typeof i87.YAxisTitleComponent, typeof i88.ZoomableComponent], [typeof i89.CommonModule, typeof i90.BreadCrumbModule, typeof i91.PopupModule, typeof i92.ResizeSensorModule], [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.ChartBreadcrumbComponent, typeof i26.LegendComponent, typeof i27.LegendInactiveItemsComponent, typeof i28.LegendItemComponent, typeof i29.PaneComponent, typeof i30.PaneDefaultsComponent, typeof i31.PaneDefaultsTitleComponent, typeof i32.PanesComponent, typeof i33.PanesTitleComponent, typeof i34.PlotAreaComponent, typeof i35.SeriesComponent, typeof i36.SeriesDefaultsComponent, typeof i37.SeriesDefaultsLabelsComponent, typeof i38.SeriesDefaultsLabelsFromComponent, typeof i39.SeriesDefaultsLabelsToComponent, typeof i40.SeriesDefaultsNotesComponent, typeof i41.SeriesDefaultsNotesIconComponent, typeof i42.SeriesDefaultsNotesLabelComponent, typeof i43.SeriesDefaultsTooltipComponent, typeof i44.SeriesDrilldownTemplateDirective, typeof i45.SeriesErrorBarsComponent, typeof i46.SeriesExtremesComponent, typeof i47.SeriesHighlightComponent, typeof i48.SeriesItemComponent, typeof i49.SeriesLabelsComponent, typeof i50.SeriesLabelsFromComponent, typeof i51.SeriesLabelsToComponent, typeof i52.SeriesMarkersComponent, typeof i53.SeriesNotesComponent, typeof i54.SeriesNotesIconComponent, typeof i55.SeriesNotesLabelComponent, typeof i56.SeriesOutliersComponent, typeof i57.SeriesTooltipComponent, typeof i58.SubtitleComponent, typeof i59.TitleComponent, typeof i60.TooltipComponent, typeof i61.ValueAxisComponent, typeof i62.ValueAxisCrosshairComponent, typeof i63.ValueAxisCrosshairTooltipComponent, typeof i64.ValueAxisItemComponent, typeof i65.ValueAxisLabelsComponent, typeof i66.ValueAxisNotesComponent, typeof i67.ValueAxisNotesIconComponent, typeof i68.ValueAxisNotesLabelComponent, typeof i69.ValueAxisTitleComponent, typeof i70.XAxisComponent, typeof i71.XAxisCrosshairComponent, typeof i72.XAxisCrosshairTooltipComponent, typeof i73.XAxisItemComponent, typeof i74.XAxisLabelsComponent, typeof i75.XAxisNotesComponent, typeof i76.XAxisNotesIconComponent, typeof i77.XAxisNotesLabelComponent, typeof i78.XAxisTitleComponent, typeof i79.YAxisComponent, typeof i80.YAxisCrosshairComponent, typeof i81.YAxisCrosshairTooltipComponent, typeof i82.YAxisItemComponent, typeof i83.YAxisLabelsComponent, typeof i84.YAxisNotesComponent, typeof i85.YAxisNotesIconComponent, typeof i86.YAxisNotesLabelComponent, typeof i87.YAxisTitleComponent, typeof i88.ZoomableComponent]>;
120
123
  static ɵinj: i0.ɵɵInjectorDeclaration<ChartModule>;
121
124
  }
@@ -15,6 +15,7 @@ export declare abstract class CollectionItemComponent implements Item, OnChanges
15
15
  protected collectionService: CollectionService;
16
16
  protected subscription: Subscription;
17
17
  options: any;
18
+ hidden: boolean;
18
19
  constructor(configurationService: ConfigurationService, collectionService: CollectionService);
19
20
  ngOnChanges(changes: {
20
21
  [propertyName: string]: SimpleChange;
@@ -9,6 +9,7 @@ import * as i0 from "@angular/core";
9
9
  */
10
10
  export interface Item {
11
11
  options: any;
12
+ hidden: boolean;
12
13
  }
13
14
  /**
14
15
  * @hidden
@@ -6,6 +6,7 @@ export { AxisLabelClickEvent } from '../events/axis-label-click-event';
6
6
  export { DragEndEvent } from '../events/drag-end-event';
7
7
  export { DragEvent } from '../events/drag-event';
8
8
  export { DragStartEvent } from '../events/drag-start-event';
9
+ export { DrilldownEvent } from '../events/drilldown-event';
9
10
  export { LegendItemClickEvent } from '../events/legend-item-click-event';
10
11
  export { LegendItemHoverEvent } from '../events/legend-item-hover-event';
11
12
  export { LegendItemLeaveEvent } from '../events/legend-item-leave-event';
@@ -0,0 +1,34 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, TemplateRef, Optional } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Represents the series [template](link:site.data.urls.angular['templatesyntax'])
9
+ * within the `<kendo-chart-series-item>` component for creating nested
10
+ * [Drilldown](slug:drilldown_chart_charts) series.
11
+ *
12
+ * When the user clicks on a data point with drilldown data,
13
+ * the Chart will create a new series based on this template.
14
+ *
15
+ * The template context is passes through the following fields:
16
+ * - `drilldownValue`&mdash;The drilldown field value.
17
+ * - `point`&mdash;The series point to drill down to.
18
+ * - `series`&mdash;The series to drill down to.
19
+ */
20
+ export class SeriesDrilldownTemplateDirective {
21
+ constructor(templateRef) {
22
+ this.templateRef = templateRef;
23
+ }
24
+ }
25
+ SeriesDrilldownTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesDrilldownTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
26
+ SeriesDrilldownTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: SeriesDrilldownTemplateDirective, selector: "[kendoChartDrilldownSeries]", ngImport: i0 });
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesDrilldownTemplateDirective, decorators: [{
28
+ type: Directive,
29
+ args: [{
30
+ selector: '[kendoChartDrilldownSeries]'
31
+ }]
32
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
33
+ type: Optional
34
+ }] }]; } });
@@ -7,6 +7,7 @@ import { CollectionItemComponent } from '../common/collection-item.component';
7
7
  import { CollectionService } from '../common/collection.service';
8
8
  import { ConfigurationService } from '../common/configuration.service';
9
9
  import { SeriesTooltipComponent } from './series-item/tooltip.component';
10
+ import { SeriesDrilldownTemplateDirective } from './series-drilldown-template.directive';
10
11
  import * as i0 from "@angular/core";
11
12
  import * as i1 from "../common/configuration.service";
12
13
  import * as i2 from "../common/collection.service";
@@ -46,7 +47,7 @@ export class SeriesItemComponent extends CollectionItemComponent {
46
47
  }
47
48
  }
48
49
  SeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }], target: i0.ɵɵFactoryTarget.Component });
49
- SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
50
+ SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
50
51
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, decorators: [{
51
52
  type: Component,
52
53
  args: [{
@@ -85,6 +86,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
85
86
  type: Input
86
87
  }], downColorField: [{
87
88
  type: Input
89
+ }], drilldownField: [{
90
+ type: Input
88
91
  }], dynamicHeight: [{
89
92
  type: Input
90
93
  }], dynamicSlope: [{
@@ -224,4 +227,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
224
227
  }], seriesTooltip: [{
225
228
  type: ContentChild,
226
229
  args: [SeriesTooltipComponent, { static: false }]
230
+ }], drilldownTemplate: [{
231
+ type: ContentChild,
232
+ args: [SeriesDrilldownTemplateDirective, { static: false }]
227
233
  }] } });
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectionStrategy, Component } from '@angular/core';
5
+ import { ChangeDetectionStrategy, Component, ViewContainerRef } from '@angular/core';
6
6
  import { ContentChildren, QueryList } from '@angular/core';
7
7
  import { CollectionComponent } from '../common/collection.component';
8
8
  import { CollectionService } from '../common/collection.service';
@@ -37,11 +37,12 @@ import * as i3 from "../common/tooltip-template.service";
37
37
  * ```
38
38
  */
39
39
  export class SeriesComponent extends CollectionComponent {
40
- constructor(configurationService, collectionService, tooltipTemplateService) {
40
+ constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {
41
41
  super('series', configurationService, collectionService);
42
42
  this.configurationService = configurationService;
43
43
  this.collectionService = collectionService;
44
44
  this.tooltipTemplateService = tooltipTemplateService;
45
+ this.viewContainer = viewContainer;
45
46
  }
46
47
  ngAfterContentChecked() {
47
48
  this.readTooltipTemplates();
@@ -51,8 +52,8 @@ export class SeriesComponent extends CollectionComponent {
51
52
  this.tooltipTemplateService.setSeriesTemplates(templates);
52
53
  }
53
54
  }
54
- SeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }, { token: i3.TooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });
55
- SeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesComponent, selector: "kendo-chart-series", providers: [CollectionService], queries: [{ propertyName: "children", predicate: SeriesItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
55
+ SeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }, { token: i3.TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
56
+ SeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesComponent, selector: "kendo-chart-series", providers: [CollectionService], queries: [{ propertyName: "children", predicate: SeriesItemComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
56
57
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, decorators: [{
57
58
  type: Component,
58
59
  args: [{
@@ -61,7 +62,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
61
62
  selector: 'kendo-chart-series',
62
63
  template: ''
63
64
  }]
64
- }], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i2.CollectionService }, { type: i3.TooltipTemplateService }]; }, propDecorators: { children: [{
65
+ }], ctorParameters: function () { return [{ type: i1.ConfigurationService }, { type: i2.CollectionService }, { type: i3.TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{
65
66
  type: ContentChildren,
66
- args: [SeriesItemComponent]
67
+ args: [SeriesItemComponent, { descendants: true }]
67
68
  }] } });