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

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
@@ -18,6 +18,9 @@ import * as i1 from '@progress/kendo-angular-popup';
18
18
  import { PopupService, POPUP_CONTAINER, PopupModule } from '@progress/kendo-angular-popup';
19
19
  import * as i4$1 from '@angular/common';
20
20
  import { CommonModule } from '@angular/common';
21
+ import * as i1$1 from '@progress/kendo-angular-navigation';
22
+ import { BreadCrumbModule } from '@progress/kendo-angular-navigation';
23
+ import { homeIcon } from '@progress/kendo-svg-icons';
21
24
 
22
25
  const getTouch = (domEvent) => {
23
26
  return {
@@ -368,6 +371,7 @@ class CollectionItemComponent {
368
371
  this.configurationService = configurationService;
369
372
  this.collectionService = collectionService;
370
373
  this.options = {};
374
+ this.hidden = false;
371
375
  this.subscription = configurationService.onFastChange$.subscribe(store => {
372
376
  this.options = store;
373
377
  this.notify();
@@ -500,6 +504,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
500
504
  args: [TemplateRef, { static: false }]
501
505
  }] } });
502
506
 
507
+ /**
508
+ * Represents the series [template](link:site.data.urls.angular['templatesyntax'])
509
+ * within the `<kendo-chart-series-item>` component for creating nested
510
+ * [Drilldown](slug:drilldown_chart_charts) series.
511
+ *
512
+ * When the user clicks on a data point with drilldown data,
513
+ * the Chart will create a new series based on this template.
514
+ *
515
+ * The template context is passes through the following fields:
516
+ * - `drilldownValue`&mdash;The drilldown field value.
517
+ * - `point`&mdash;The series point to drill down to.
518
+ * - `series`&mdash;The series to drill down to.
519
+ */
520
+ class SeriesDrilldownTemplateDirective {
521
+ constructor(templateRef) {
522
+ this.templateRef = templateRef;
523
+ }
524
+ }
525
+ 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 });
526
+ SeriesDrilldownTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: SeriesDrilldownTemplateDirective, selector: "[kendoChartDrilldownSeries]", ngImport: i0 });
527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesDrilldownTemplateDirective, decorators: [{
528
+ type: Directive,
529
+ args: [{
530
+ selector: '[kendoChartDrilldownSeries]'
531
+ }]
532
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
533
+ type: Optional
534
+ }] }]; } });
535
+
503
536
  const toggle = (flag) => flag === undefined ? false : !flag;
504
537
  /**
505
538
  * The configuration component for a series item.
@@ -536,7 +569,7 @@ class SeriesItemComponent extends CollectionItemComponent {
536
569
  }
537
570
  }
538
571
  SeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });
539
- 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 });
572
+ 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 });
540
573
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, decorators: [{
541
574
  type: Component,
542
575
  args: [{
@@ -575,6 +608,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
575
608
  type: Input
576
609
  }], downColorField: [{
577
610
  type: Input
611
+ }], drilldownField: [{
612
+ type: Input
578
613
  }], dynamicHeight: [{
579
614
  type: Input
580
615
  }], dynamicSlope: [{
@@ -714,6 +749,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
714
749
  }], seriesTooltip: [{
715
750
  type: ContentChild,
716
751
  args: [SeriesTooltipComponent, { static: false }]
752
+ }], drilldownTemplate: [{
753
+ type: ContentChild,
754
+ args: [SeriesDrilldownTemplateDirective, { static: false }]
717
755
  }] } });
718
756
 
719
757
  const POSITION_MODE = 'absolute';
@@ -2189,11 +2227,125 @@ const packageMetadata = {
2189
2227
  name: '@progress/kendo-angular-charts',
2190
2228
  productName: 'Kendo UI for Angular',
2191
2229
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
2192
- publishDate: 1684849649,
2193
- version: '13.0.0-develop.4',
2230
+ publishDate: 1685095066,
2231
+ version: '13.0.0-develop.6',
2194
2232
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
2195
2233
  };
2196
2234
 
2235
+ /**
2236
+ * @hidden
2237
+ */
2238
+ class CollectionComponent {
2239
+ constructor(configKey, configurationService, collectionService) {
2240
+ this.configKey = configKey;
2241
+ this.configurationService = configurationService;
2242
+ this.collectionService = collectionService;
2243
+ this.items = [];
2244
+ this.subscription = collectionService.onItemChange$.subscribe(changes => this.processChanges(changes));
2245
+ }
2246
+ ngOnDestroy() {
2247
+ this.subscription.unsubscribe();
2248
+ }
2249
+ ngAfterContentInit() {
2250
+ this.readItems();
2251
+ this.children.changes.subscribe(() => this.readItems());
2252
+ }
2253
+ processChanges(changes) {
2254
+ if (!this.children) {
2255
+ return;
2256
+ }
2257
+ const index = this.children.toArray().filter(s => !s.hidden).indexOf(changes.sender);
2258
+ if (index < 0) {
2259
+ return;
2260
+ }
2261
+ this.items[index] = changes.options;
2262
+ this.change();
2263
+ }
2264
+ readItems() {
2265
+ this.items = this.children.filter(s => !s.hidden).map(s => s.options);
2266
+ this.change();
2267
+ }
2268
+ change() {
2269
+ this.configurationService.notify(new Change(this.configKey, this.items.length === 0 ? undefined : this.items));
2270
+ }
2271
+ }
2272
+ CollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
2273
+ CollectionComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: CollectionComponent, ngImport: i0 });
2274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, decorators: [{
2275
+ type: Directive
2276
+ }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }, { type: CollectionService }]; } });
2277
+
2278
+ /**
2279
+ * A collection of one or more series items.
2280
+ *
2281
+ * @example
2282
+ * ```ts
2283
+ * import { Component } from '@angular/core';
2284
+ *
2285
+ * _@Component({
2286
+ * selector: 'my-app',
2287
+ * template: `
2288
+ * <kendo-chart>
2289
+ * <kendo-chart-series>
2290
+ * <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
2291
+ * </kendo-chart-series-item>
2292
+ * </kendo-chart-series>
2293
+ * </kendo-chart>
2294
+ * `
2295
+ * })
2296
+ * class AppComponent {
2297
+ * }
2298
+ *
2299
+ * ```
2300
+ */
2301
+ class SeriesComponent extends CollectionComponent {
2302
+ constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {
2303
+ super('series', configurationService, collectionService);
2304
+ this.configurationService = configurationService;
2305
+ this.collectionService = collectionService;
2306
+ this.tooltipTemplateService = tooltipTemplateService;
2307
+ this.viewContainer = viewContainer;
2308
+ }
2309
+ ngAfterContentChecked() {
2310
+ this.readTooltipTemplates();
2311
+ }
2312
+ readTooltipTemplates() {
2313
+ const templates = this.children.map((item) => item.seriesTooltipTemplateRef);
2314
+ this.tooltipTemplateService.setSeriesTemplates(templates);
2315
+ }
2316
+ }
2317
+ SeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
2318
+ 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 });
2319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, decorators: [{
2320
+ type: Component,
2321
+ args: [{
2322
+ changeDetection: ChangeDetectionStrategy.OnPush,
2323
+ providers: [CollectionService],
2324
+ selector: 'kendo-chart-series',
2325
+ template: ''
2326
+ }]
2327
+ }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{
2328
+ type: ContentChildren,
2329
+ args: [SeriesItemComponent, { descendants: true }]
2330
+ }] } });
2331
+
2332
+ /**
2333
+ * Arguments for the `drilldown` event.
2334
+ *
2335
+ * See [Drilldown Charts](slug:drilldown_chart_charts).
2336
+ */
2337
+ class DrilldownEvent extends PreventableEvent {
2338
+ /**
2339
+ * @hidden
2340
+ */
2341
+ constructor(e, sender) {
2342
+ super(sender);
2343
+ this.value = e.value;
2344
+ this.point = e.point;
2345
+ this.series = e.series;
2346
+ }
2347
+ }
2348
+
2197
2349
  function hasObservers(emitter) {
2198
2350
  return emitter.observers.length > 0;
2199
2351
  }
@@ -2341,6 +2493,10 @@ class ChartComponent {
2341
2493
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
2342
2494
  */
2343
2495
  this.seriesClick = new EventEmitter();
2496
+ /**
2497
+ * Fires when the user when the user wants to drill down on a specific point.
2498
+ */
2499
+ this.drilldown = new EventEmitter();
2344
2500
  /**
2345
2501
  * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
2346
2502
  */
@@ -2370,6 +2526,10 @@ class ChartComponent {
2370
2526
  * Can be prevented.
2371
2527
  */
2372
2528
  this.legendItemClick = new EventEmitter();
2529
+ /**
2530
+ * Fires when the drill-down level has changed.
2531
+ */
2532
+ this.drilldownLevelChange = new EventEmitter();
2373
2533
  /**
2374
2534
  * Limits the automatic resizing of the Chart. Sets the maximum number of times per second
2375
2535
  * that the component redraws its content when the size of its container changes.
@@ -2402,10 +2562,33 @@ class ChartComponent {
2402
2562
  this.suppressTransitions = false;
2403
2563
  this.rtl = false;
2404
2564
  this.hostClasses = ['k-chart', 'k-widget'];
2565
+ this.drilldownState = [];
2405
2566
  validatePackage(packageMetadata);
2406
2567
  this.themeService.loadTheme();
2407
2568
  this.refreshWait();
2408
2569
  }
2570
+ /**
2571
+ * Gets or sets the current drill-down level for [Drilldown Charts](slug:drilldown_chart_charts).
2572
+ *
2573
+ * To return to a previous level, set the value to a number less than the current level.
2574
+ * To return to the root chart, set the value to 0.
2575
+ *
2576
+ * Setting the value to a number greater than the current level will have no effect.
2577
+ */
2578
+ get drilldownLevel() {
2579
+ return this.drilldownState.length;
2580
+ }
2581
+ set drilldownLevel(level) {
2582
+ const currentLevel = this.drilldownState.length;
2583
+ if (currentLevel <= level || !this.seriesComponents) {
2584
+ return;
2585
+ }
2586
+ const removed = this.drilldownState.slice(level);
2587
+ removed.forEach(view => view.destroy());
2588
+ this.drilldownState = this.drilldownState.slice(0, currentLevel - removed.length);
2589
+ this.seriesComponents.toArray().slice(-removed.length - 1).forEach(series => series.hidden = false);
2590
+ this.drilldownLevelChange.emit(level);
2591
+ }
2409
2592
  ngOnInit() {
2410
2593
  if (this.element) {
2411
2594
  this.hostClasses.forEach(name => {
@@ -2427,6 +2610,26 @@ class ChartComponent {
2427
2610
  this.subscriptions = this.intl.changes.subscribe(this.intlChange.bind(this));
2428
2611
  this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)));
2429
2612
  }
2613
+ onDrilldown(e) {
2614
+ const args = new DrilldownEvent(e, this);
2615
+ this.run(() => this.drilldown.emit(args));
2616
+ if (args.isDefaultPrevented()) {
2617
+ return;
2618
+ }
2619
+ const seriesCollection = this.seriesCollectionComponent.first;
2620
+ const seriesComponent = this.seriesComponents.find((sc) => sc.name === e.series.name);
2621
+ if (seriesComponent.drilldownTemplate) {
2622
+ seriesComponent.hidden = true;
2623
+ const view = seriesCollection.viewContainer.createEmbeddedView(seriesComponent.drilldownTemplate.templateRef, {
2624
+ drilldownValue: e.value,
2625
+ point: e.point,
2626
+ series: e.series
2627
+ });
2628
+ view.markForCheck();
2629
+ this.drilldownState.push(view);
2630
+ this.drilldownLevelChange.emit(this.drilldownLevel);
2631
+ }
2632
+ }
2430
2633
  ngAfterViewChecked() {
2431
2634
  if (this.instance && this.autoResize) {
2432
2635
  this.ngZone.runOutsideAngular(() => {
@@ -2676,6 +2879,10 @@ class ChartComponent {
2676
2879
  if (name === 'resize') {
2677
2880
  return;
2678
2881
  }
2882
+ if (name === 'drilldown') {
2883
+ this.onDrilldown(e);
2884
+ return;
2885
+ }
2679
2886
  const emitter = this.activeEmitter(name);
2680
2887
  if (emitter) {
2681
2888
  const args = this.instanceEventService.create(name, e, this);
@@ -2852,7 +3059,7 @@ class ChartComponent {
2852
3059
  }
2853
3060
  }
2854
3061
  ChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: InstanceEventService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
2855
- ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ChartComponent, selector: "kendo-chart", inputs: { 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" }, outputs: { 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" }, providers: [
3062
+ ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ChartComponent, selector: "kendo-chart", inputs: { 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" }, outputs: { 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" }, providers: [
2856
3063
  ConfigurationService,
2857
3064
  TooltipTemplateService,
2858
3065
  InstanceEventService,
@@ -2861,7 +3068,7 @@ ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
2861
3068
  provide: L10N_PREFIX,
2862
3069
  useValue: 'kendo.chart'
2863
3070
  }
2864
- ], queries: [{ propertyName: "donutCenterTemplate", first: true, predicate: DonutCenterTemplateDirective, descendants: true }, { propertyName: "seriesComponents", predicate: SeriesItemComponent, descendants: true }], viewQueries: [{ propertyName: "tooltipInstance", first: true, predicate: TooltipPopupComponent, descendants: true, static: true }, { propertyName: "crossahirTooltips", first: true, predicate: CrosshairTooltipsContainerComponent, descendants: true, static: true }, { propertyName: "surfaceElement", first: true, predicate: ["surface"], descendants: true, static: true }], exportAs: ["kendoChart"], usesOnChanges: true, ngImport: i0, template: `
3071
+ ], queries: [{ propertyName: "donutCenterTemplate", first: true, predicate: DonutCenterTemplateDirective, descendants: true }, { propertyName: "seriesCollectionComponent", predicate: SeriesComponent }, { propertyName: "seriesComponents", predicate: SeriesItemComponent, descendants: true }], viewQueries: [{ propertyName: "tooltipInstance", first: true, predicate: TooltipPopupComponent, descendants: true, static: true }, { propertyName: "crossahirTooltips", first: true, predicate: CrosshairTooltipsContainerComponent, descendants: true, static: true }, { propertyName: "surfaceElement", first: true, predicate: ["surface"], descendants: true, static: true }], exportAs: ["kendoChart"], usesOnChanges: true, ngImport: i0, template: `
2865
3072
  <div #surface class="k-chart-surface"></div>
2866
3073
  <kendo-chart-crosshair-tooltips-container [popupSettings]="popupSettings">
2867
3074
  </kendo-chart-crosshair-tooltips-container>
@@ -2976,6 +3183,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2976
3183
  type: Output
2977
3184
  }], seriesClick: [{
2978
3185
  type: Output
3186
+ }], drilldown: [{
3187
+ type: Output
2979
3188
  }], seriesHover: [{
2980
3189
  type: Output
2981
3190
  }], seriesOver: [{
@@ -2990,10 +3199,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2990
3199
  type: Output
2991
3200
  }], legendItemClick: [{
2992
3201
  type: Output
3202
+ }], drilldownLevelChange: [{
3203
+ type: Output
2993
3204
  }], resizeRateLimit: [{
2994
3205
  type: Input
2995
3206
  }], popupSettings: [{
2996
3207
  type: Input
3208
+ }], drilldownLevel: [{
3209
+ type: Input
3210
+ }], seriesCollectionComponent: [{
3211
+ type: ContentChildren,
3212
+ args: [SeriesComponent]
2997
3213
  }], seriesComponents: [{
2998
3214
  type: ContentChildren,
2999
3215
  args: [SeriesItemComponent, { descendants: true }]
@@ -3325,49 +3541,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3325
3541
  type: Input
3326
3542
  }] } });
3327
3543
 
3328
- /**
3329
- * @hidden
3330
- */
3331
- class CollectionComponent {
3332
- constructor(configKey, configurationService, collectionService) {
3333
- this.configKey = configKey;
3334
- this.configurationService = configurationService;
3335
- this.collectionService = collectionService;
3336
- this.items = [];
3337
- this.subscription = collectionService.onItemChange$.subscribe(changes => this.processChanges(changes));
3338
- }
3339
- ngOnDestroy() {
3340
- this.subscription.unsubscribe();
3341
- }
3342
- ngAfterContentInit() {
3343
- this.readItems();
3344
- this.children.changes.subscribe(() => this.readItems());
3345
- }
3346
- processChanges(changes) {
3347
- if (!this.children) {
3348
- return;
3349
- }
3350
- const index = this.children.toArray().indexOf(changes.sender);
3351
- if (index < 0) {
3352
- return;
3353
- }
3354
- this.items[index] = changes.options;
3355
- this.change();
3356
- }
3357
- readItems() {
3358
- this.items = this.children.map(s => s.options);
3359
- this.change();
3360
- }
3361
- change() {
3362
- this.configurationService.notify(new Change(this.configKey, this.items.length === 0 ? undefined : this.items));
3363
- }
3364
- }
3365
- CollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
3366
- CollectionComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: CollectionComponent, ngImport: i0 });
3367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, decorators: [{
3368
- type: Directive
3369
- }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }, { type: CollectionService }]; } });
3370
-
3371
3544
  /**
3372
3545
  * Specifies the `weekStartDay` of a [CategoryAxisItemComponent]({% slug api_charts_categoryaxisitemcomponent %}).
3373
3546
  */
@@ -4316,59 +4489,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4316
4489
  type: Input
4317
4490
  }] } });
4318
4491
 
4319
- /**
4320
- * A collection of one or more series items.
4321
- *
4322
- * @example
4323
- * ```ts
4324
- * import { Component } from '@angular/core';
4325
- *
4326
- * _@Component({
4327
- * selector: 'my-app',
4328
- * template: `
4329
- * <kendo-chart>
4330
- * <kendo-chart-series>
4331
- * <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
4332
- * </kendo-chart-series-item>
4333
- * </kendo-chart-series>
4334
- * </kendo-chart>
4335
- * `
4336
- * })
4337
- * class AppComponent {
4338
- * }
4339
- *
4340
- * ```
4341
- */
4342
- class SeriesComponent extends CollectionComponent {
4343
- constructor(configurationService, collectionService, tooltipTemplateService) {
4344
- super('series', configurationService, collectionService);
4345
- this.configurationService = configurationService;
4346
- this.collectionService = collectionService;
4347
- this.tooltipTemplateService = tooltipTemplateService;
4348
- }
4349
- ngAfterContentChecked() {
4350
- this.readTooltipTemplates();
4351
- }
4352
- readTooltipTemplates() {
4353
- const templates = this.children.map((item) => item.seriesTooltipTemplateRef);
4354
- this.tooltipTemplateService.setSeriesTemplates(templates);
4355
- }
4356
- }
4357
- SeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });
4358
- 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 });
4359
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, decorators: [{
4360
- type: Component,
4361
- args: [{
4362
- changeDetection: ChangeDetectionStrategy.OnPush,
4363
- providers: [CollectionService],
4364
- selector: 'kendo-chart-series',
4365
- template: ''
4366
- }]
4367
- }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }]; }, propDecorators: { children: [{
4368
- type: ContentChildren,
4369
- args: [SeriesItemComponent]
4370
- }] } });
4371
-
4372
4492
  /**
4373
4493
  * The default options for all series
4374
4494
  * ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)).
@@ -6660,6 +6780,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6660
6780
  type: Input
6661
6781
  }] } });
6662
6782
 
6783
+ /**
6784
+ * Navigation Breadcrumb component for Drilldown Charts.
6785
+ *
6786
+ * Use this component to implement navigation for [Drilldown Charts](slug:drilldown_chart_charts).
6787
+ * Use the `chart` input to link the Breadcrumb to the Chart instance.
6788
+ *
6789
+ */
6790
+ class ChartBreadcrumbComponent {
6791
+ constructor() {
6792
+ /**
6793
+ * The definition of the breadcrumb root item.
6794
+ *
6795
+ * The default value is `{ icon: 'home', svgIcon: homeIcon, title: 'Home' }`.
6796
+ * (homeIcon is imported from '@progress/kendo-svg-icons')
6797
+ */
6798
+ this.rootItem = { icon: 'home', svgIcon: homeIcon, title: 'Home' };
6799
+ }
6800
+ ngOnInit() {
6801
+ this.items = [this.rootItem];
6802
+ if (this.chart) {
6803
+ this.subscription = this.chart.drilldown.subscribe((e) => {
6804
+ this.items = [...this.items, { text: e.point.category.toString() }];
6805
+ });
6806
+ }
6807
+ else if (isDevMode()) {
6808
+ console.warn('Chart Breadcrumb: No Chart instance supplied. Navigation is inactive.');
6809
+ }
6810
+ }
6811
+ ngOnChanges(changes) {
6812
+ const rootItemChange = changes['rootItem'];
6813
+ if (rootItemChange && this.items) {
6814
+ this.items[0] = rootItemChange.currentValue;
6815
+ }
6816
+ }
6817
+ ngOnDestroy() {
6818
+ if (this.subscription) {
6819
+ this.subscription.unsubscribe();
6820
+ this.subscription = null;
6821
+ }
6822
+ }
6823
+ /**
6824
+ * @hidden
6825
+ */
6826
+ onItemClick(target) {
6827
+ const level = this.items.findIndex(item => item === target);
6828
+ this.chart.drilldownLevel = level;
6829
+ this.items = this.items.slice(0, level + 1);
6830
+ }
6831
+ }
6832
+ ChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6833
+ ChartBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ChartBreadcrumbComponent, selector: "kendo-chart-breadcrumb", inputs: { chart: "chart", rootItem: "rootItem" }, viewQueries: [{ propertyName: "breadcrumb", first: true, predicate: ["breadcrumb"], descendants: true, static: true }], exportAs: ["kendoChartBreadcrumb"], usesOnChanges: true, ngImport: i0, template: `
6834
+ <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
6835
+ </kendo-breadcrumb>
6836
+ `, isInline: true, components: [{ type: i1$1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
6837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{
6838
+ type: Component,
6839
+ args: [{
6840
+ exportAs: 'kendoChartBreadcrumb',
6841
+ selector: 'kendo-chart-breadcrumb',
6842
+ template: `
6843
+ <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
6844
+ </kendo-breadcrumb>
6845
+ `
6846
+ }]
6847
+ }], propDecorators: { chart: [{
6848
+ type: Input
6849
+ }], rootItem: [{
6850
+ type: Input
6851
+ }], breadcrumb: [{
6852
+ type: ViewChild,
6853
+ args: ['breadcrumb', { static: true }]
6854
+ }] } });
6855
+
6663
6856
  /**
6664
6857
  * @hidden
6665
6858
  */
@@ -6688,6 +6881,7 @@ const CHART_DIRECTIVES = [
6688
6881
  CategoryAxisSelectComponent,
6689
6882
  CategoryAxisTitleComponent,
6690
6883
  ChartAreaComponent,
6884
+ ChartBreadcrumbComponent,
6691
6885
  LegendComponent,
6692
6886
  LegendInactiveItemsComponent,
6693
6887
  LegendItemComponent,
@@ -6706,6 +6900,7 @@ const CHART_DIRECTIVES = [
6706
6900
  SeriesDefaultsNotesIconComponent,
6707
6901
  SeriesDefaultsNotesLabelComponent,
6708
6902
  SeriesDefaultsTooltipComponent,
6903
+ SeriesDrilldownTemplateDirective,
6709
6904
  SeriesErrorBarsComponent,
6710
6905
  SeriesExtremesComponent,
6711
6906
  SeriesHighlightComponent,
@@ -6854,6 +7049,14 @@ class StockChartComponent extends ChartComponent {
6854
7049
  this.instanceEventService = instanceEventService;
6855
7050
  this.changeDetector = changeDetector;
6856
7051
  this.renderer = renderer;
7052
+ /**
7053
+ * @hidden
7054
+ */
7055
+ this.drilldown = new EventEmitter();
7056
+ /**
7057
+ * @hidden
7058
+ */
7059
+ this.drilldownLevelChange = new EventEmitter();
6857
7060
  /**
6858
7061
  * Fires when the navigator range is changed.
6859
7062
  */
@@ -6862,6 +7065,12 @@ class StockChartComponent extends ChartComponent {
6862
7065
  this.hostClasses = ['k-chart', 'k-stockchart'];
6863
7066
  validatePackage(packageMetadata);
6864
7067
  }
7068
+ /**
7069
+ * @hidden
7070
+ */
7071
+ get drilldownLevel() {
7072
+ return this.drilldownState.length;
7073
+ }
6865
7074
  /**
6866
7075
  * If called, the navigator pane is not redrawn the next time the StockChart options are updated.
6867
7076
  * The method is useful if you need to update only the main series data for the selected period.
@@ -6901,7 +7110,7 @@ class StockChartComponent extends ChartComponent {
6901
7110
  }
6902
7111
  }
6903
7112
  StockChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StockChartComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: StockInstanceEventService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
6904
- StockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: StockChartComponent, selector: "kendo-stockchart", inputs: { navigator: "navigator", pannable: "pannable", zoomable: "zoomable" }, outputs: { navigatorFilter: "navigatorFilter" }, providers: [
7113
+ StockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: StockChartComponent, selector: "kendo-stockchart", inputs: { navigator: "navigator", pannable: "pannable", zoomable: "zoomable", drilldownLevel: "drilldownLevel" }, outputs: { drilldown: "drilldown", drilldownLevelChange: "drilldownLevelChange", navigatorFilter: "navigatorFilter" }, providers: [
6905
7114
  ConfigurationService,
6906
7115
  TooltipTemplateService,
6907
7116
  { provide: RootConfigurationService, useExisting: ConfigurationService },
@@ -6951,6 +7160,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6951
7160
  type: Input
6952
7161
  }], zoomable: [{
6953
7162
  type: Input
7163
+ }], drilldown: [{
7164
+ type: Output
7165
+ }], drilldownLevelChange: [{
7166
+ type: Output
7167
+ }], drilldownLevel: [{
7168
+ type: Input
6954
7169
  }], navigatorFilter: [{
6955
7170
  type: Output
6956
7171
  }] } });
@@ -7381,7 +7596,7 @@ class NavigatorSeriesItemComponent extends SeriesItemComponent {
7381
7596
  }
7382
7597
  }
7383
7598
  NavigatorSeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });
7384
- NavigatorSeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: NavigatorSeriesItemComponent, selector: "kendo-chart-navigator-series-item", providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
7599
+ NavigatorSeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: NavigatorSeriesItemComponent, selector: "kendo-chart-navigator-series-item", inputs: { drilldownField: "drilldownField" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
7385
7600
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesItemComponent, decorators: [{
7386
7601
  type: Component,
7387
7602
  args: [{
@@ -7390,7 +7605,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7390
7605
  selector: 'kendo-chart-navigator-series-item',
7391
7606
  template: ''
7392
7607
  }]
7393
- }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; } });
7608
+ }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { drilldownField: [{
7609
+ type: Input
7610
+ }] } });
7394
7611
 
7395
7612
  /**
7396
7613
  * A collection of one or more navigator series items.
@@ -7428,16 +7645,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7428
7645
  * ```
7429
7646
  */
7430
7647
  class NavigatorSeriesComponent extends SeriesComponent {
7431
- constructor(configurationService, collectionService, tooltipTemplateService) {
7432
- super(configurationService, collectionService, tooltipTemplateService);
7648
+ constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {
7649
+ super(configurationService, collectionService, tooltipTemplateService, viewContainer);
7433
7650
  this.configurationService = configurationService;
7434
7651
  this.collectionService = collectionService;
7435
7652
  this.tooltipTemplateService = tooltipTemplateService;
7653
+ this.viewContainer = viewContainer;
7436
7654
  }
7437
7655
  readTooltipTemplates() {
7438
7656
  }
7439
7657
  }
7440
- NavigatorSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });
7658
+ NavigatorSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
7441
7659
  NavigatorSeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: NavigatorSeriesComponent, selector: "kendo-chart-navigator-series", providers: [CollectionService], queries: [{ propertyName: "children", predicate: NavigatorSeriesItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
7442
7660
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesComponent, decorators: [{
7443
7661
  type: Component,
@@ -7447,7 +7665,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7447
7665
  selector: 'kendo-chart-navigator-series',
7448
7666
  template: ''
7449
7667
  }]
7450
- }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }]; }, propDecorators: { children: [{
7668
+ }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{
7451
7669
  type: ContentChildren,
7452
7670
  args: [NavigatorSeriesItemComponent]
7453
7671
  }] } });
@@ -7768,6 +7986,14 @@ class SparklineComponent extends ChartComponent {
7768
7986
  this.instanceEventService = instanceEventService;
7769
7987
  this.changeDetector = changeDetector;
7770
7988
  this.renderer = renderer;
7989
+ /**
7990
+ * @hidden
7991
+ */
7992
+ this.drilldown = new EventEmitter();
7993
+ /**
7994
+ * @hidden
7995
+ */
7996
+ this.drilldownLevelChange = new EventEmitter();
7771
7997
  /**
7772
7998
  * @hidden
7773
7999
  */
@@ -7781,6 +8007,12 @@ class SparklineComponent extends ChartComponent {
7781
8007
  this.hostClasses = ['k-sparkline', 'k-widget'];
7782
8008
  validatePackage(packageMetadata);
7783
8009
  }
8010
+ /**
8011
+ * @hidden
8012
+ */
8013
+ get drilldownLevel() {
8014
+ return this.drilldownState.length;
8015
+ }
7784
8016
  createInstance(element, observer) {
7785
8017
  this.instance = new Sparkline(element, Sparkline.normalizeOptions(this.options), this.theme, {
7786
8018
  intlService: this.intl,
@@ -7794,7 +8026,7 @@ class SparklineComponent extends ChartComponent {
7794
8026
  }
7795
8027
  }
7796
8028
  SparklineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SparklineComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: InstanceEventService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
7797
- SparklineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SparklineComponent, selector: "kendo-sparkline", inputs: { type: "type", data: "data" }, providers: [
8029
+ SparklineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SparklineComponent, selector: "kendo-sparkline", inputs: { type: "type", data: "data", drilldownLevel: "drilldownLevel" }, outputs: { drilldown: "drilldown", drilldownLevelChange: "drilldownLevelChange" }, providers: [
7798
8030
  ConfigurationService,
7799
8031
  TooltipTemplateService,
7800
8032
  InstanceEventService,
@@ -7842,6 +8074,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7842
8074
  type: Input
7843
8075
  }], data: [{
7844
8076
  type: Input
8077
+ }], drilldown: [{
8078
+ type: Output
8079
+ }], drilldownLevelChange: [{
8080
+ type: Output
8081
+ }], drilldownLevel: [{
8082
+ type: Input
7845
8083
  }] } });
7846
8084
 
7847
8085
  /**
@@ -7876,16 +8114,16 @@ const SPARKLINE_DIRECTIVES = [
7876
8114
  class ChartModule {
7877
8115
  }
7878
8116
  ChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7879
- ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, 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], imports: [CommonModule, PopupModule, ResizeSensorModule], exports: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, 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] });
8117
+ ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, 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, 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], imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule], exports: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, 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, 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] });
7880
8118
  ChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, providers: [
7881
8119
  ThemeService
7882
- ], imports: [[CommonModule, PopupModule, ResizeSensorModule]] });
8120
+ ], imports: [[CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule]] });
7883
8121
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, decorators: [{
7884
8122
  type: NgModule,
7885
8123
  args: [{
7886
8124
  declarations: [CHART_DIRECTIVES],
7887
8125
  exports: [CHART_DIRECTIVES],
7888
- imports: [CommonModule, PopupModule, ResizeSensorModule],
8126
+ imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule],
7889
8127
  providers: [
7890
8128
  ThemeService
7891
8129
  ]
@@ -8005,5 +8243,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
8005
8243
  * Generated bundle index. Do not edit.
8006
8244
  */
8007
8245
 
8008
- export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CHART_DIRECTIVES, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SPARKLINE_DIRECTIVES, STOCK_CHART_DIRECTIVES, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
8246
+ export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CHART_DIRECTIVES, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SPARKLINE_DIRECTIVES, STOCK_CHART_DIRECTIVES, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
8009
8247