@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 { PopupService, POPUP_CONTAINER, PopupModule } from '@progress/kendo-angu
18
18
  import * as i4$1 from '@angular/common';
19
19
  import { CommonModule } from '@angular/common';
20
20
  import * as i3 from '@progress/kendo-angular-intl';
21
+ import { homeIcon } from '@progress/kendo-svg-icons';
22
+ import * as i1$1 from '@progress/kendo-angular-navigation';
23
+ import { BreadCrumbModule } from '@progress/kendo-angular-navigation';
21
24
 
22
25
  const getTouch = (domEvent) => {
23
26
  return {
@@ -370,6 +373,7 @@ class CollectionItemComponent {
370
373
  this.configurationService = configurationService;
371
374
  this.collectionService = collectionService;
372
375
  this.options = {};
376
+ this.hidden = false;
373
377
  this.subscription = configurationService.onFastChange$.subscribe(store => {
374
378
  this.options = store;
375
379
  this.notify();
@@ -502,6 +506,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
502
506
  args: [TemplateRef, { static: false }]
503
507
  }] } });
504
508
 
509
+ /**
510
+ * Represents the series [template](link:site.data.urls.angular['templatesyntax'])
511
+ * within the `<kendo-chart-series-item>` component for creating nested
512
+ * [Drilldown](slug:drilldown_chart_charts) series.
513
+ *
514
+ * When the user clicks on a data point with drilldown data,
515
+ * the Chart will create a new series based on this template.
516
+ *
517
+ * The template context is passes through the following fields:
518
+ * - `drilldownValue`&mdash;The drilldown field value.
519
+ * - `point`&mdash;The series point to drill down to.
520
+ * - `series`&mdash;The series to drill down to.
521
+ */
522
+ class SeriesDrilldownTemplateDirective {
523
+ constructor(templateRef) {
524
+ this.templateRef = templateRef;
525
+ }
526
+ }
527
+ 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 });
528
+ SeriesDrilldownTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: SeriesDrilldownTemplateDirective, selector: "[kendoChartDrilldownSeries]", ngImport: i0 });
529
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesDrilldownTemplateDirective, decorators: [{
530
+ type: Directive,
531
+ args: [{
532
+ selector: '[kendoChartDrilldownSeries]'
533
+ }]
534
+ }], ctorParameters: function () {
535
+ return [{ type: i0.TemplateRef, decorators: [{
536
+ type: Optional
537
+ }] }];
538
+ } });
539
+
505
540
  const toggle = (flag) => flag === undefined ? false : !flag;
506
541
  /**
507
542
  * The configuration component for a series item.
@@ -538,7 +573,7 @@ class SeriesItemComponent extends CollectionItemComponent {
538
573
  }
539
574
  }
540
575
  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 });
541
- 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 });
576
+ 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 });
542
577
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, decorators: [{
543
578
  type: Component,
544
579
  args: [{
@@ -577,6 +612,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
577
612
  type: Input
578
613
  }], downColorField: [{
579
614
  type: Input
615
+ }], drilldownField: [{
616
+ type: Input
580
617
  }], dynamicHeight: [{
581
618
  type: Input
582
619
  }], dynamicSlope: [{
@@ -716,6 +753,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
716
753
  }], seriesTooltip: [{
717
754
  type: ContentChild,
718
755
  args: [SeriesTooltipComponent, { static: false }]
756
+ }], drilldownTemplate: [{
757
+ type: ContentChild,
758
+ args: [SeriesDrilldownTemplateDirective, { static: false }]
719
759
  }] } });
720
760
 
721
761
  const POSITION_MODE = 'absolute';
@@ -1818,11 +1858,125 @@ const packageMetadata = {
1818
1858
  name: '@progress/kendo-angular-charts',
1819
1859
  productName: 'Kendo UI for Angular',
1820
1860
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
1821
- publishDate: 1684849649,
1822
- version: '13.0.0-develop.4',
1861
+ publishDate: 1685095066,
1862
+ version: '13.0.0-develop.6',
1823
1863
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
1824
1864
  };
1825
1865
 
1866
+ /**
1867
+ * @hidden
1868
+ */
1869
+ class CollectionComponent {
1870
+ constructor(configKey, configurationService, collectionService) {
1871
+ this.configKey = configKey;
1872
+ this.configurationService = configurationService;
1873
+ this.collectionService = collectionService;
1874
+ this.items = [];
1875
+ this.subscription = collectionService.onItemChange$.subscribe(changes => this.processChanges(changes));
1876
+ }
1877
+ ngOnDestroy() {
1878
+ this.subscription.unsubscribe();
1879
+ }
1880
+ ngAfterContentInit() {
1881
+ this.readItems();
1882
+ this.children.changes.subscribe(() => this.readItems());
1883
+ }
1884
+ processChanges(changes) {
1885
+ if (!this.children) {
1886
+ return;
1887
+ }
1888
+ const index = this.children.toArray().filter(s => !s.hidden).indexOf(changes.sender);
1889
+ if (index < 0) {
1890
+ return;
1891
+ }
1892
+ this.items[index] = changes.options;
1893
+ this.change();
1894
+ }
1895
+ readItems() {
1896
+ this.items = this.children.filter(s => !s.hidden).map(s => s.options);
1897
+ this.change();
1898
+ }
1899
+ change() {
1900
+ this.configurationService.notify(new Change(this.configKey, this.items.length === 0 ? undefined : this.items));
1901
+ }
1902
+ }
1903
+ CollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
1904
+ CollectionComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: CollectionComponent, ngImport: i0 });
1905
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, decorators: [{
1906
+ type: Directive
1907
+ }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }, { type: CollectionService }]; } });
1908
+
1909
+ /**
1910
+ * A collection of one or more series items.
1911
+ *
1912
+ * @example
1913
+ * ```ts
1914
+ * import { Component } from '@angular/core';
1915
+ *
1916
+ * _@Component({
1917
+ * selector: 'my-app',
1918
+ * template: `
1919
+ * <kendo-chart>
1920
+ * <kendo-chart-series>
1921
+ * <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
1922
+ * </kendo-chart-series-item>
1923
+ * </kendo-chart-series>
1924
+ * </kendo-chart>
1925
+ * `
1926
+ * })
1927
+ * class AppComponent {
1928
+ * }
1929
+ *
1930
+ * ```
1931
+ */
1932
+ class SeriesComponent extends CollectionComponent {
1933
+ constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {
1934
+ super('series', configurationService, collectionService);
1935
+ this.configurationService = configurationService;
1936
+ this.collectionService = collectionService;
1937
+ this.tooltipTemplateService = tooltipTemplateService;
1938
+ this.viewContainer = viewContainer;
1939
+ }
1940
+ ngAfterContentChecked() {
1941
+ this.readTooltipTemplates();
1942
+ }
1943
+ readTooltipTemplates() {
1944
+ const templates = this.children.map((item) => item.seriesTooltipTemplateRef);
1945
+ this.tooltipTemplateService.setSeriesTemplates(templates);
1946
+ }
1947
+ }
1948
+ 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 });
1949
+ 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 });
1950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, decorators: [{
1951
+ type: Component,
1952
+ args: [{
1953
+ changeDetection: ChangeDetectionStrategy.OnPush,
1954
+ providers: [CollectionService],
1955
+ selector: 'kendo-chart-series',
1956
+ template: ''
1957
+ }]
1958
+ }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{
1959
+ type: ContentChildren,
1960
+ args: [SeriesItemComponent, { descendants: true }]
1961
+ }] } });
1962
+
1963
+ /**
1964
+ * Arguments for the `drilldown` event.
1965
+ *
1966
+ * See [Drilldown Charts](slug:drilldown_chart_charts).
1967
+ */
1968
+ class DrilldownEvent extends PreventableEvent {
1969
+ /**
1970
+ * @hidden
1971
+ */
1972
+ constructor(e, sender) {
1973
+ super(sender);
1974
+ this.value = e.value;
1975
+ this.point = e.point;
1976
+ this.series = e.series;
1977
+ }
1978
+ }
1979
+
1826
1980
  /**
1827
1981
  * Fallback theme in case the Theme Service fails
1828
1982
  * to read the variables from the main theme.
@@ -2347,6 +2501,10 @@ class ChartComponent {
2347
2501
  * To distinguish between the original events, inspect the `e.originalEvent.type` field.
2348
2502
  */
2349
2503
  this.seriesClick = new EventEmitter();
2504
+ /**
2505
+ * Fires when the user when the user wants to drill down on a specific point.
2506
+ */
2507
+ this.drilldown = new EventEmitter();
2350
2508
  /**
2351
2509
  * Fires when the user hovers the Chart series ([see example](slug:events_charts)).
2352
2510
  */
@@ -2376,6 +2534,10 @@ class ChartComponent {
2376
2534
  * Can be prevented.
2377
2535
  */
2378
2536
  this.legendItemClick = new EventEmitter();
2537
+ /**
2538
+ * Fires when the drill-down level has changed.
2539
+ */
2540
+ this.drilldownLevelChange = new EventEmitter();
2379
2541
  /**
2380
2542
  * Limits the automatic resizing of the Chart. Sets the maximum number of times per second
2381
2543
  * that the component redraws its content when the size of its container changes.
@@ -2408,10 +2570,33 @@ class ChartComponent {
2408
2570
  this.suppressTransitions = false;
2409
2571
  this.rtl = false;
2410
2572
  this.hostClasses = ['k-chart', 'k-widget'];
2573
+ this.drilldownState = [];
2411
2574
  validatePackage(packageMetadata);
2412
2575
  this.themeService.loadTheme();
2413
2576
  this.refreshWait();
2414
2577
  }
2578
+ /**
2579
+ * Gets or sets the current drill-down level for [Drilldown Charts](slug:drilldown_chart_charts).
2580
+ *
2581
+ * To return to a previous level, set the value to a number less than the current level.
2582
+ * To return to the root chart, set the value to 0.
2583
+ *
2584
+ * Setting the value to a number greater than the current level will have no effect.
2585
+ */
2586
+ get drilldownLevel() {
2587
+ return this.drilldownState.length;
2588
+ }
2589
+ set drilldownLevel(level) {
2590
+ const currentLevel = this.drilldownState.length;
2591
+ if (currentLevel <= level || !this.seriesComponents) {
2592
+ return;
2593
+ }
2594
+ const removed = this.drilldownState.slice(level);
2595
+ removed.forEach(view => view.destroy());
2596
+ this.drilldownState = this.drilldownState.slice(0, currentLevel - removed.length);
2597
+ this.seriesComponents.toArray().slice(-removed.length - 1).forEach(series => series.hidden = false);
2598
+ this.drilldownLevelChange.emit(level);
2599
+ }
2415
2600
  ngOnInit() {
2416
2601
  if (this.element) {
2417
2602
  this.hostClasses.forEach(name => {
@@ -2433,6 +2618,26 @@ class ChartComponent {
2433
2618
  this.subscriptions = this.intl.changes.subscribe(this.intlChange.bind(this));
2434
2619
  this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)));
2435
2620
  }
2621
+ onDrilldown(e) {
2622
+ const args = new DrilldownEvent(e, this);
2623
+ this.run(() => this.drilldown.emit(args));
2624
+ if (args.isDefaultPrevented()) {
2625
+ return;
2626
+ }
2627
+ const seriesCollection = this.seriesCollectionComponent.first;
2628
+ const seriesComponent = this.seriesComponents.find((sc) => sc.name === e.series.name);
2629
+ if (seriesComponent.drilldownTemplate) {
2630
+ seriesComponent.hidden = true;
2631
+ const view = seriesCollection.viewContainer.createEmbeddedView(seriesComponent.drilldownTemplate.templateRef, {
2632
+ drilldownValue: e.value,
2633
+ point: e.point,
2634
+ series: e.series
2635
+ });
2636
+ view.markForCheck();
2637
+ this.drilldownState.push(view);
2638
+ this.drilldownLevelChange.emit(this.drilldownLevel);
2639
+ }
2640
+ }
2436
2641
  ngAfterViewChecked() {
2437
2642
  if (this.instance && this.autoResize) {
2438
2643
  this.ngZone.runOutsideAngular(() => {
@@ -2682,6 +2887,10 @@ class ChartComponent {
2682
2887
  if (name === 'resize') {
2683
2888
  return;
2684
2889
  }
2890
+ if (name === 'drilldown') {
2891
+ this.onDrilldown(e);
2892
+ return;
2893
+ }
2685
2894
  const emitter = this.activeEmitter(name);
2686
2895
  if (emitter) {
2687
2896
  const args = this.instanceEventService.create(name, e, this);
@@ -2858,7 +3067,7 @@ class ChartComponent {
2858
3067
  }
2859
3068
  }
2860
3069
  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 });
2861
- 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: [
3070
+ 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: [
2862
3071
  ConfigurationService,
2863
3072
  TooltipTemplateService,
2864
3073
  InstanceEventService,
@@ -2867,7 +3076,7 @@ ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
2867
3076
  provide: L10N_PREFIX,
2868
3077
  useValue: 'kendo.chart'
2869
3078
  }
2870
- ], 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: `
3079
+ ], 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: `
2871
3080
  <div #surface class="k-chart-surface"></div>
2872
3081
  <kendo-chart-crosshair-tooltips-container [popupSettings]="popupSettings">
2873
3082
  </kendo-chart-crosshair-tooltips-container>
@@ -2982,6 +3191,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2982
3191
  type: Output
2983
3192
  }], seriesClick: [{
2984
3193
  type: Output
3194
+ }], drilldown: [{
3195
+ type: Output
2985
3196
  }], seriesHover: [{
2986
3197
  type: Output
2987
3198
  }], seriesOver: [{
@@ -2996,10 +3207,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2996
3207
  type: Output
2997
3208
  }], legendItemClick: [{
2998
3209
  type: Output
3210
+ }], drilldownLevelChange: [{
3211
+ type: Output
2999
3212
  }], resizeRateLimit: [{
3000
3213
  type: Input
3001
3214
  }], popupSettings: [{
3002
3215
  type: Input
3216
+ }], drilldownLevel: [{
3217
+ type: Input
3218
+ }], seriesCollectionComponent: [{
3219
+ type: ContentChildren,
3220
+ args: [SeriesComponent]
3003
3221
  }], seriesComponents: [{
3004
3222
  type: ContentChildren,
3005
3223
  args: [SeriesItemComponent, { descendants: true }]
@@ -3331,49 +3549,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3331
3549
  type: Input
3332
3550
  }] } });
3333
3551
 
3334
- /**
3335
- * @hidden
3336
- */
3337
- class CollectionComponent {
3338
- constructor(configKey, configurationService, collectionService) {
3339
- this.configKey = configKey;
3340
- this.configurationService = configurationService;
3341
- this.collectionService = collectionService;
3342
- this.items = [];
3343
- this.subscription = collectionService.onItemChange$.subscribe(changes => this.processChanges(changes));
3344
- }
3345
- ngOnDestroy() {
3346
- this.subscription.unsubscribe();
3347
- }
3348
- ngAfterContentInit() {
3349
- this.readItems();
3350
- this.children.changes.subscribe(() => this.readItems());
3351
- }
3352
- processChanges(changes) {
3353
- if (!this.children) {
3354
- return;
3355
- }
3356
- const index = this.children.toArray().indexOf(changes.sender);
3357
- if (index < 0) {
3358
- return;
3359
- }
3360
- this.items[index] = changes.options;
3361
- this.change();
3362
- }
3363
- readItems() {
3364
- this.items = this.children.map(s => s.options);
3365
- this.change();
3366
- }
3367
- change() {
3368
- this.configurationService.notify(new Change(this.configKey, this.items.length === 0 ? undefined : this.items));
3369
- }
3370
- }
3371
- CollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
3372
- CollectionComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: CollectionComponent, ngImport: i0 });
3373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CollectionComponent, decorators: [{
3374
- type: Directive
3375
- }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }, { type: CollectionService }]; } });
3376
-
3377
3552
  /**
3378
3553
  * The configuration component for a category axis ([see example]({% slug axes_chart_charts %})).
3379
3554
  */
@@ -4289,59 +4464,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4289
4464
  type: Input
4290
4465
  }] } });
4291
4466
 
4292
- /**
4293
- * A collection of one or more series items.
4294
- *
4295
- * @example
4296
- * ```ts
4297
- * import { Component } from '@angular/core';
4298
- *
4299
- * _@Component({
4300
- * selector: 'my-app',
4301
- * template: `
4302
- * <kendo-chart>
4303
- * <kendo-chart-series>
4304
- * <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
4305
- * </kendo-chart-series-item>
4306
- * </kendo-chart-series>
4307
- * </kendo-chart>
4308
- * `
4309
- * })
4310
- * class AppComponent {
4311
- * }
4312
- *
4313
- * ```
4314
- */
4315
- class SeriesComponent extends CollectionComponent {
4316
- constructor(configurationService, collectionService, tooltipTemplateService) {
4317
- super('series', configurationService, collectionService);
4318
- this.configurationService = configurationService;
4319
- this.collectionService = collectionService;
4320
- this.tooltipTemplateService = tooltipTemplateService;
4321
- }
4322
- ngAfterContentChecked() {
4323
- this.readTooltipTemplates();
4324
- }
4325
- readTooltipTemplates() {
4326
- const templates = this.children.map((item) => item.seriesTooltipTemplateRef);
4327
- this.tooltipTemplateService.setSeriesTemplates(templates);
4328
- }
4329
- }
4330
- 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 });
4331
- 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 });
4332
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesComponent, decorators: [{
4333
- type: Component,
4334
- args: [{
4335
- changeDetection: ChangeDetectionStrategy.OnPush,
4336
- providers: [CollectionService],
4337
- selector: 'kendo-chart-series',
4338
- template: ''
4339
- }]
4340
- }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }]; }, propDecorators: { children: [{
4341
- type: ContentChildren,
4342
- args: [SeriesItemComponent]
4343
- }] } });
4344
-
4345
4467
  /**
4346
4468
  * The default options for all series
4347
4469
  * ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)).
@@ -6635,6 +6757,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6635
6757
  type: Input
6636
6758
  }] } });
6637
6759
 
6760
+ /**
6761
+ * Navigation Breadcrumb component for Drilldown Charts.
6762
+ *
6763
+ * Use this component to implement navigation for [Drilldown Charts](slug:drilldown_chart_charts).
6764
+ * Use the `chart` input to link the Breadcrumb to the Chart instance.
6765
+ *
6766
+ */
6767
+ class ChartBreadcrumbComponent {
6768
+ constructor() {
6769
+ /**
6770
+ * The definition of the breadcrumb root item.
6771
+ *
6772
+ * The default value is `{ icon: 'home', svgIcon: homeIcon, title: 'Home' }`.
6773
+ * (homeIcon is imported from '@progress/kendo-svg-icons')
6774
+ */
6775
+ this.rootItem = { icon: 'home', svgIcon: homeIcon, title: 'Home' };
6776
+ }
6777
+ ngOnInit() {
6778
+ this.items = [this.rootItem];
6779
+ if (this.chart) {
6780
+ this.subscription = this.chart.drilldown.subscribe((e) => {
6781
+ this.items = [...this.items, { text: e.point.category.toString() }];
6782
+ });
6783
+ }
6784
+ else if (isDevMode()) {
6785
+ console.warn('Chart Breadcrumb: No Chart instance supplied. Navigation is inactive.');
6786
+ }
6787
+ }
6788
+ ngOnChanges(changes) {
6789
+ const rootItemChange = changes['rootItem'];
6790
+ if (rootItemChange && this.items) {
6791
+ this.items[0] = rootItemChange.currentValue;
6792
+ }
6793
+ }
6794
+ ngOnDestroy() {
6795
+ if (this.subscription) {
6796
+ this.subscription.unsubscribe();
6797
+ this.subscription = null;
6798
+ }
6799
+ }
6800
+ /**
6801
+ * @hidden
6802
+ */
6803
+ onItemClick(target) {
6804
+ const level = this.items.findIndex(item => item === target);
6805
+ this.chart.drilldownLevel = level;
6806
+ this.items = this.items.slice(0, level + 1);
6807
+ }
6808
+ }
6809
+ ChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6810
+ 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: `
6811
+ <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
6812
+ </kendo-breadcrumb>
6813
+ `, isInline: true, components: [{ type: i1$1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
6814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{
6815
+ type: Component,
6816
+ args: [{
6817
+ exportAs: 'kendoChartBreadcrumb',
6818
+ selector: 'kendo-chart-breadcrumb',
6819
+ template: `
6820
+ <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
6821
+ </kendo-breadcrumb>
6822
+ `
6823
+ }]
6824
+ }], propDecorators: { chart: [{
6825
+ type: Input
6826
+ }], rootItem: [{
6827
+ type: Input
6828
+ }], breadcrumb: [{
6829
+ type: ViewChild,
6830
+ args: ['breadcrumb', { static: true }]
6831
+ }] } });
6832
+
6638
6833
  /**
6639
6834
  * @hidden
6640
6835
  */
@@ -6663,6 +6858,7 @@ const CHART_DIRECTIVES = [
6663
6858
  CategoryAxisSelectComponent,
6664
6859
  CategoryAxisTitleComponent,
6665
6860
  ChartAreaComponent,
6861
+ ChartBreadcrumbComponent,
6666
6862
  LegendComponent,
6667
6863
  LegendInactiveItemsComponent,
6668
6864
  LegendItemComponent,
@@ -6681,6 +6877,7 @@ const CHART_DIRECTIVES = [
6681
6877
  SeriesDefaultsNotesIconComponent,
6682
6878
  SeriesDefaultsNotesLabelComponent,
6683
6879
  SeriesDefaultsTooltipComponent,
6880
+ SeriesDrilldownTemplateDirective,
6684
6881
  SeriesErrorBarsComponent,
6685
6882
  SeriesExtremesComponent,
6686
6883
  SeriesHighlightComponent,
@@ -6864,6 +7061,14 @@ class StockChartComponent extends ChartComponent {
6864
7061
  this.instanceEventService = instanceEventService;
6865
7062
  this.changeDetector = changeDetector;
6866
7063
  this.renderer = renderer;
7064
+ /**
7065
+ * @hidden
7066
+ */
7067
+ this.drilldown = new EventEmitter();
7068
+ /**
7069
+ * @hidden
7070
+ */
7071
+ this.drilldownLevelChange = new EventEmitter();
6867
7072
  /**
6868
7073
  * Fires when the navigator range is changed.
6869
7074
  */
@@ -6872,6 +7077,12 @@ class StockChartComponent extends ChartComponent {
6872
7077
  this.hostClasses = ['k-chart', 'k-stockchart'];
6873
7078
  validatePackage(packageMetadata);
6874
7079
  }
7080
+ /**
7081
+ * @hidden
7082
+ */
7083
+ get drilldownLevel() {
7084
+ return this.drilldownState.length;
7085
+ }
6875
7086
  /**
6876
7087
  * If called, the navigator pane is not redrawn the next time the StockChart options are updated.
6877
7088
  * The method is useful if you need to update only the main series data for the selected period.
@@ -6911,7 +7122,7 @@ class StockChartComponent extends ChartComponent {
6911
7122
  }
6912
7123
  }
6913
7124
  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 });
6914
- 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: [
7125
+ 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: [
6915
7126
  ConfigurationService,
6916
7127
  TooltipTemplateService,
6917
7128
  { provide: RootConfigurationService, useExisting: ConfigurationService },
@@ -6961,6 +7172,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6961
7172
  type: Input
6962
7173
  }], zoomable: [{
6963
7174
  type: Input
7175
+ }], drilldown: [{
7176
+ type: Output
7177
+ }], drilldownLevelChange: [{
7178
+ type: Output
7179
+ }], drilldownLevel: [{
7180
+ type: Input
6964
7181
  }], navigatorFilter: [{
6965
7182
  type: Output
6966
7183
  }] } });
@@ -7395,7 +7612,7 @@ class NavigatorSeriesItemComponent extends SeriesItemComponent {
7395
7612
  }
7396
7613
  }
7397
7614
  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 });
7398
- 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 });
7615
+ 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 });
7399
7616
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesItemComponent, decorators: [{
7400
7617
  type: Component,
7401
7618
  args: [{
@@ -7404,7 +7621,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7404
7621
  selector: 'kendo-chart-navigator-series-item',
7405
7622
  template: ''
7406
7623
  }]
7407
- }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; } });
7624
+ }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { drilldownField: [{
7625
+ type: Input
7626
+ }] } });
7408
7627
 
7409
7628
  /**
7410
7629
  * A collection of one or more navigator series items.
@@ -7442,16 +7661,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7442
7661
  * ```
7443
7662
  */
7444
7663
  class NavigatorSeriesComponent extends SeriesComponent {
7445
- constructor(configurationService, collectionService, tooltipTemplateService) {
7446
- super(configurationService, collectionService, tooltipTemplateService);
7664
+ constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {
7665
+ super(configurationService, collectionService, tooltipTemplateService, viewContainer);
7447
7666
  this.configurationService = configurationService;
7448
7667
  this.collectionService = collectionService;
7449
7668
  this.tooltipTemplateService = tooltipTemplateService;
7669
+ this.viewContainer = viewContainer;
7450
7670
  }
7451
7671
  readTooltipTemplates() {
7452
7672
  }
7453
7673
  }
7454
- 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 });
7674
+ 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 });
7455
7675
  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 });
7456
7676
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NavigatorSeriesComponent, decorators: [{
7457
7677
  type: Component,
@@ -7461,7 +7681,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7461
7681
  selector: 'kendo-chart-navigator-series',
7462
7682
  template: ''
7463
7683
  }]
7464
- }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }]; }, propDecorators: { children: [{
7684
+ }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{
7465
7685
  type: ContentChildren,
7466
7686
  args: [NavigatorSeriesItemComponent]
7467
7687
  }] } });
@@ -7782,6 +8002,14 @@ class SparklineComponent extends ChartComponent {
7782
8002
  this.instanceEventService = instanceEventService;
7783
8003
  this.changeDetector = changeDetector;
7784
8004
  this.renderer = renderer;
8005
+ /**
8006
+ * @hidden
8007
+ */
8008
+ this.drilldown = new EventEmitter();
8009
+ /**
8010
+ * @hidden
8011
+ */
8012
+ this.drilldownLevelChange = new EventEmitter();
7785
8013
  /**
7786
8014
  * @hidden
7787
8015
  */
@@ -7795,6 +8023,12 @@ class SparklineComponent extends ChartComponent {
7795
8023
  this.hostClasses = ['k-sparkline', 'k-widget'];
7796
8024
  validatePackage(packageMetadata);
7797
8025
  }
8026
+ /**
8027
+ * @hidden
8028
+ */
8029
+ get drilldownLevel() {
8030
+ return this.drilldownState.length;
8031
+ }
7798
8032
  createInstance(element, observer) {
7799
8033
  this.instance = new Sparkline(element, Sparkline.normalizeOptions(this.options), this.theme, {
7800
8034
  intlService: this.intl,
@@ -7808,7 +8042,7 @@ class SparklineComponent extends ChartComponent {
7808
8042
  }
7809
8043
  }
7810
8044
  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 });
7811
- SparklineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SparklineComponent, selector: "kendo-sparkline", inputs: { type: "type", data: "data" }, providers: [
8045
+ 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: [
7812
8046
  ConfigurationService,
7813
8047
  TooltipTemplateService,
7814
8048
  InstanceEventService,
@@ -7856,6 +8090,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7856
8090
  type: Input
7857
8091
  }], data: [{
7858
8092
  type: Input
8093
+ }], drilldown: [{
8094
+ type: Output
8095
+ }], drilldownLevelChange: [{
8096
+ type: Output
8097
+ }], drilldownLevel: [{
8098
+ type: Input
7859
8099
  }] } });
7860
8100
 
7861
8101
  /**
@@ -7890,16 +8130,16 @@ const SPARKLINE_DIRECTIVES = [
7890
8130
  class ChartModule {
7891
8131
  }
7892
8132
  ChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7893
- 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] });
8133
+ 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] });
7894
8134
  ChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, providers: [
7895
8135
  ThemeService
7896
- ], imports: [[CommonModule, PopupModule, ResizeSensorModule]] });
8136
+ ], imports: [[CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule]] });
7897
8137
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, decorators: [{
7898
8138
  type: NgModule,
7899
8139
  args: [{
7900
8140
  declarations: [CHART_DIRECTIVES],
7901
8141
  exports: [CHART_DIRECTIVES],
7902
- imports: [CommonModule, PopupModule, ResizeSensorModule],
8142
+ imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule],
7903
8143
  providers: [
7904
8144
  ThemeService
7905
8145
  ]
@@ -8019,5 +8259,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
8019
8259
  * Generated bundle index. Do not edit.
8020
8260
  */
8021
8261
 
8022
- 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 };
8262
+ 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 };
8023
8263