{"version":3,"sources":["node_modules/@progress/kendo-angular-charts/fesm2020/progress-kendo-angular-charts.mjs"],"sourcesContent":["/**-----------------------------------------------------------------------------------------\n* Copyright © 2024 Progress Software Corporation. All rights reserved.\n* Licensed under commercial license. See LICENSE.md in the project root for more information\n*-------------------------------------------------------------------------------------------*/\nimport * as i0 from '@angular/core';\nimport { Directive, Optional, Injectable, SimpleChange, TemplateRef, Component, ChangeDetectionStrategy, Input, ContentChild, ElementRef, ViewChild, ViewChildren, EventEmitter, Output, ContentChildren, LOCALE_ID, Inject, isDevMode, InjectionToken, HostBinding, forwardRef, NgModule } from '@angular/core';\nimport { isDocumentAvailable, shouldShowValidationUI, ResizeSensorComponent, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';\nimport * as i3 from '@progress/kendo-angular-intl';\nimport * as i4 from '@progress/kendo-angular-l10n';\nimport { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';\nimport { DateCategoryAxis, DateValueAxis, InstanceObserver, chartBaseTheme, Chart, StockChart, Sparkline, Sankey, createSankeyData } from '@progress/kendo-charts';\nimport { exportImage, exportSVG } from '@progress/kendo-drawing';\nimport { validatePackage } from '@progress/kendo-licensing';\nimport { Subject, BehaviorSubject, combineLatest, Subscription } from 'rxjs';\nimport { auditTime, tap } from 'rxjs/operators';\nimport * as i1 from '@progress/kendo-angular-popup';\nimport { PopupService, POPUP_CONTAINER } from '@progress/kendo-angular-popup';\nimport { NgStyle, NgFor, NgClass, NgIf, NgTemplateOutlet } from '@angular/common';\nimport { BreadCrumbComponent } from '@progress/kendo-angular-navigation';\nimport { homeIcon, arrowRightIcon, arrowLeftIcon } from '@progress/kendo-svg-icons';\nimport { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';\nimport { getter } from '@progress/kendo-common';\n\nconst dateCategoryAxisFormats = DateCategoryAxis.prototype.options.labels.dateFormats;\nconst dateValueAxisFormats = DateValueAxis.prototype.options.labels.dateFormats;\nconst dateFormats = {\n milliseconds: \"HH:mm:ss.SSS\",\n seconds: { time: 'medium' },\n minutes: { time: 'short' },\n hours: { time: 'short' },\n days: { skeleton: 'Md' },\n weeks: { skeleton: 'Md' },\n months: { skeleton: 'yyMMM' },\n years: { skeleton: 'y' }\n};\nObject.assign(dateCategoryAxisFormats, dateFormats);\nObject.assign(dateValueAxisFormats, dateFormats);\n\n/**\n * A directive which selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [Donut center template](slug:donut_seriestypes_charts#toc-using-the-center-template).\n */\nclass DonutCenterTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nDonutCenterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: DonutCenterTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nDonutCenterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: DonutCenterTemplateDirective, isStandalone: true, selector: \"[kendoChartDonutCenterTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: DonutCenterTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartDonutCenterTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * @hidden\n */\nclass ItemChange {\n constructor(sender, options) {\n this.sender = sender;\n this.options = options;\n }\n}\n/**\n * @hidden\n */\nclass CollectionService {\n constructor() {\n this.source = new Subject();\n this.onItemChange$ = this.source.asObservable();\n }\n notify(change) {\n this.source.next(change);\n }\n}\nCollectionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\nCollectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionService, decorators: [{\n type: Injectable\n }], ctorParameters: function () { return []; } });\n\n/**\n * @hidden\n */\nconst THROTTLE_MS = 1000 / 60;\n/**\n * @hidden\n */\nclass Change {\n constructor(key, value) {\n this.key = key;\n this.value = value;\n }\n}\n/**\n * @hidden\n */\nclass ConfigurationService {\n constructor(ngZone) {\n this.ngZone = ngZone;\n this.store = {};\n this.source = new BehaviorSubject({});\n this.initSource();\n }\n initSource() {\n this.onFastChange$ = this.source.asObservable();\n this.onChange$ = this.onFastChange$.pipe(auditTime(THROTTLE_MS));\n }\n push(store) {\n this.store = store;\n this.next();\n }\n notify(change) {\n this.set(change.key, change.value);\n this.next();\n }\n set(field, value) {\n let store = this.store;\n const parts = field.split('.');\n let key = parts.shift();\n while (parts.length > 0) {\n store = store[key] = store[key] || {};\n key = parts.shift();\n }\n store[key] = value;\n }\n next() {\n this.ngZone.runOutsideAngular(() => {\n this.source.next(this.store);\n });\n }\n}\nConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ConfigurationService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });\nConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ConfigurationService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ConfigurationService, decorators: [{\n type: Injectable\n }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });\n\n/**\n * @hidden\n */\nfunction copyChanges(changes, options) {\n for (const propertyName in changes) {\n if (!Object.hasOwnProperty.call(changes, propertyName)) {\n continue;\n }\n const value = changes[propertyName].currentValue;\n if (value === undefined) {\n delete options[propertyName];\n }\n else {\n options[propertyName] = value;\n }\n }\n}\n\n/**\n * @hidden\n */\nfunction toSimpleChanges(changes) {\n const result = {};\n for (const propertyName in changes) {\n if (!Object.hasOwnProperty.call(changes, propertyName)) {\n continue;\n }\n result[propertyName] = new SimpleChange(null, changes[propertyName], false);\n }\n return result;\n}\n\n/**\n * @hidden\n */\nclass CollectionItemComponent {\n constructor(configurationService, collectionService) {\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.options = {};\n this.hidden = false;\n this.subscription = configurationService.onFastChange$.subscribe(store => {\n this.options = store;\n this.notify();\n });\n }\n ngOnChanges(changes) {\n const store = this.configurationService.store;\n copyChanges(changes, store);\n this.configurationService.push(store);\n }\n /**\n * Updates the component fields with the specified values and refreshes the Chart.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * item.notifyChanges({ visible: true });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n ngOnDestroy() {\n this.subscription.unsubscribe();\n }\n notify() {\n if (!this.collectionService) {\n return;\n }\n this.collectionService.notify(new ItemChange(this, this.options));\n }\n}\nCollectionItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Directive });\nCollectionItemComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CollectionItemComponent, usesOnChanges: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionItemComponent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; } });\n\n/**\n * @hidden\n */\nclass SettingsComponent {\n constructor(configKey, configurationService) {\n this.configKey = configKey;\n this.configurationService = configurationService;\n this.store = {};\n if (configKey === undefined) {\n throw new Error('Configuration key not set');\n }\n }\n ngOnDestroy() {\n this.store = undefined;\n this.notify();\n }\n ngOnChanges(changes) {\n copyChanges(changes, this.store);\n this.notify();\n }\n /**\n * Updates the component fields with the specified values and refreshes the Chart.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * item.notifyChanges({ visible: true });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n markAsVisible() {\n this.store.visible = true;\n this.notify();\n }\n notify() {\n this.configurationService.notify(new Change(this.configKey, this.store));\n }\n}\nSettingsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SettingsComponent, deps: \"invalid\", target: i0.ɵɵFactoryTarget.Directive });\nSettingsComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SettingsComponent, usesOnChanges: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SettingsComponent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }]; } });\n\n/**\n * The configuration options of the Chart series tooltip\n * ([see example]({% slug tooltips_chart_charts %})).\n */\nclass SeriesTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n get seriesTooltipTemplateRef() {\n return this.seriesTooltipTemplate;\n }\n}\nSeriesTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTooltipComponent, isStandalone: true, selector: \"kendo-chart-series-item-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, queries: [{ propertyName: \"seriesTooltipTemplate\", first: true, predicate: TemplateRef, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }], seriesTooltipTemplate: [{\n type: ContentChild,\n args: [TemplateRef, { static: false }]\n }] } });\n\n/**\n * Represents the series [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for creating nested\n * [Drilldown](slug:drilldown_chart_charts) series.\n *\n * When the user clicks on a data point with drilldown data,\n * the Chart will create a new series based on this template.\n *\n * The template context is passes through the following fields:\n * - `drilldownValue`—The drilldown field value.\n * - `point`—The series point to drill down to.\n * - `series`—The series to drill down to.\n */\nclass SeriesDrilldownTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSeriesDrilldownTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDrilldownTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSeriesDrilldownTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDrilldownTemplateDirective, isStandalone: true, selector: \"[kendoChartDrilldownSeries]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDrilldownTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartDrilldownSeries]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\nconst toggle = (flag) => flag === undefined ? false : !flag;\n/**\n * The configuration component for a series item.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n /**\n * Toggles the series visibility and updates the parent Chart\n * without animated transitions.\n */\n toggleVisibility() {\n this.options.visible = toggle(this.options.visible);\n this.notify();\n }\n /**\n * Toggles the visibility of a point with the given index.\n * Applicable for the Pie, Donut, Funnel and Pyramid series.\n *\n * @param pointIndex - The zero-based index of the point to toggle.\n */\n togglePointVisibility(pointIndex) {\n const pv = this.options.pointVisibility = this.options.pointVisibility || {};\n pv[pointIndex] = toggle(pv[pointIndex]);\n this.notify();\n }\n get seriesTooltipTemplateRef() {\n if (this.seriesTooltip) {\n return this.seriesTooltip.seriesTooltipTemplateRef;\n }\n }\n}\nSeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesItemComponent, isStandalone: true, 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\", trendline: \"trendline\", for: \"for\", legendItem: \"legendItem\", 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 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-series-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { aggregate: [{\n type: Input\n }], autoFit: [{\n type: Input\n }], axis: [{\n type: Input\n }], border: [{\n type: Input\n }], categoryAxis: [{\n type: Input\n }], categoryField: [{\n type: Input\n }], closeField: [{\n type: Input\n }], color: [{\n type: Input\n }], colorField: [{\n type: Input\n }], connectors: [{\n type: Input\n }], currentField: [{\n type: Input\n }], dashType: [{\n type: Input\n }], data: [{\n type: Input\n }], downColor: [{\n type: Input\n }], downColorField: [{\n type: Input\n }], drilldownField: [{\n type: Input\n }], dynamicHeight: [{\n type: Input\n }], dynamicSlope: [{\n type: Input\n }], errorHighField: [{\n type: Input\n }], errorLowField: [{\n type: Input\n }], explodeField: [{\n type: Input\n }], field: [{\n type: Input\n }], fromField: [{\n type: Input\n }], gap: [{\n type: Input\n }], highField: [{\n type: Input\n }], holeSize: [{\n type: Input\n }], line: [{\n type: Input\n }], lowField: [{\n type: Input\n }], lowerField: [{\n type: Input\n }], margin: [{\n type: Input\n }], maxSize: [{\n type: Input\n }], mean: [{\n type: Input\n }], meanField: [{\n type: Input\n }], median: [{\n type: Input\n }], medianField: [{\n type: Input\n }], minSize: [{\n type: Input\n }], missingValues: [{\n type: Input\n }], name: [{\n type: Input\n }], neckRatio: [{\n type: Input\n }], negativeColor: [{\n type: Input\n }], negativeValues: [{\n type: Input\n }], noteTextField: [{\n type: Input\n }], opacity: [{\n type: Input\n }], openField: [{\n type: Input\n }], outliersField: [{\n type: Input\n }], overlay: [{\n type: Input\n }], padding: [{\n type: Input\n }], q1Field: [{\n type: Input\n }], q3Field: [{\n type: Input\n }], segmentSpacing: [{\n type: Input\n }], size: [{\n type: Input\n }], sizeField: [{\n type: Input\n }], spacing: [{\n type: Input\n }], stack: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], style: [{\n type: Input\n }], summaryField: [{\n type: Input\n }], target: [{\n type: Input\n }], toField: [{\n type: Input\n }], type: [{\n type: Input\n }], upperField: [{\n type: Input\n }], visible: [{\n type: Input\n }], visibleInLegend: [{\n type: Input\n }], visibleInLegendField: [{\n type: Input\n }], visual: [{\n type: Input\n }], width: [{\n type: Input\n }], whiskers: [{\n type: Input\n }], xAxis: [{\n type: Input\n }], xErrorHighField: [{\n type: Input\n }], xErrorLowField: [{\n type: Input\n }], xField: [{\n type: Input\n }], yAxis: [{\n type: Input\n }], yErrorHighField: [{\n type: Input\n }], yErrorLowField: [{\n type: Input\n }], yField: [{\n type: Input\n }], zIndex: [{\n type: Input\n }], trendline: [{\n type: Input\n }], for: [{\n type: Input\n }], legendItem: [{\n type: Input\n }], errorBars: [{\n type: Input\n }], extremes: [{\n type: Input\n }], highlight: [{\n type: Input\n }], labels: [{\n type: Input\n }], markers: [{\n type: Input\n }], notes: [{\n type: Input\n }], outliers: [{\n type: Input\n }], tooltip: [{\n type: Input\n }], seriesTooltip: [{\n type: ContentChild,\n args: [SeriesTooltipComponent, { static: false }]\n }], drilldownTemplate: [{\n type: ContentChild,\n args: [SeriesDrilldownTemplateDirective, { static: false }]\n }] } });\n\nconst POSITION_MODE = 'absolute';\nconst COLLISION = { horizontal: \"fit\", vertical: \"fit\" };\n/**\n * @hidden\n */\nclass BaseTooltip {\n constructor(popupService, localizationService) {\n this.popupService = popupService;\n this.localizationService = localizationService;\n this.style = {};\n this.popupRef = null;\n }\n get active() {\n return this.popupRef !== null;\n }\n show(e) {\n const align = e.anchor.align;\n const offset = this.position(e.anchor.point);\n this.style = e.style;\n if (!this.popupRef) {\n this.popupRef = this.popupService.open(Object.assign({\n offset: offset,\n popupAlign: align,\n animate: this.animate,\n content: this.templateRef,\n collision: COLLISION,\n positionMode: POSITION_MODE\n }, this.popupSettings));\n if (this.localizationService.rtl) {\n this.popupRef.popupElement.setAttribute('dir', 'rtl');\n }\n this.onInit();\n }\n else {\n const popup = this.popupRef.popup.instance;\n popup.offset = offset;\n popup.popupAlign = align;\n }\n }\n onInit() {\n /* noop */\n }\n hide() {\n if (this.popupRef) {\n this.popupRef.close();\n this.popupRef = null;\n }\n }\n ngOnDestroy() {\n this.hide();\n }\n position(offset) {\n if (!this.popupSettings || !this.popupSettings.appendTo) {\n return offset;\n }\n const appendTo = this.popupSettings.appendTo.element.nativeElement;\n const bbox = appendTo.getBoundingClientRect();\n const { scrollLeft, scrollTop } = this.scrollOffset(appendTo);\n return {\n left: offset.left - bbox.left - scrollLeft,\n top: offset.top - bbox.top - scrollTop\n };\n }\n scrollOffset(element) {\n if (!element) {\n return null;\n }\n let scrollLeft = element.scrollLeft;\n let scrollTop = element.scrollTop;\n let parent = element.parentElement;\n while (parent) {\n scrollLeft += parent.scrollLeft;\n scrollTop += parent.scrollTop;\n parent = parent.parentElement;\n }\n return { scrollLeft, scrollTop };\n }\n}\nBaseTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseTooltip, deps: [{ token: i1.PopupService }, { token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });\nBaseTooltip.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: BaseTooltip, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseTooltip, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: i1.PopupService }, { type: i4.LocalizationService }]; } });\n\n/**\n * @hidden\n */\nfunction bodyFactory() {\n if (isDocumentAvailable()) {\n return new ElementRef(document.body);\n }\n}\n\n/**\n * @hidden\n */\nclass CrosshairTooltipComponent extends BaseTooltip {\n constructor(popupService, localizationService) {\n super(popupService, localizationService);\n this.animate = false;\n }\n show(e) {\n super.show(e);\n this.value = e.value;\n this.popupRef.popup.changeDetectorRef.detectChanges();\n }\n}\nCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipComponent, deps: [{ token: i1.PopupService }, { token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });\nCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-crosshair-tooltip\", inputs: { key: \"key\", popupSettings: \"popupSettings\" }, providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }], viewQueries: [{ propertyName: \"templateRef\", first: true, predicate: [\"content\"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `\n \n
\n {{ value }}\n
\n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }],\n selector: 'kendo-chart-crosshair-tooltip',\n template: `\n \n
\n {{ value }}\n
\n
\n `,\n standalone: true,\n imports: [NgStyle]\n }]\n }], ctorParameters: function () { return [{ type: i1.PopupService }, { type: i4.LocalizationService }]; }, propDecorators: { templateRef: [{\n type: ViewChild,\n args: ['content', { static: true }]\n }], key: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }] } });\n\nconst AXES = [\"categoryAxis\", \"valueAxis\", \"xAxis\", \"yAxis\"];\n/**\n * @hidden\n */\nclass CrosshairTooltipsContainerComponent {\n constructor() {\n this.tooltipKeys = [];\n this.tooltipsMap = {};\n }\n show(e) {\n const tooltipComponents = this.crossahirTooltipComponents.toArray();\n const axisName = e.axisName;\n const axisIndex = e.axisIndex;\n for (let idx = 0; idx < tooltipComponents.length; idx++) {\n if (tooltipComponents[idx].key === axisName + axisIndex) {\n tooltipComponents[idx].show(e);\n break;\n }\n }\n }\n hide() {\n const tooltipComponents = this.crossahirTooltipComponents.toArray();\n for (let idx = 0; idx < tooltipComponents.length; idx++) {\n tooltipComponents[idx].hide();\n }\n }\n get active() {\n return this.tooltipKeys.length > 0;\n }\n createCrosshairTooltips(options) {\n const newMap = this.mapTooltips(options);\n const map = this.tooltipsMap;\n for (const key in map) {\n if (!newMap[key]) {\n this.removeTooltip(key);\n delete map[key];\n }\n }\n for (const key in newMap) {\n if (!map[key]) {\n map[key] = newMap[key];\n this.tooltipKeys.push(key);\n }\n }\n }\n removeTooltip(key) {\n const keys = this.tooltipKeys;\n for (let idx = 0; idx < keys.length; idx++) {\n if (keys[idx] === key) {\n keys.splice(idx, 1);\n break;\n }\n }\n }\n mapTooltips(options) {\n const map = {};\n for (let idx = 0; idx < AXES.length; idx++) {\n const tooltips = this.axesCrosshairTooltipOptions(options, AXES[idx]);\n for (let tooltipIdx = 0; tooltipIdx < tooltips.length; tooltipIdx++) {\n const tooltip = tooltips[tooltipIdx];\n map[tooltip.name + tooltip.index] = tooltip;\n }\n }\n return map;\n }\n axesCrosshairTooltipOptions(options, name) {\n const result = [];\n if (options[name]) {\n const axes = [].concat(options[name]);\n for (let idx = 0; idx < axes.length; idx++) {\n const tooltip = (axes[idx].crosshair || {}).tooltip;\n if (tooltip && tooltip.visible) {\n result.push({\n index: idx,\n name: name\n });\n }\n }\n }\n return result;\n }\n}\nCrosshairTooltipsContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipsContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });\nCrosshairTooltipsContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CrosshairTooltipsContainerComponent, isStandalone: true, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: { popupSettings: \"popupSettings\" }, viewQueries: [{ propertyName: \"crossahirTooltipComponents\", predicate: CrosshairTooltipComponent, descendants: true }], ngImport: i0, template: `\n \n \n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgFor, selector: \"[ngFor][ngForOf]\", inputs: [\"ngForOf\", \"ngForTrackBy\", \"ngForTemplate\"] }, { kind: \"component\", type: CrosshairTooltipComponent, selector: \"kendo-chart-crosshair-tooltip\", inputs: [\"key\", \"popupSettings\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CrosshairTooltipsContainerComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'kendo-chart-crosshair-tooltips-container',\n template: `\n \n \n `,\n standalone: true,\n imports: [NgFor, CrosshairTooltipComponent]\n }]\n }], propDecorators: { popupSettings: [{\n type: Input\n }], crossahirTooltipComponents: [{\n type: ViewChildren,\n args: [CrosshairTooltipComponent]\n }] } });\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [series tooltip](slug:tooltips_chart_charts#toc-specifying-a-template).\n * The following context fields are frequently utilized:\n * - `let-category=\"category\"`—The category name.\n * - `let-dataItem=\"dataItem\"`—The original data item used to construct the point. It will be `null` if binding to an array.\n * - `let-series=\"series\"`—The data series.\n * - `let-value=\"value\"`—The value of the point (either a number or an object).\n * For the full list of available fields, refer to the [`TooltipTemplatePoint`](slug:api_charts_tooltiptemplatepoint).\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * Value is {{value}}\n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * }\n *\n * ```\n */\nclass SeriesTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSeriesTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSeriesTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTooltipTemplateDirective, isStandalone: true, selector: \"[kendoChartSeriesTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartSeriesTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [shared series tooltip](slug:tooltips_chart_charts#toc-shared-tooltip-customization).\n * The available fields in the template context are:\n * - `let-points=\"points\"`—An array of the [`TooltipTemplatePoints`](slug:api_charts_tooltiptemplatepoint) category.\n * - `let-category=\"category\"`—The category name.\n * - `let-categoryText=\"categoryText\"`—The category name as text.\n * - `let-nameColumn=\"nameColumn\"`—Returns a Boolean [`value`](slug:api_charts_seriesitemcomponent#toc-name) indicating whether the name property of the `SeriesItemComponent` is defined.\n * - `let-colorMarker=\"colorMarker\"`—Returns a Boolean value indicating whether one or more series colors are specified in the Chart. If the Chart contains only one `SeriesItemComponent`, the context field will return `false`.\n * - `let-colSpan=\"colSpan\"`—Specifies the number of columns covered by the tooltip. The default value is `1` and increases by `1` if `nameColumn` and `colorMarker` are set to `true`.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n *
{{ category }}
\n *
\n * {{ point.series.name }} : {{ point.value }}\n *
\n *
\n *
\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n *
\n * `\n * })\n * class AppComponent {\n * }\n *\n * ```\n */\nclass SharedTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSharedTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SharedTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSharedTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SharedTooltipTemplateDirective, isStandalone: true, selector: \"[kendoChartSharedTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SharedTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoChartSharedTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * The point that is passed to the tooltip template.\n */\nclass TooltipTemplatePoint {\n /**\n * @hidden\n */\n constructor(point, format, template) {\n this.value = point.value;\n this.category = point.category;\n this.categoryIndex = point.categoryIx;\n this.series = point.series;\n this.dataItem = point.dataItem;\n this.percentage = point.percentage;\n this.runningTotal = point.runningTotal;\n this.total = point.total;\n this.low = point.low;\n this.high = point.high;\n this.xLow = point.xLow;\n this.xHigh = point.xHigh;\n this.yLow = point.yLow;\n this.yHigh = point.yHigh;\n this.template = template;\n this.point = point;\n this.format = format;\n }\n /**\n * @hidden\n */\n get formattedValue() {\n return this.format ? this.point.formatValue(this.format) : String(this.value);\n }\n}\n\n/**\n * @hidden\n */\nfunction hasParent(element, parent) {\n let current = element;\n while (current && current !== parent) {\n current = current.parentNode;\n }\n return current ? true : false;\n}\n\n/**\n * @hidden\n */\nclass TooltipTemplateService {\n setTemplate(template) {\n this.template = template;\n }\n getTemplate(seriesIndex) {\n if (this.seriesTemplates && this.seriesTemplates[seriesIndex]) {\n return this.seriesTemplates[seriesIndex];\n }\n return this.template;\n }\n setSeriesTemplates(seriesTemplates) {\n this.seriesTemplates = seriesTemplates;\n }\n setSharedTemplate(sharedTemplate) {\n this.sharedTemplate = sharedTemplate;\n }\n getSharedTemplate() {\n return this.sharedTemplate;\n }\n}\nTooltipTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\nTooltipTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipTemplateService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipTemplateService, decorators: [{\n type: Injectable\n }] });\n\nconst SHARED_TOOLTIP_CLASS = 'k-chart-shared-tooltip';\nconst TOOLTIP_CLASS = \"k-chart-tooltip\";\n/**\n * @hidden\n */\nclass TooltipPopupComponent extends BaseTooltip {\n constructor(popupService, templateService, localizationService, ngZone) {\n super(popupService, localizationService);\n this.popupService = popupService;\n this.templateService = templateService;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.seriesTooltipContext = {};\n this.seriesSharedTooltipContext = {};\n this.animate = true;\n this.wrapperClass = 'k-chart-tooltip-wrapper';\n this.leave = new EventEmitter();\n this.popupClasses = {};\n }\n show(e) {\n this.shared = e.shared;\n this.popupClasses = Object.assign({\n [SHARED_TOOLTIP_CLASS]: e.shared,\n [TOOLTIP_CLASS]: true,\n [e.className]: !!e.className\n }, this.classNames);\n if (!e.shared) {\n this.seriesTooltipContext = new TooltipTemplatePoint(e.point, e.format);\n this.seriesTooltipTemplateRef = this.pointTemplateRef(e.point);\n }\n else {\n this.seriesSharedTooltipTemplateRef = this.templateService.getSharedTemplate()\n || this.defaultSharedTooltipTemplate.templateRef;\n this.seriesSharedTooltipContext = this.sharedTemplateContext(e);\n }\n super.show(e);\n }\n containsElement(element) {\n if (this.popupRef) {\n return hasParent(element, this.popupRef.popupElement);\n }\n }\n sharedTemplateContext(e) {\n const points = e.points;\n const nameColumn = points.filter((point) => typeof point.series.name !== 'undefined').length > 0;\n const colorMarker = e.series.length > 1;\n let colspan = 1;\n if (nameColumn) {\n colspan++;\n }\n if (colorMarker) {\n colspan++;\n }\n return {\n category: e.category,\n categoryText: e.categoryText,\n colorMarker: colorMarker,\n colspan: colspan,\n nameColumn: nameColumn,\n points: this.wrapPoints(e.points, e.format)\n };\n }\n pointTemplateRef(point) {\n return this.templateService.getTemplate(point.series.index) || this.defaultSeriesTooltipTemplate.templateRef;\n }\n wrapPoints(points, format) {\n const result = [];\n for (let idx = 0; idx < points.length; idx++) {\n const point = points[idx];\n const template = this.pointTemplateRef(point);\n const pointFormat = ((point.options || {}).tooltip || {}).format || format;\n result.push(new TooltipTemplatePoint(point, pointFormat, template));\n }\n return result;\n }\n onInit() {\n this.ngZone.runOutsideAngular(() => {\n this.mouseleaveSubscription = this.popupRef.popupElement.addEventListener('mouseleave', (args) => {\n this.leave.emit(args);\n });\n });\n this.popupRef.popupElement.className += ` ${this.wrapperClass}`;\n }\n hide() {\n if (this.mouseleaveSubscription) {\n this.mouseleaveSubscription();\n this.mouseleaveSubscription = null;\n }\n super.hide();\n }\n}\nTooltipPopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipPopupComponent, deps: [{ token: i1.PopupService }, { token: TooltipTemplateService }, { token: i4.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });\nTooltipPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: TooltipPopupComponent, isStandalone: true, selector: \"kendo-chart-tooltip-popup\", inputs: { animate: \"animate\", classNames: \"classNames\", popupSettings: \"popupSettings\", wrapperClass: \"wrapperClass\" }, outputs: { leave: \"leave\" }, providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }], viewQueries: [{ propertyName: \"defaultSeriesTooltipTemplate\", first: true, predicate: SeriesTooltipTemplateDirective, descendants: true }, { propertyName: \"defaultSharedTooltipTemplate\", first: true, predicate: SharedTooltipTemplateDirective, descendants: true }, { propertyName: \"templateRef\", first: true, predicate: [\"content\"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `\n \n
\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n \n \n \n
{{ categoryText }}
\n {{ point.series.name }}\n  \n \n \n \n
\n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgClass, selector: \"[ngClass]\", inputs: [\"class\", \"ngClass\"] }, { kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"directive\", type: NgTemplateOutlet, selector: \"[ngTemplateOutlet]\", inputs: [\"ngTemplateOutletContext\", \"ngTemplateOutlet\", \"ngTemplateOutletInjector\"] }, { kind: \"directive\", type: SeriesTooltipTemplateDirective, selector: \"[kendoChartSeriesTooltipTemplate]\" }, { kind: \"directive\", type: SharedTooltipTemplateDirective, selector: \"[kendoChartSharedTooltipTemplate]\" }, { kind: \"directive\", type: NgFor, selector: \"[ngFor][ngForOf]\", inputs: [\"ngForOf\", \"ngForTrackBy\", \"ngForTemplate\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipPopupComponent, decorators: [{\n type: Component,\n args: [{\n providers: [PopupService, {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory\n }],\n selector: 'kendo-chart-tooltip-popup',\n template: `\n \n
\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n \n \n \n
{{ categoryText }}
\n {{ point.series.name }}\n  \n \n \n \n
\n
\n `,\n standalone: true,\n imports: [NgClass, NgStyle, NgIf, NgTemplateOutlet, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, NgFor]\n }]\n }], ctorParameters: function () { return [{ type: i1.PopupService }, { type: TooltipTemplateService }, { type: i4.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { defaultSeriesTooltipTemplate: [{\n type: ViewChild,\n args: [SeriesTooltipTemplateDirective, { static: false }]\n }], defaultSharedTooltipTemplate: [{\n type: ViewChild,\n args: [SharedTooltipTemplateDirective, { static: false }]\n }], templateRef: [{\n type: ViewChild,\n args: ['content', { static: true }]\n }], animate: [{\n type: Input\n }], classNames: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], wrapperClass: [{\n type: Input\n }], leave: [{\n type: Output\n }] } });\n\n/**\n * @hidden\n */\nclass ChartInstanceObserver extends InstanceObserver {\n constructor(instance) {\n super(instance);\n this.handlerMap = {\n hideTooltip: 'onHideTooltip',\n legendItemClick: 'onLegendItemClick',\n render: 'onRender',\n showTooltip: 'onShowTooltip',\n init: 'onInit'\n };\n }\n}\n\n/**\n * Fallback theme in case the Theme Service fails\n * to read the variables from the main theme.\n *\n * @hidden\n */\nconst chartDefaultTheme = () => Object.assign({}, chartBaseTheme(), {\n axisDefaults: {\n crosshair: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n labels: {\n color: 'rgb(101, 101, 101)',\n font: '12px serif'\n },\n line: {\n color: 'rgba(0, 0, 0, 0.08)'\n },\n majorGridLines: {\n color: 'rgba(0, 0, 0, 0.08)'\n },\n minorGridLines: {\n color: 'rgba(0, 0, 0, 0.04)'\n },\n notes: {\n icon: {\n background: 'rgba(0, 0, 0, 0.5)',\n border: {\n color: 'rgba(0, 0, 0, 0.5)'\n }\n },\n line: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n label: {\n font: '14px serif'\n }\n },\n title: {\n color: 'rgb(101, 101, 101)',\n font: '14px serif'\n }\n },\n chartArea: {\n background: 'rgb(255, 255, 255)'\n },\n legend: {\n inactiveItems: {\n labels: {\n color: 'rgba(102, 102, 102, 0.5)'\n },\n markers: {\n color: 'rgba(102, 102, 102, 0.5)'\n }\n },\n labels: {\n color: 'rgb(101, 101, 101)',\n font: '14px serif'\n }\n },\n seriesDefaults: {\n boxPlot: {\n downColor: 'rgba(0, 0, 0, 0.08)',\n mean: {\n color: 'rgb(246, 246, 246)'\n },\n median: {\n color: 'rgb(246, 246, 246)'\n },\n whiskers: {\n color: 'rgb(255, 99, 88)'\n }\n },\n bullet: {\n target: {\n color: 'rgb(101, 101, 101)'\n }\n },\n candlestick: {\n downColor: 'rgb(101, 101, 101)',\n line: {\n color: 'rgb(101, 101, 101)'\n }\n },\n errorBars: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n horizontalWaterfall: {\n line: {\n color: 'rgba(0, 0, 0, 0.08)'\n }\n },\n icon: {\n border: {\n color: 'rgba(0, 0, 0, 0.08)'\n }\n },\n labels: {\n background: 'rgb(255, 255, 255)',\n color: 'rgb(101, 101, 101)',\n opacity: 0.8,\n font: '12px serif'\n },\n notes: {\n icon: {\n background: 'rgba(0, 0, 0, 0.5)',\n border: {\n color: 'rgba(0, 0, 0, 0.5)'\n }\n },\n line: {\n color: 'rgba(0, 0, 0, 0.5)'\n },\n label: {\n font: '14px serif'\n }\n },\n overlay: {\n gradient: \"none\"\n },\n verticalBoxPlot: {\n downColor: 'rgba(0, 0, 0, 0.08)',\n mean: {\n color: 'rgb(246, 246, 246)'\n },\n median: {\n color: 'rgb(246, 246, 246)'\n },\n whiskers: {\n color: 'rgb(255, 99, 88)'\n }\n },\n verticalBullet: {\n target: {\n color: 'rgb(101, 101, 101)'\n }\n },\n waterfall: {\n line: {\n color: 'rgba(0, 0, 0, 0.08)'\n }\n },\n area: {\n opacity: 0.8\n }\n },\n title: {\n color: 'rgb(101, 101, 101)',\n font: '16px serif'\n },\n seriesColors: [\n 'rgb(255, 99, 88)',\n 'rgb(255, 210, 70)',\n 'rgb(120, 210, 55)',\n 'rgb(40, 180, 200)',\n 'rgb(45, 115, 245)',\n 'rgb(170, 70, 190)'\n ]\n});\n\nconst font = (style) => `${style.fontWeight} ${style.fontSize} ${style.fontFamily}`;\nconst computedBackgroundColor = (element) => window.getComputedStyle(element).backgroundColor;\nconst letterPos = (letter) => letter.toLowerCase().charCodeAt(0) - 'a'.charCodeAt(0);\nconst seriesPos = (name) => {\n const alpha = name.match(/series-([a-z])$/);\n if (alpha !== null) {\n return letterPos(alpha[1]);\n }\n const num = name.split('--series-')[1];\n return parseInt(num, 10) - 1;\n};\nconst SERIES_COLORS = 30;\nconst seriesTemplate = () => {\n let template = `\n
\n
\n
\n
\n
\n
\n `;\n for (let i = 0; i < SERIES_COLORS; i++) {\n template += `\n
`;\n }\n return template;\n};\nconst template = () => `\n
\n
\n
\n
\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n
\n ${seriesTemplate()}\n
\n`;\n/**\n * @hidden\n */\nclass ThemeService extends ConfigurationService {\n constructor(ngZone) {\n super(ngZone);\n this.loaded = false;\n }\n loadTheme() {\n if (this.loaded || !isDocumentAvailable()) {\n return;\n }\n if (!this.readTheme()) {\n this.readDefaultTheme();\n }\n this.loaded = true;\n this.next();\n }\n reset() {\n this.store = {};\n this.loaded = false;\n this.loadTheme();\n }\n readTheme() {\n this.createElement();\n const available = this.queryColor('primary') !==\n this.queryColor('primary-contrast');\n try {\n if (available) {\n this.push(chartBaseTheme());\n this.setColors();\n this.setFonts();\n this.setSeriesColors();\n }\n }\n finally {\n this.destroyElement();\n }\n return available;\n }\n readDefaultTheme() {\n this.push(chartDefaultTheme());\n }\n createElement() {\n const container = this.element = document.createElement('div');\n container.style.display = 'none';\n container.innerHTML = template();\n document.body.appendChild(container);\n }\n destroyElement() {\n if (this.element) {\n document.body.removeChild(this.element);\n this.element = undefined;\n }\n }\n setStyle(key, value) {\n this.set(key, value);\n }\n setColors() {\n this.mapColor('axisDefaults.crosshair.color', 'chart-crosshair-background');\n this.mapColor('axisDefaults.labels.color', 'normal-text-color');\n this.mapColor('axisDefaults.line.color', 'chart-major-lines');\n this.mapColor('axisDefaults.majorGridLines.color', 'chart-major-lines');\n this.mapColor('axisDefaults.minorGridLines.color', 'chart-minor-lines');\n this.mapColor('axisDefaults.notes.icon.background', 'chart-notes-background');\n this.mapColor('axisDefaults.notes.icon.border.color', 'chart-notes-border');\n this.mapColor('axisDefaults.notes.line.color', 'chart-notes-lines');\n this.mapColor('axisDefaults.title.color', 'normal-text-color');\n this.mapColor('chartArea.background', 'background');\n this.mapColor('legend.inactiveItems.labels.color', 'chart-inactive');\n this.mapColor('legend.inactiveItems.markers.color', 'chart-inactive');\n this.mapColor('legend.labels.color', 'normal-text-color');\n this.mapColor('legend.title.color', 'normal-text-color');\n this.mapColor('seriesDefaults.boxPlot.downColor', 'chart-major-lines');\n this.mapColor('seriesDefaults.boxPlot.mean.color', 'base');\n this.mapColor('seriesDefaults.boxPlot.median.color', 'base');\n this.mapColor('seriesDefaults.boxPlot.whiskers.color', 'primary');\n this.mapColor('seriesDefaults.bullet.target.color', 'normal-text-color');\n this.mapColor('seriesDefaults.candlestick.downColor', 'normal-text-color');\n this.mapColor('seriesDefaults.candlestick.line.color', 'normal-text-color');\n this.mapColor('seriesDefaults.errorBars.color', 'chart-error-bars-background');\n this.mapColor('seriesDefaults.horizontalWaterfall.line.color', 'chart-major-lines');\n this.mapColor('seriesDefaults.icon.border.color', 'chart-major-lines');\n this.mapColor('seriesDefaults.labels.background', 'background');\n this.mapColor('seriesDefaults.labels.color', 'normal-text-color');\n this.mapColor('seriesDefaults.notes.icon.background', 'chart-notes-background');\n this.mapColor('seriesDefaults.notes.icon.border.color', 'chart-notes-border');\n this.mapColor('seriesDefaults.notes.line.color', 'chart-notes-lines');\n this.mapColor('seriesDefaults.verticalBoxPlot.downColor', 'chart-major-lines');\n this.mapColor('seriesDefaults.verticalBoxPlot.mean.color', 'base');\n this.mapColor('seriesDefaults.verticalBoxPlot.median.color', 'base');\n this.mapColor('seriesDefaults.verticalBoxPlot.whiskers.color', 'primary');\n this.mapColor('seriesDefaults.verticalBullet.target.color', 'normal-text-color');\n this.mapColor('seriesDefaults.waterfall.line.color', 'chart-major-lines');\n this.mapColor('title.color', 'normal-text-color');\n this.mapColor('subtitle.color', 'normal-text-color');\n // Sankey diagram\n this.mapColor('labels.color', 'normal-text-color');\n this.mapColor('labels.stroke.color', 'background');\n // 'k-var--kendo-color-subtle' class does not contain the --kendo-color-subtle variable style\n const element = this.element.querySelector('.k-var--kendo-color-subtle');\n element.style.color = 'var(--kendo-color-subtle)';\n this.mapColor('links.color', 'kendo-color-subtle', 'color');\n const opacity = parseFloat(this.queryStyle('chart-area-opacity').opacity);\n if (!isNaN(opacity)) {\n this.setStyle('seriesDefaults.area.opacity', opacity);\n this.setStyle('seriesDefaults.radarArea.opacity', opacity);\n this.setStyle('seriesDefaults.verticalArea.opacity', opacity);\n this.setStyle('seriesDefaults.labels.opacity', opacity);\n }\n this.setInactiveOpacity(['area', 'verticalArea'], 'chart-area-inactive-opacity');\n this.setInactiveOpacity(['line', 'verticalLine'], 'chart-line-inactive-opacity');\n }\n setInactiveOpacity(seriesTypes, selector) {\n const inactiveOpacity = parseFloat(this.queryStyle(selector).opacity);\n if (!isNaN(inactiveOpacity) && inactiveOpacity < 1) {\n seriesTypes.forEach(type => this.setStyle(`seriesDefaults.${type}.highlight.inactiveOpacity`, inactiveOpacity));\n }\n }\n setFonts() {\n const defaultFont = font(this.queryStyle('chart-font'));\n const titleFont = font(this.queryStyle('chart-title-font'));\n const paneTitleFont = font(this.queryStyle('chart-pane-title-font'));\n const labelFont = font(this.queryStyle('chart-label-font'));\n this.setStyle('axisDefaults.labels.font', labelFont);\n this.setStyle('axisDefaults.notes.label.font', defaultFont);\n this.setStyle('axisDefaults.title.font', defaultFont);\n this.setStyle('legend.labels.font', defaultFont);\n this.setStyle('seriesDefaults.labels.font', labelFont);\n this.setStyle('seriesDefaults.notes.label.font', defaultFont);\n this.setStyle('title.font', titleFont);\n this.setStyle('subtitle.font', paneTitleFont);\n this.setStyle('paneDefaults.title.font', paneTitleFont);\n // Sankey diagram\n this.setStyle('labels.font', defaultFont);\n }\n setSeriesColors() {\n const element = this.element;\n const series = [].slice.call(element.querySelectorAll('.k-var--series div'));\n const unsetColor = computedBackgroundColor(element.querySelector('.k-var--series-unset'));\n const seriesColors = series.reduce((arr, el) => {\n const pos = seriesPos(el.className);\n const color = computedBackgroundColor(el);\n if (color !== unsetColor) {\n arr[pos] = color;\n }\n return arr;\n }, [] // Will populate the series colors in this array\n );\n this.setStyle('seriesColors', seriesColors);\n }\n mapColor(key, varName, styleKey = 'backgroundColor') {\n this.setStyle(key, this.queryStyle(varName)[styleKey]);\n }\n queryColor(varName) {\n return this.queryStyle(varName).backgroundColor;\n }\n queryStyle(varName) {\n const element = this.element.querySelector(`.k-var--${varName}`);\n return window.getComputedStyle(element);\n }\n}\nThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ThemeService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });\nThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ThemeService, providedIn: 'root' });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ThemeService, decorators: [{\n type: Injectable,\n args: [{\n providedIn: 'root'\n }]\n }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });\n\n/**\n * @hidden\n */\nclass BaseEvent {\n /**\n * @hidden\n */\n constructor(sender) {\n this.sender = sender;\n }\n}\nBaseEvent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseEvent, deps: \"invalid\", target: i0.ɵɵFactoryTarget.Directive });\nBaseEvent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: BaseEvent, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: BaseEvent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: undefined }]; } });\n\n/**\n * Arguments for the `axisLabelClick` event([see example](slug:events_chart)).\n */\nclass AxisLabelClickEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.dataItem = e.dataItem;\n this.index = e.index;\n this.text = e.text;\n this.value = e.value;\n }\n}\n\n/**\n * @hidden\n */\nclass PreventableEvent extends BaseEvent {\n constructor() {\n super(...arguments);\n this.prevented = false;\n }\n /**\n * Prevents the default action for a specified event.\n * In this way, the source component suppresses\n * the built-in behavior that follows the event.\n */\n preventDefault() {\n this.prevented = true;\n }\n /**\n * Returns `true` if the event was prevented\n * by any of its subscribers.\n *\n * @returns `true` if the default action was prevented.\n * Otherwise, returns `false`.\n */\n isDefaultPrevented() {\n return this.prevented;\n }\n}\nPreventableEvent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PreventableEvent, deps: null, target: i0.ɵɵFactoryTarget.Directive });\nPreventableEvent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PreventableEvent, usesInheritance: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PreventableEvent, decorators: [{\n type: Directive\n }] });\n\n/**\n * Arguments for the `drag` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass DragEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `dragEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass DragEndEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `dragStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass DragStartEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * @hidden\n */\nclass LegendEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.series = e.series;\n this.seriesIndex = e.seriesIndex;\n this.pointIndex = e.pointIndex;\n this.text = e.text;\n }\n}\n\n/**\n * Arguments for the `legendItemHover` event([see example](slug:events_chart)).\n */\nclass LegendItemHoverEvent extends LegendEvent {\n /**\n * If called, the series highlight is not shown as a result of hovering over the legend item.\n */\n preventDefault() {\n super.preventDefault();\n }\n}\n\n/* eslint-disable no-empty */\n/**\n * Arguments for the `legendItemLeave` event.\n */\nclass LegendItemLeaveEvent extends LegendEvent {\n /**\n * @hidden\n */\n preventDefault() {\n /* noop */\n }\n /**\n * @hidden\n */\n isDefaultPrevented() {\n return false;\n }\n}\n\n/**\n * @hidden\n */\nclass NoteEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.dataItem = e.dataItem;\n this.series = e.series;\n this.value = e.value;\n this.visual = e.visual;\n }\n}\n\n/**\n * Arguments for the `noteClick` event.\n */\nclass NoteClickEvent extends NoteEvent {\n}\n\n/**\n * Arguments for the `noteHover` event.\n */\nclass NoteHoverEvent extends NoteEvent {\n}\n\n/**\n * Arguments for the `noteLeave` event.\n */\nclass NoteLeaveEvent extends NoteEvent {\n}\n\n/**\n * Arguments for the `paneRender` event.\n */\nclass PaneRenderEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(args, sender) {\n super(sender);\n Object.assign(this, args);\n }\n}\n\n/**\n * Arguments for the `plotAreaClick` event([see example](slug:events_chart)).\n */\nclass PlotAreaClickEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.originalEvent = e.originalEvent;\n this.value = e.value;\n this.x = e.x;\n this.y = e.y;\n }\n}\n\n/**\n * Arguments for the `plotAreaHover` event([see example](slug:events_chart)).\n */\nclass PlotAreaHoverEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.originalEvent = e.originalEvent;\n this.value = e.value;\n this.x = e.x;\n this.y = e.y;\n }\n}\n\nclass PlotAreaLeaveEvent extends BaseEvent {\n}\n\n/**\n * Arguments for the `render` event([see example](slug:events_chart)).\n */\nclass RenderEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(_e, sender) {\n super(sender);\n }\n}\n\n/**\n * Arguments for the `select` event.\n */\nclass SelectEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n/**\n * Arguments for the `selectEnd` event.\n */\nclass SelectEndEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n/**\n * Arguments for the `selectStart` event.\n */\nclass SelectStartEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axis = e.axis;\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n/**\n * Arguments for the `seriesClick` event([see example](slug:events_chart)).\n */\nclass SeriesClickEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.dataItem = e.dataItem;\n this.originalEvent = e.originalEvent;\n this.percentage = e.percentage;\n this.point = e.point;\n this.series = e.series;\n this.stackValue = e.stackValue;\n this.value = e.value;\n }\n}\n\n/**\n * @hidden\n */\nclass SeriesEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.category = e.category;\n this.dataItem = e.dataItem;\n this.originalEvent = e.originalEvent;\n this.percentage = e.percentage;\n this.point = e.point;\n this.series = e.series;\n this.stackValue = e.stackValue;\n this.value = e.value;\n }\n}\n\n/**\n * Arguments for the `seriesHover` event([see example](slug:events_chart)).\n */\nclass SeriesHoverEvent extends SeriesEvent {\n}\n\n/**\n * Arguments for the `seriesOver` event.\n */\nclass SeriesOverEvent extends SeriesEvent {\n}\n\n/**\n * Arguments for the `seriesLeave` event.\n */\nclass SeriesLeaveEvent extends SeriesEvent {\n}\n\n/**\n * Arguments for the `zoom` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass ZoomEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.delta = e.delta;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `zoomEnd` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass ZoomEndEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the `zoomStart` event ([see example](slug:panzoom_chart_charts#toc-pan-and-zoom-events)).\n */\nclass ZoomStartEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.axisRanges = e.axisRanges;\n this.originalEvent = e.originalEvent;\n }\n}\n\nconst EVENT_MAP$2 = {\n axisLabelClick: AxisLabelClickEvent,\n drag: DragEvent,\n dragEnd: DragEndEvent,\n dragStart: DragStartEvent,\n legendItemHover: LegendItemHoverEvent,\n legendItemLeave: LegendItemLeaveEvent,\n noteClick: NoteClickEvent,\n noteHover: NoteHoverEvent,\n noteLeave: NoteLeaveEvent,\n paneRender: PaneRenderEvent,\n plotAreaClick: PlotAreaClickEvent,\n plotAreaHover: PlotAreaHoverEvent,\n plotAreaLeave: PlotAreaLeaveEvent,\n render: RenderEvent,\n select: SelectEvent,\n selectEnd: SelectEndEvent,\n selectStart: SelectStartEvent,\n seriesClick: SeriesClickEvent,\n seriesHover: SeriesHoverEvent,\n seriesOver: SeriesOverEvent,\n seriesLeave: SeriesLeaveEvent,\n zoom: ZoomEvent,\n zoomEnd: ZoomEndEvent,\n zoomStart: ZoomStartEvent\n};\n/**\n * @hidden\n */\nlet InstanceEventService$1 = class InstanceEventService {\n create(name, args, sender) {\n if (EVENT_MAP$2[name]) {\n return new EVENT_MAP$2[name](args, sender);\n }\n }\n};\n\n/**\n * Arguments for the `legendItemClick` event([see example](slug:events_chart)).\n */\nclass LegendItemClickEvent extends LegendEvent {\n /**\n * If called, the series visibility is not toggled as a result of clicking the legend item.\n */\n preventDefault() {\n super.preventDefault();\n }\n}\n\n/**\n * @hidden\n */\nconst packageMetadata = {\n name: '@progress/kendo-angular-charts',\n productName: 'Kendo UI for Angular',\n productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],\n publishDate: 1728372467,\n version: '16.11.0',\n licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'\n};\n\n/**\n * @hidden\n */\nclass CollectionComponent {\n constructor(configKey, configurationService, collectionService) {\n this.configKey = configKey;\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.items = [];\n this.subscription = collectionService.onItemChange$.subscribe(changes => this.processChanges(changes));\n }\n ngOnDestroy() {\n this.subscription.unsubscribe();\n }\n ngAfterContentInit() {\n this.readItems();\n this.children.changes.subscribe(() => this.readItems());\n }\n processChanges(changes) {\n if (!this.children) {\n return;\n }\n const index = this.children.toArray().filter(s => !s.hidden).indexOf(changes.sender);\n if (index < 0) {\n return;\n }\n this.items[index] = changes.options;\n this.change();\n }\n readItems() {\n this.items = this.children.filter(s => !s.hidden).map(s => s.options);\n this.change();\n }\n change() {\n this.configurationService.notify(new Change(this.configKey, this.items.length === 0 ? undefined : this.items));\n }\n}\nCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionComponent, deps: \"invalid\", target: i0.ɵɵFactoryTarget.Directive });\nCollectionComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CollectionComponent, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CollectionComponent, decorators: [{\n type: Directive\n }], ctorParameters: function () { return [{ type: undefined }, { type: ConfigurationService }, { type: CollectionService }]; } });\n\n/**\n * A collection of one or more series items. [See example](slug:series_chart_charts).\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesComponent extends CollectionComponent {\n constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {\n super('series', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.tooltipTemplateService = tooltipTemplateService;\n this.viewContainer = viewContainer;\n }\n ngAfterContentChecked() {\n this.readTooltipTemplates();\n }\n readTooltipTemplates() {\n const templates = this.children.map((item) => item.seriesTooltipTemplateRef);\n this.tooltipTemplateService.setSeriesTemplates(templates);\n }\n}\nSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });\nSeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesComponent, isStandalone: true, selector: \"kendo-chart-series\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: SeriesItemComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-series',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [SeriesItemComponent, { descendants: true }]\n }] } });\n\n/**\n * Arguments for the `drilldown` event.\n *\n * See [Drilldown Charts](slug:drilldown_chart_charts).\n */\nclass DrilldownEvent extends PreventableEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.value = e.value;\n this.point = e.point;\n this.series = e.series;\n }\n}\n\n/**\n * @hidden\n */\nfunction hasObservers(emitter) {\n return emitter.observers.length > 0;\n}\n\n/**\n * The root Chart component.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * public legendVisible: boolean = true;\n * public seriesVisible: boolean = true;\n *\n * public toggleSeries(): void {\n * this.seriesVisible = !this.seriesVisible;\n * }\n *\n * public toggleLegend(): void {\n * this.legendVisible = !this.legendVisible;\n * }\n * }\n *\n * ```\n */\nclass ChartComponent {\n constructor(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer) {\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.element = element;\n this.intl = intl;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.instanceEventService = instanceEventService;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n /**\n * Fires when the user clicks an axis label ([see example](slug:events_chart)).\n */\n this.axisLabelClick = new EventEmitter();\n /**\n * Fires as long as the user is dragging the Chart with the mouse or through swipe gestures.\n */\n this.drag = new EventEmitter();\n /**\n * Fires when the user stops dragging the Chart.\n */\n this.dragEnd = new EventEmitter();\n /**\n * Fires when the user starts dragging the Chart.\n */\n this.dragStart = new EventEmitter();\n /**\n * Fires when the user hovers over a legend item ([see example](slug:events_chart)).\n */\n this.legendItemHover = new EventEmitter();\n /**\n * Fires when the cursor leaves a legend item.\n */\n this.legendItemLeave = new EventEmitter();\n /**\n * Fires when the user clicks a note.\n */\n this.noteClick = new EventEmitter();\n /**\n * Fires when the user hovers over a note.\n */\n this.noteHover = new EventEmitter();\n /**\n * Fires when the cursor leaves a note.\n */\n this.noteLeave = new EventEmitter();\n /**\n * Fires when a pane is rendered because the Chart is rendered, performs panning or zooming, or is exported with different options.\n * The event is used to render custom visuals in the panes.\n */\n this.paneRender = new EventEmitter();\n /**\n * Fires when the user clicks the plot area ([see example](slug:events_chart)).\n * The `click` event is triggered by the `tap` and `contextmenu` events.\n * To distinguish between the original events, inspect the `e.originalEvent.type` field.\n */\n this.plotAreaClick = new EventEmitter();\n /**\n * Fires when the user hovers the plot area ([see example](slug:events_chart)).\n */\n this.plotAreaHover = new EventEmitter();\n /**\n * Fires when the cursor leaves the plot area.\n */\n this.plotAreaLeave = new EventEmitter();\n /**\n * Fires when the Chart is ready to render on screen ([see example](slug:events_chart)).\n * For example, you can use it to remove loading indicators.\n * Any changes made to the options are ignored.\n */\n this.render = new EventEmitter();\n /**\n * Fires when the user modifies the selection.\n *\n * The range units include a generic axis category index (0-based) and a date axis represented by a date instance.\n */\n this.select = new EventEmitter();\n /**\n * Fires when the user completes the modification of the selection.\n *\n * The range units include a generic axis category index (0-based) and a date axis represented by a date instance.\n */\n this.selectEnd = new EventEmitter();\n /**\n * Fires when the user starts modifying the axis selection.\n *\n * The range units include a generic axis category index (0-based) and a date axis represented by a date instance.\n */\n this.selectStart = new EventEmitter();\n /**\n * Fires when the user clicks the Chart series.\n *\n * The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_chart)).\n * To distinguish between the original events, inspect the `e.originalEvent.type` field.\n */\n this.seriesClick = new EventEmitter();\n /**\n * Fires when the user when the user wants to drill down on a specific point.\n */\n this.drilldown = new EventEmitter();\n /**\n * Fires when the user hovers the Chart series ([see example](slug:events_chart)).\n */\n this.seriesHover = new EventEmitter();\n /**\n * Fires when the cursor enters a series.\n */\n this.seriesOver = new EventEmitter();\n /**\n * Fires when the cursor leaves a series.\n */\n this.seriesLeave = new EventEmitter();\n /**\n * Fires as long as the user is zooming the Chart by using the mousewheel operation.\n */\n this.zoom = new EventEmitter();\n /**\n * Fires when the user stops zooming the Chart.\n */\n this.zoomEnd = new EventEmitter();\n /**\n * Fires when the user uses the mousewheel to zoom the Chart.\n */\n this.zoomStart = new EventEmitter();\n /**\n * Fires when a legend item is clicked before the selected series visibility is toggled.\n * Can be prevented.\n */\n this.legendItemClick = new EventEmitter();\n /**\n * Fires when the drill-down level has changed.\n */\n this.drilldownLevelChange = new EventEmitter();\n /**\n * Limits the automatic resizing of the Chart. Sets the maximum number of times per second\n * that the component redraws its content when the size of its container changes.\n * Defaults to `10`. To disable the automatic resizing, set it to `0`.\n *\n * @default 10\n */\n this.resizeRateLimit = 10;\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.theme = null;\n this.suppressTransitions = false;\n this.rtl = false;\n this.hostClasses = ['k-chart', 'k-widget'];\n this.drilldownState = [];\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n this.themeService.loadTheme();\n this.refreshWait();\n }\n /**\n * Gets or sets the current drill-down level for [Drilldown Charts](slug:drilldown_chart_charts).\n *\n * To return to a previous level, set the value to a number less than the current level.\n * To return to the root chart, set the value to 0.\n *\n * Setting the value to a number greater than the current level will have no effect.\n */\n get drilldownLevel() {\n return this.drilldownState.length;\n }\n set drilldownLevel(level) {\n const currentLevel = this.drilldownState.length;\n if (currentLevel <= level || !this.seriesComponents) {\n return;\n }\n const removed = this.drilldownState.slice(level);\n removed.forEach(view => view.destroy());\n this.drilldownState = this.drilldownState.slice(0, currentLevel - removed.length);\n this.seriesComponents.toArray().slice(-removed.length - 1).forEach(series => series.hidden = false);\n this.drilldownLevelChange.emit(level);\n }\n ngOnInit() {\n if (this.element) {\n this.hostClasses.forEach(name => {\n this.renderer.addClass(this.element.nativeElement, name);\n });\n this.renderer.setStyle(this.element.nativeElement, 'position', 'relative');\n }\n }\n ngAfterViewInit() {\n if (this.canRender) {\n this.ngZone.runOutsideAngular(() => {\n const chartMouseleave = this.renderer.listen(this.surfaceElement.nativeElement, 'mouseleave', this.chartMouseleave.bind(this));\n this.domSubscriptions = () => {\n chartMouseleave();\n };\n });\n }\n this.setDirection();\n this.subscriptions = this.intl.changes.subscribe(this.intlChange.bind(this));\n this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)));\n }\n onDrilldown(e) {\n const args = new DrilldownEvent(e, this);\n this.run(() => this.drilldown.emit(args));\n if (args.isDefaultPrevented()) {\n return;\n }\n const seriesCollection = this.seriesCollectionComponent.first;\n const seriesComponent = this.seriesComponents.find((sc) => sc.name === e.series.name);\n if (seriesComponent.drilldownTemplate) {\n seriesComponent.hidden = true;\n const view = seriesCollection.viewContainer.createEmbeddedView(seriesComponent.drilldownTemplate.templateRef, {\n drilldownValue: e.value,\n point: e.point,\n series: e.series\n });\n view.markForCheck();\n this.drilldownState.push(view);\n this.drilldownLevelChange.emit(this.drilldownLevel);\n }\n }\n ngAfterViewChecked() {\n if (this.instance && this.autoResize) {\n this.ngZone.runOutsideAngular(() => {\n clearTimeout(this.resizeTimeout);\n this.resizeTimeout = setTimeout(() => {\n this.resize();\n }, 0);\n });\n }\n }\n ngOnChanges(changes) {\n const store = this.configurationService.store;\n copyChanges(changes, store);\n store.popupSettings = null;\n this.configurationService.push(store);\n }\n /**\n * Updates the component fields with the specified values and refreshes the Chart.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * chart.notifyChanges({ title: { text: 'New Title' } });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n ngOnDestroy() {\n this.destroyed = true;\n if (this.optionsChange) {\n this.optionsChange.unsubscribe();\n }\n if (this.domSubscriptions) {\n this.domSubscriptions();\n this.domSubscriptions = null;\n }\n if (this.instance) {\n this.instance.destroy();\n this.instance = null;\n }\n if (this.subscriptions) {\n this.subscriptions.unsubscribe();\n }\n clearTimeout(this.resizeTimeout);\n clearTimeout(this.redrawTimeout);\n }\n createInstance(element, observer) {\n this.instance = new Chart(element, this.options, this.theme, {\n intlService: this.intl,\n observer: observer,\n rtl: this.rtl,\n sender: this\n });\n }\n /**\n * Exports the Chart as an image. The export operation is asynchronous and returns a promise.\n *\n * @param {ImageExportOptions} options - The parameters for the exported image.\n * @returns {Promise} - A promise that will be resolved with a PNG image encoded as a Data URI.\n */\n exportImage(options = {}) {\n return exportImage(this.exportVisual(options), options);\n }\n /**\n * Exports the Chart as an SVG document. The export operation is asynchronous and returns a promise.\n *\n * @param options - The parameters for the exported file.\n * @returns - A promise that will be resolved with an SVG document that is encoded as a Data URI.\n */\n exportSVG(options = {}) {\n return exportSVG(this.exportVisual(options), options);\n }\n /**\n * Exports the Chart as a Drawing `Scene`.\n *\n * @param options - The parameters for the export operation.\n * @returns - The root Group of the scene.\n */\n exportVisual(options = {}) {\n return this.instance.exportVisual(options);\n }\n /**\n * Returns the axis with the specified name.\n *\n * @param {string} name - The axis name.\n * @returns {ChartAxis} - The axis with a corresponding name.\n */\n findAxisByName(name) {\n if (this.instance) {\n return this.instance.findAxisByName(name);\n }\n }\n /**\n * Returns the pane at the specified index.\n *\n * @param {number} index - The pane index.\n * @returns {ChartPane} - The pane at the specified index.\n */\n findPaneByIndex(index) {\n if (this.instance) {\n return this.instance.findPaneByIndex(index);\n }\n }\n /**\n * Returns the pane with the specified name.\n *\n * @param {string} name - The name of the pane.\n * @returns {ChartPane} - The pane with the provided name.\n */\n findPaneByName(name) {\n if (this.instance) {\n return this.instance.findPaneByName(name);\n }\n }\n /**\n * Returns the plot area of the Chart.\n * @returns {ChartPlotArea} - The plot area of the Chart.\n */\n getPlotArea() {\n if (this.instance) {\n return this.instance.plotArea();\n }\n }\n /**\n * Highlights the series points or the segments of a Pie, Donut, Funnel or Pyramid charts.\n *\n * See [Series Highlight]({% slug serieshighlight_chart_charts %}) for more details (with an [example](slug:serieshighlight_chart_charts#toc-toggling-the-highlight-with-code)).\n * @param show - A Boolean value that indicates whether the highlight is shown or hidden.\n * @param filter - A string that represents the series or category name, an object with the series and category name, or a function which will be called for each point. The function should return `true` for the points for which the highlight is toggled.\n */\n toggleHighlight(show, filter) {\n if (this.instance) {\n this.instance.toggleHighlight(show, filter);\n }\n }\n /**\n * Hides the tooltip of the Chart.\n */\n hideTooltip() {\n if (this.instance) {\n this.instance.hideTooltip();\n }\n }\n /**\n * Shows the Chart tooltip of a specific point or the shared tooltip of a specific category.\n *\n * @param filter - The category for a shared tooltip or a function which will be called for each point until the function returns `true`.\n */\n showTooltip(filter) {\n if (this.instance) {\n this.instance.showTooltip(filter);\n }\n }\n init() {\n if (!this.canRender) {\n return;\n }\n const element = this.surfaceElement.nativeElement;\n const instanceObserver = new ChartInstanceObserver(this);\n this.createInstance(element, instanceObserver);\n }\n /**\n * Detects the size of the container and redraws the Chart.\n * Resizing is automatic unless you set the `resizeRateLimit` option to `0`.\n */\n resize() {\n if (this.instance) {\n this.instance.resize();\n }\n }\n /**\n * @hidden\n */\n onResize() {\n if (this.autoResize) {\n this.resize();\n }\n }\n /**\n * Reloads the Chart appearance settings from the current [Kendo UI Theme]({% slug themesandstyles %}).\n *\n * Call this method after loading a different theme stylesheet.\n */\n reloadTheme() {\n if (!this.instance) {\n return;\n }\n this.themeService.reset();\n this.instance.destroy();\n this.instance = null;\n }\n onLegendItemClick(e) {\n this.run(() => {\n const args = new LegendItemClickEvent(e, this);\n this.legendItemClick.emit(args);\n if (!args.isDefaultPrevented()) {\n const series = this.seriesComponents.toArray()[e.series.index];\n if (!series) {\n return;\n }\n if (e.pointIndex !== undefined) {\n series.togglePointVisibility(e.pointIndex);\n }\n else {\n series.toggleVisibility();\n }\n this.suppressTransitions = true;\n }\n }, hasObservers(this.legendItemClick), this.seriesComponents.length > 0);\n }\n onInit(e) {\n this.instance = e.sender;\n }\n onRender(e) {\n const donutCenterStyle = this.getDonutCenterStyle();\n this.run(() => {\n const args = new RenderEvent(e, this);\n this.surface = e.sender.surface;\n this.render.emit(args);\n this.donutCenterStyle = donutCenterStyle;\n }, hasObservers(this.render), this.donutCenterStyle !== donutCenterStyle);\n }\n onShowTooltip(e) {\n this.run(() => {\n if (!e.crosshair) {\n this.tooltipInstance.show(e);\n }\n else {\n this.crossahirTooltips.show(e);\n }\n }, !e.crosshair, true);\n }\n onHideTooltip(e) {\n if (!e.crosshair) {\n if (this.tooltipInstance.active) {\n this.tooltipInstance.hide();\n this.detectChanges();\n }\n }\n else if (this.crossahirTooltips.active) {\n this.crossahirTooltips.hide();\n this.detectChanges();\n }\n }\n trigger(name, e) {\n if (name === 'resize') {\n return;\n }\n if (name === 'drilldown') {\n this.onDrilldown(e);\n return;\n }\n const emitter = this.activeEmitter(name);\n if (emitter) {\n const args = this.instanceEventService.create(name, e, this);\n this.run(() => {\n emitter.emit(args);\n });\n return args.isDefaultPrevented && args.isDefaultPrevented();\n }\n }\n requiresHandlers(names) {\n for (let idx = 0; idx < names.length; idx++) {\n if (this.activeEmitter(names[idx])) {\n return true;\n }\n }\n return false;\n }\n refresh() {\n clearTimeout(this.redrawTimeout);\n this.updateDirection();\n this.crossahirTooltips.createCrosshairTooltips(this.options);\n this.setChartAreaSize();\n if (!this.instance) {\n this.init();\n return;\n }\n const transitions = this.options.transitions;\n if (this.suppressTransitions) {\n this.options.transitions = false;\n }\n this.updateOptions();\n if (this.suppressTransitions) {\n this.options.transitions = transitions;\n this.suppressTransitions = false;\n }\n }\n setChartAreaSize() {\n if (!this.element) {\n return;\n }\n const element = this.element.nativeElement;\n const chartArea = this.options.chartArea || {};\n if (chartArea.width) {\n element.style.width = `${chartArea.width}px`;\n }\n if (chartArea.height) {\n element.style.height = `${chartArea.height}px`;\n }\n }\n updateOptions() {\n this.instance.setOptions(this.options);\n }\n /**\n * @hidden\n */\n tooltipMouseleave(e) {\n const relatedTarget = e.relatedTarget;\n const chartElement = this.element.nativeElement;\n if (this.instance && (!relatedTarget || !hasParent(relatedTarget, chartElement))) {\n this.instance.hideElements();\n }\n }\n /**\n * @hidden\n */\n chartMouseleave(e) {\n const relatedTarget = e.relatedTarget;\n const chartElement = this.element.nativeElement;\n if (this.instance && (!relatedTarget || !(this.tooltipInstance.containsElement(relatedTarget) || hasParent(relatedTarget, chartElement))) &&\n !this.instance.handlingTap) {\n this.instance.hideElements();\n }\n }\n get canRender() {\n return isDocumentAvailable() && Boolean(this.surfaceElement);\n }\n get autoResize() {\n return this.resizeRateLimit > 0;\n }\n activeEmitter(name) {\n const emitter = this[name];\n if (emitter && emitter.emit && hasObservers(emitter)) {\n return emitter;\n }\n }\n getDonutCenterStyle() {\n if (!this.instance || !this.options || !this.options.series) {\n return;\n }\n const firstSeries = this.options.series[0];\n const charts = this.instance._plotArea.charts;\n if (!firstSeries || firstSeries.type !== 'donut' || !charts || charts[0].points.length === 0) {\n return;\n }\n const firstPoint = charts[0].points[0];\n const center = firstPoint.box.center();\n const radius = firstPoint.sector.innerRadius;\n const top = center.y - radius;\n const left = center.x - radius;\n const size = radius * 2;\n return {\n height: size + 'px',\n left: left + 'px',\n top: top + 'px',\n width: size + 'px'\n };\n }\n refreshWait() {\n this.ngZone.runOutsideAngular(() => {\n this.optionsChange = combineLatest(this.configurationService.onChange$, this.themeService.onChange$).pipe(tap((result) => {\n this.options = result[0];\n this.theme = result[1];\n }), auditTime(THROTTLE_MS))\n .subscribe(() => {\n this.refresh();\n });\n });\n }\n run(callback, inZone = true, detectChanges) {\n if (inZone) {\n if (detectChanges) {\n this.changeDetector.markForCheck();\n }\n this.ngZone.run(callback);\n }\n else {\n callback();\n if (detectChanges) {\n this.detectChanges();\n }\n }\n }\n detectChanges() {\n if (!this.destroyed) {\n this.changeDetector.detectChanges();\n }\n }\n intlChange() {\n if (this.instance) {\n this.deferredRedraw();\n }\n }\n rtlChange() {\n if (this.instance && this.rtl !== this.isRTL) {\n this.deferredRedraw();\n }\n }\n deferredRedraw() {\n this.ngZone.runOutsideAngular(() => {\n clearTimeout(this.redrawTimeout);\n this.redrawTimeout = setTimeout(() => {\n this.updateDirection();\n this.instance.noTransitionsRedraw();\n }, 0);\n });\n }\n updateDirection() {\n const current = this.isRTL;\n if (this.rtl !== current) {\n this.setDirection();\n if (this.instance) {\n this.instance.setDirection(current);\n }\n }\n }\n setDirection() {\n this.rtl = this.isRTL;\n if (this.element) {\n this.renderer.setAttribute(this.element.nativeElement, 'dir', this.rtl ? 'rtl' : 'ltr');\n }\n }\n get isRTL() {\n return Boolean(this.localizationService.rtl);\n }\n}\nChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: InstanceEventService$1 }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ChartComponent, isStandalone: true, 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: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ], 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: `\n
\n \n \n \n \n \n
\n \n
\n\n
\n `, isInline: true, dependencies: [{ kind: \"component\", type: CrosshairTooltipsContainerComponent, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: [\"popupSettings\"] }, { kind: \"component\", type: TooltipPopupComponent, selector: \"kendo-chart-tooltip-popup\", inputs: [\"animate\", \"classNames\", \"popupSettings\", \"wrapperClass\"], outputs: [\"leave\"] }, { kind: \"component\", type: ResizeSensorComponent, selector: \"kendo-resize-sensor\", inputs: [\"rateLimit\"], outputs: [\"resize\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }, { kind: \"directive\", type: NgTemplateOutlet, selector: \"[ngTemplateOutlet]\", inputs: [\"ngTemplateOutletContext\", \"ngTemplateOutlet\", \"ngTemplateOutletInjector\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoChart',\n providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ],\n selector: 'kendo-chart',\n template: `\n
\n \n \n \n \n \n
\n \n
\n\n
\n `,\n standalone: true,\n imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, NgStyle, NgTemplateOutlet, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: ThemeService }, { type: i0.ElementRef }, { type: i3.IntlService }, { type: i4.LocalizationService }, { type: i0.NgZone }, { type: InstanceEventService$1 }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { pannable: [{\n type: Input\n }], renderAs: [{\n type: Input\n }], seriesColors: [{\n type: Input\n }], subtitle: [{\n type: Input\n }], title: [{\n type: Input\n }], transitions: [{\n type: Input\n }], zoomable: [{\n type: Input\n }], axisDefaults: [{\n type: Input\n }], categoryAxis: [{\n type: Input\n }], chartArea: [{\n type: Input\n }], legend: [{\n type: Input\n }], panes: [{\n type: Input\n }], paneDefaults: [{\n type: Input\n }], plotArea: [{\n type: Input\n }], series: [{\n type: Input\n }], seriesDefaults: [{\n type: Input\n }], tooltip: [{\n type: Input\n }], valueAxis: [{\n type: Input\n }], xAxis: [{\n type: Input\n }], yAxis: [{\n type: Input\n }], axisLabelClick: [{\n type: Output\n }], drag: [{\n type: Output\n }], dragEnd: [{\n type: Output\n }], dragStart: [{\n type: Output\n }], legendItemHover: [{\n type: Output\n }], legendItemLeave: [{\n type: Output\n }], noteClick: [{\n type: Output\n }], noteHover: [{\n type: Output\n }], noteLeave: [{\n type: Output\n }], paneRender: [{\n type: Output\n }], plotAreaClick: [{\n type: Output\n }], plotAreaHover: [{\n type: Output\n }], plotAreaLeave: [{\n type: Output\n }], render: [{\n type: Output\n }], select: [{\n type: Output\n }], selectEnd: [{\n type: Output\n }], selectStart: [{\n type: Output\n }], seriesClick: [{\n type: Output\n }], drilldown: [{\n type: Output\n }], seriesHover: [{\n type: Output\n }], seriesOver: [{\n type: Output\n }], seriesLeave: [{\n type: Output\n }], zoom: [{\n type: Output\n }], zoomEnd: [{\n type: Output\n }], zoomStart: [{\n type: Output\n }], legendItemClick: [{\n type: Output\n }], drilldownLevelChange: [{\n type: Output\n }], resizeRateLimit: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], drilldownLevel: [{\n type: Input\n }], seriesCollectionComponent: [{\n type: ContentChildren,\n args: [SeriesComponent]\n }], seriesComponents: [{\n type: ContentChildren,\n args: [SeriesItemComponent, { descendants: true }]\n }], donutCenterTemplate: [{\n type: ContentChild,\n args: [DonutCenterTemplateDirective, { static: false }]\n }], tooltipInstance: [{\n type: ViewChild,\n args: [TooltipPopupComponent, { static: true }]\n }], crossahirTooltips: [{\n type: ViewChild,\n args: [CrosshairTooltipsContainerComponent, { static: true }]\n }], surfaceElement: [{\n type: ViewChild,\n args: ['surface', { static: true }]\n }] } });\n\n/**\n * Specifies the `weekStartDay` of a [CategoryAxisItemComponent]({% slug api_charts_categoryaxisitemcomponent %}).\n */\nvar WeekStartDay;\n(function (WeekStartDay) {\n /**\n * Specifies Sunday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Sunday\"] = 0] = \"Sunday\";\n /**\n * Specifies Monday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Monday\"] = 1] = \"Monday\";\n /**\n * Specifies Tuesday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Tuesday\"] = 2] = \"Tuesday\";\n /**\n * Specifies Wednesday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Wednesday\"] = 3] = \"Wednesday\";\n /**\n * Specifies Thursday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Thursday\"] = 4] = \"Thursday\";\n /**\n * Specifies Friday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Friday\"] = 5] = \"Friday\";\n /**\n * Specifies Saturday as the first day of the week.\n */\n WeekStartDay[WeekStartDay[\"Saturday\"] = 6] = \"Saturday\";\n})(WeekStartDay || (WeekStartDay = {}));\n\n/**\n * The configuration component for an X axis\n * ([see example]({% slug api_charts_xaxiscomponent %})).\n */\nclass XAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService, intl, localeId) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.intl = intl;\n this.notifyChanges({ weekStartDay: intl.firstDay(localeId) });\n }\n}\nXAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: i3.IntlService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });\nXAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisItemComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item\", inputs: { axisCrossingValue: \"axisCrossingValue\", background: \"background\", baseUnit: \"baseUnit\", categories: \"categories\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", majorUnit: \"majorUnit\", max: \"max\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", minorUnit: \"minorUnit\", name: \"name\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", startAngle: \"startAngle\", type: \"type\", visible: \"visible\", weekStartDay: \"weekStartDay\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-x-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: i3.IntlService }, { type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }]; }, propDecorators: { axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], baseUnit: [{\n type: Input\n }], categories: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], majorUnit: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], minorUnit: [{\n type: Input\n }], name: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], weekStartDay: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more X-axis configuration components.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass XAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('xAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nXAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisComponent, isStandalone: true, selector: \"kendo-chart-x-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: XAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-x-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [XAxisItemComponent]\n }] } });\n\n/**\n * The crosshair configuration options\n * ([see example]({% slug api_charts_xaxiscomponent %})).\n */\nclass XAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nXAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-crosshair\", inputs: { color: \"color\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip.\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass XAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nXAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The axis labels configuration.\n */\nclass XAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", culture: \"culture\", dateFormats: \"dateFormats\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], culture: [{\n type: Input\n }], dateFormats: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the X-axis notes.\n * For an example on the basic usage of the XAxisNotesComponent,\n * refer to the [demo on the XAxisComponent]({% slug api_charts_xaxiscomponent %})\n * or to the documentation about the\n * [axis notes]({% slug notes_chart_charts %}#toc-axis-notes).\n */\nclass XAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass XAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass XAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the Scatter Chart X axis.\n */\nclass XAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nXAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nXAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: XAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-x-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: XAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-x-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration component for the Y axis\n * ([see example]({% slug api_charts_yaxiscomponent %})).\n */\nclass YAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nYAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisItemComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item\", inputs: { axisCrossingValue: \"axisCrossingValue\", background: \"background\", baseUnit: \"baseUnit\", categories: \"categories\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", majorUnit: \"majorUnit\", max: \"max\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", minorUnit: \"minorUnit\", name: \"name\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", type: \"type\", visible: \"visible\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-y-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], baseUnit: [{\n type: Input\n }], categories: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], majorUnit: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], minorUnit: [{\n type: Input\n }], name: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more Y-axis configuration components.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass YAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('yAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nYAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisComponent, isStandalone: true, selector: \"kendo-chart-y-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: YAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-y-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [YAxisItemComponent]\n }] } });\n\n/**\n * The crosshair configuration options\n * ([see example]({% slug api_charts_yaxiscomponent %})).\n */\nclass YAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nYAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-crosshair\", inputs: { color: \"color\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip.\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass YAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nYAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The axis labels configuration.\n */\nclass YAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", culture: \"culture\", dateFormats: \"dateFormats\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], culture: [{\n type: Input\n }], dateFormats: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the Y axis notes\n * ([see example]({% slug api_charts_yaxiscomponent %})).\n */\nclass YAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass YAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass YAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the Scatter Chart Y axis.\n */\nclass YAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nYAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nYAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: YAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-y-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: YAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-y-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * Specifies if the Chart can be zoomed.\n * Zooming is not available for the `Donut`, `Pie`, `Funnel`, `Pyramid`, `Polar`, and `Radar` series.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * ```\n */\nclass ZoomableComponent extends SettingsComponent {\n constructor(configurationService) {\n super('zoomable', configurationService);\n this.configurationService = configurationService;\n }\n}\nZoomableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ZoomableComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nZoomableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ZoomableComponent, isStandalone: true, selector: \"kendo-chart-zoomable\", inputs: { mousewheel: \"mousewheel\", selection: \"selection\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ZoomableComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-zoomable',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { mousewheel: [{\n type: Input\n }], selection: [{\n type: Input\n }] } });\n\n// Re-export event types\n\n/**\n * The arguments for the `navigatorFilter` event.\n */\nclass NavigatorFilterEvent extends BaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(sender);\n this.from = e.from;\n this.to = e.to;\n }\n}\n\n// Re-export event types\n\n/**\n * @hidden\n */\nclass RootConfigurationService extends ConfigurationService {\n}\nRootConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: RootConfigurationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });\nRootConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: RootConfigurationService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: RootConfigurationService, decorators: [{\n type: Injectable\n }] });\n\nconst EVENT_MAP$1 = {\n navigatorFilter: NavigatorFilterEvent\n};\n/**\n * @hidden\n */\nclass StockInstanceEventService extends InstanceEventService$1 {\n create(name, args, sender) {\n if (EVENT_MAP$1[name]) {\n return new EVENT_MAP$1[name](args, sender);\n }\n return super.create(name, args, sender);\n }\n}\n\nconst NAVIGATOR_DEFAULTS = {\n autoBindElements: true,\n liveDrag: false,\n partialRedraw: true\n};\n/**\n * The root StockChart component.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass StockChartComponent extends ChartComponent {\n constructor(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer) {\n super(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer);\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.element = element;\n this.intl = intl;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.instanceEventService = instanceEventService;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n /**\n * @hidden\n */\n this.drilldown = new EventEmitter();\n /**\n * @hidden\n */\n this.drilldownLevelChange = new EventEmitter();\n /**\n * Fires when the navigator range is changed.\n */\n this.navigatorFilter = new EventEmitter();\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.redrawSlaves = false;\n this.hostClasses = ['k-chart', 'k-stockchart'];\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n }\n /**\n * @hidden\n */\n get drilldownLevel() {\n return this.drilldownState.length;\n }\n /**\n * If called, the navigator pane is not redrawn the next time the StockChart options are updated.\n * The method is useful if you need to update only the main series data for the selected period.\n */\n skipNavigatorRedraw() {\n this.redrawSlaves = true;\n }\n createInstance(element, observer) {\n this.applyNavigatorDefaults();\n if (this.isDevMode() && (this.options.zoomable || this.options.pannable)) {\n throw new Error('The pannable and zoomable options are not supported by the StockChart component.');\n }\n this.instance = new StockChart(element, this.options, this.theme, {\n intlService: this.intl,\n observer: observer,\n rtl: this.rtl,\n sender: this\n });\n }\n updateOptions() {\n this.applyNavigatorDefaults();\n if (this.redrawSlaves) {\n this.instance.applyOptions(this.options);\n this.instance.bindCategories();\n this.instance.navigator.redrawSlaves();\n }\n else {\n this.instance.setOptions(this.options);\n }\n this.redrawSlaves = false;\n }\n applyNavigatorDefaults() {\n this.options.navigator = Object.assign({}, this.options.navigator, NAVIGATOR_DEFAULTS);\n }\n isDevMode() {\n return isDevMode();\n }\n}\nStockChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", 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 });\nStockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: StockChartComponent, isStandalone: true, selector: \"kendo-stockchart\", inputs: { navigator: \"navigator\", pannable: \"pannable\", zoomable: \"zoomable\", drilldownLevel: \"drilldownLevel\" }, outputs: { drilldown: \"drilldown\", drilldownLevelChange: \"drilldownLevelChange\", navigatorFilter: \"navigatorFilter\" }, providers: [\n ConfigurationService,\n TooltipTemplateService,\n { provide: RootConfigurationService, useExisting: ConfigurationService },\n StockInstanceEventService,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ], exportAs: [\"kendoStockChart\"], usesInheritance: true, ngImport: i0, template: `\n
\n \n \n \n \n \n\n
\n `, isInline: true, dependencies: [{ kind: \"component\", type: CrosshairTooltipsContainerComponent, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: [\"popupSettings\"] }, { kind: \"component\", type: TooltipPopupComponent, selector: \"kendo-chart-tooltip-popup\", inputs: [\"animate\", \"classNames\", \"popupSettings\", \"wrapperClass\"], outputs: [\"leave\"] }, { kind: \"component\", type: ResizeSensorComponent, selector: \"kendo-resize-sensor\", inputs: [\"rateLimit\"], outputs: [\"resize\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoStockChart',\n providers: [\n ConfigurationService,\n TooltipTemplateService,\n { provide: RootConfigurationService, useExisting: ConfigurationService },\n StockInstanceEventService,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ],\n selector: 'kendo-stockchart',\n template: `\n
\n \n \n \n \n \n\n
\n `,\n standalone: true,\n imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: ThemeService }, { type: i0.ElementRef }, { type: i3.IntlService }, { type: i4.LocalizationService }, { type: i0.NgZone }, { type: StockInstanceEventService }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { navigator: [{\n type: Input\n }], pannable: [{\n type: Input\n }], zoomable: [{\n type: Input\n }], drilldown: [{\n type: Output\n }], drilldownLevelChange: [{\n type: Output\n }], drilldownLevel: [{\n type: Input\n }], navigatorFilter: [{\n type: Output\n }] } });\n\n/**\n * @hidden\n */\nconst PREFIX = new InjectionToken('configuration prefix');\n/**\n * @hidden\n */\nclass PrefixConfigurationService extends ConfigurationService {\n constructor(rootService, prefix, ngZone) {\n super(ngZone);\n this.rootService = rootService;\n this.prefix = prefix;\n }\n push(store) {\n this.rootService.notify(new Change(this.prefix, store));\n }\n notify(change) {\n change.key = this.prefix + (change.key ? `.${change.key}` : '');\n this.rootService.notify(change);\n }\n}\nPrefixConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PrefixConfigurationService, deps: [{ token: RootConfigurationService }, { token: PREFIX }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });\nPrefixConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PrefixConfigurationService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PrefixConfigurationService, decorators: [{\n type: Injectable\n }], ctorParameters: function () { return [{ type: RootConfigurationService, decorators: [{\n type: Inject,\n args: [RootConfigurationService]\n }] }, { type: undefined, decorators: [{\n type: Inject,\n args: [PREFIX]\n }] }, { type: i0.NgZone }]; } });\n\n/**\n * The configuration options of the navigator\n * ([see runnable example](slug:overview_stockchart_charts)).\n *\n * @example\n * ```ts-no-run\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n *
\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n *

\n * \n * `\n * })\n * ```\n */\nclass NavigatorComponent extends SettingsComponent {\n constructor(configurationService) {\n super('', configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorComponent, isStandalone: true, selector: \"kendo-chart-navigator\", inputs: { position: \"position\", visible: \"visible\", categoryAxis: \"categoryAxis\", hint: \"hint\", pane: \"pane\", select: \"select\", series: \"series\" }, providers: [{ provide: PREFIX, useValue: 'navigator' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{ provide: PREFIX, useValue: 'navigator' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }],\n selector: 'kendo-chart-navigator',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { position: [{\n type: Input\n }], visible: [{\n type: Input\n }], categoryAxis: [{\n type: Input\n }], hint: [{\n type: Input\n }], pane: [{\n type: Input\n }], select: [{\n type: Input\n }], series: [{\n type: Input\n }] } });\n\n/**\n * The configuration component for a category axis ([see example]({% slug axes_chart_charts %})).\n */\nclass CategoryAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService, intl, localeId) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.notifyChanges({ weekStartDay: intl.firstDay(localeId) });\n }\n}\nCategoryAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: i3.IntlService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisItemComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item\", inputs: { autoBaseUnitSteps: \"autoBaseUnitSteps\", axisCrossingValue: \"axisCrossingValue\", background: \"background\", baseUnit: \"baseUnit\", baseUnitStep: \"baseUnitStep\", categories: \"categories\", color: \"color\", justified: \"justified\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", max: \"max\", maxDateGroups: \"maxDateGroups\", maxDivisions: \"maxDivisions\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", name: \"name\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", roundToBaseUnit: \"roundToBaseUnit\", startAngle: \"startAngle\", type: \"type\", visible: \"visible\", weekStartDay: \"weekStartDay\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", select: \"select\", title: \"title\", rangeLabels: \"rangeLabels\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-category-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: i3.IntlService }, { type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }]; }, propDecorators: { autoBaseUnitSteps: [{\n type: Input\n }], axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], baseUnit: [{\n type: Input\n }], baseUnitStep: [{\n type: Input\n }], categories: [{\n type: Input\n }], color: [{\n type: Input\n }], justified: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], max: [{\n type: Input\n }], maxDateGroups: [{\n type: Input\n }], maxDivisions: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], name: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], roundToBaseUnit: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], weekStartDay: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], select: [{\n type: Input\n }], title: [{\n type: Input\n }], rangeLabels: [{\n type: Input\n }] } });\n\n/**\n * The configuration component of the navigator category axis.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * \n * \n * \n * ```\n */\nclass NavigatorCategoryAxisComponent extends CategoryAxisItemComponent {\n constructor(configurationService, intl, localeId) {\n super(configurationService, null, intl, localeId);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisComponent, deps: [{ token: ConfigurationService }, { token: i3.IntlService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis\", providers: [{\n provide: PREFIX,\n useValue: 'navigator.categoryAxis'\n }, {\n provide: ConfigurationService,\n useClass: PrefixConfigurationService\n }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{\n provide: PREFIX,\n useValue: 'navigator.categoryAxis'\n }, {\n provide: ConfigurationService,\n useClass: PrefixConfigurationService\n }],\n selector: 'kendo-chart-navigator-category-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i3.IntlService }, { type: undefined, decorators: [{\n type: Inject,\n args: [LOCALE_ID]\n }] }]; } });\n\n/**\n * The crosshair configuration options ([see example]({% slug crosshairs_chart_charts %})).\n */\nclass CategoryAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nCategoryAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-crosshair\", inputs: { color: \"color\", dashType: \"dashType\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], dashType: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair.\n */\nclass NavigatorCategoryAxisCrosshairComponent extends CategoryAxisCrosshairComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-crosshair\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The options of the crosshair tooltip ([see example]({% slug crosshairs_chart_charts %})).\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass CategoryAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nCategoryAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip.\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass NavigatorCategoryAxisCrosshairTooltipComponent extends CategoryAxisCrosshairTooltipComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-crosshair-tooltip\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the axis labels ([see example]({% slug labels_chart_charts %})).\n */\nclass CategoryAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", culture: \"culture\", dateFormats: \"dateFormats\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], culture: [{\n type: Input\n }], dateFormats: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the axis labels.\n */\nclass NavigatorCategoryAxisLabelsComponent extends CategoryAxisLabelsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-labels\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the category axis notes ([see example]({% slug notes_chart_charts %}#toc-axis-notes)).\n */\nclass CategoryAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the category axis notes.\n */\nclass NavigatorCategoryAxisNotesComponent extends CategoryAxisNotesComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-notes\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The icon of the notes.\n */\nclass CategoryAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass NavigatorCategoryAxisNotesIconComponent extends CategoryAxisNotesIconComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-notes-icon\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The label of the notes.\n */\nclass CategoryAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass NavigatorCategoryAxisNotesLabelComponent extends CategoryAxisNotesLabelComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-notes-label\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The selected axis range. If set, the axis selection is enabled. The range is index-based and starts from zero.\n * Categories with indexes in the\n * ([`select.from`]({% slug api_charts_categoryaxisselectcomponent %}#toc-from)\n * —[`select.to`]({% slug api_charts_categoryaxisselectcomponent %}#toc-to)) range will be selected.\n * This means that the last category in the range will not be included in the selection.\n * If the categories are dates, the range has to be also specified with date values.\n */\nclass CategoryAxisSelectComponent extends SettingsComponent {\n constructor(configurationService) {\n super('select', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisSelectComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisSelectComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-select\", inputs: { from: \"from\", max: \"max\", min: \"min\", mousewheel: \"mousewheel\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisSelectComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-select',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { from: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], mousewheel: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The selected axis range. If set, the axis selection is enabled. The range is index-based and starts from zero.\n * Categories with indexes in the range (`select.from`, `select.to`) will be selected.\n * This means that the last category in the range will not be included in the selection.\n * If the categories are dates, the range has also to be specified with date values.\n */\nclass NavigatorCategoryAxisSelectComponent extends CategoryAxisSelectComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisSelectComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisSelectComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-select\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisSelectComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-select',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the category axis title.\n */\nclass CategoryAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nCategoryAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the navigator category axis.\n */\nclass NavigatorCategoryAxisTitleComponent extends CategoryAxisTitleComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorCategoryAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorCategoryAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorCategoryAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-navigator-category-axis-title\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorCategoryAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-category-axis-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The default options of the navigator hint\n * ([see example](slug:overview_stockchart_charts)).\n */\nclass NavigatorHintComponent extends SettingsComponent {\n constructor(configurationService) {\n super('hint', configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorHintComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorHintComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorHintComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorHintComponent, isStandalone: true, selector: \"kendo-chart-navigator-hint\", inputs: { content: \"content\", format: \"format\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorHintComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-hint',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { content: [{\n type: Input\n }], format: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration component for a Chart pane.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * ```\n */\nclass PaneComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PaneComponent, isStandalone: true, selector: \"kendo-chart-pane, kendo-chart-panes-item\", inputs: { background: \"background\", border: \"border\", clip: \"clip\", height: \"height\", margin: \"margin\", name: \"name\", padding: \"padding\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-pane, kendo-chart-panes-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], clip: [{\n type: Input\n }], height: [{\n type: Input\n }], margin: [{\n type: Input\n }], name: [{\n type: Input\n }], padding: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration component of the navigator pane\n * ([see example](slug:overview_stockchart_charts)).\n */\nclass NavigatorPaneComponent extends PaneComponent {\n constructor(configurationService) {\n super(configurationService, null);\n this.configurationService = configurationService;\n }\n}\nNavigatorPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorPaneComponent, isStandalone: true, selector: \"kendo-chart-navigator-pane\", providers: [{ provide: PREFIX, useValue: 'navigator.pane' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{ provide: PREFIX, useValue: 'navigator.pane' }, { provide: ConfigurationService, useClass: PrefixConfigurationService }],\n selector: 'kendo-chart-navigator-pane',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart pane title.\n */\nclass PanesTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nPanesTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPanesTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PanesTitleComponent, isStandalone: true, selector: \"kendo-chart-pane-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", position: \"position\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-pane-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the StockChart navigator pane.\n */\nclass NavigatorPaneTitleComponent extends PanesTitleComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorPaneTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorPaneTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorPaneTitleComponent, isStandalone: true, selector: \"kendo-chart-navigator-pane-title\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorPaneTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-pane-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * Specifies the initially selected range.\n * If no range is specified, the full range of values is rendered.\n */\nclass NavigatorSelectComponent extends SettingsComponent {\n constructor(configurationService) {\n super('select', configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSelectComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSelectComponent, isStandalone: true, selector: \"kendo-chart-navigator-select\", inputs: { from: \"from\", to: \"to\", mousewheel: \"mousewheel\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSelectComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-select',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { from: [{\n type: Input\n }], to: [{\n type: Input\n }], mousewheel: [{\n type: Input\n }] } });\n\n/**\n * The configuration component of a navigator series item\n * ([see example]({% slug overview_stockchart_charts %})).\n */\nclass NavigatorSeriesItemComponent extends SeriesItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nNavigatorSeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesItemComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item\", inputs: { drilldownField: \"drilldownField\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-navigator-series-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { drilldownField: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more navigator series items.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * public data: any[] = [];\n *\n * constructor() {\n * for (let idx = 0; idx < 100; idx++) {\n * this.data.push({\n * date: new Date(2017, 0, idx),\n * value: Math.random() * 100\n * });\n * }\n * }\n * }\n *\n * ```\n */\nclass NavigatorSeriesComponent extends SeriesComponent {\n constructor(configurationService, collectionService, tooltipTemplateService, viewContainer) {\n super(configurationService, collectionService, tooltipTemplateService, viewContainer);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n this.tooltipTemplateService = tooltipTemplateService;\n this.viewContainer = viewContainer;\n }\n readTooltipTemplates() {\n }\n}\nNavigatorSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }, { token: TooltipTemplateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesComponent, isStandalone: true, selector: \"kendo-chart-navigator-series\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: NavigatorSeriesItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-navigator-series',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }, { type: TooltipTemplateService }, { type: i0.ViewContainerRef }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [NavigatorSeriesItemComponent]\n }] } });\n\n/**\n * The error bars of the Chart series\n * ([see example]({% slug errorbars_chart_charts %})).\n */\nclass SeriesErrorBarsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('errorBars', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesErrorBarsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesErrorBarsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesErrorBarsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesErrorBarsComponent, isStandalone: true, selector: \"kendo-chart-series-item-error-bars\", inputs: { color: \"color\", endCaps: \"endCaps\", line: \"line\", value: \"value\", visual: \"visual\", xValue: \"xValue\", yValue: \"yValue\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesErrorBarsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-error-bars',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], endCaps: [{\n type: Input\n }], line: [{\n type: Input\n }], value: [{\n type: Input\n }], visual: [{\n type: Input\n }], xValue: [{\n type: Input\n }], yValue: [{\n type: Input\n }] } });\n\n/**\n * The error bars of the StockChart navigator series.\n */\nclass NavigatorSeriesErrorBarsComponent extends SeriesErrorBarsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesErrorBarsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesErrorBarsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesErrorBarsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesErrorBarsComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-error-bars\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesErrorBarsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-error-bars',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series extremes.\n * Applies to extreme outliers.\n * For more information, refer to [`series.outliers`]({% slug api_charts_seriesitemcomponent %}#toc-outliers).\n */\nclass SeriesExtremesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('extremes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesExtremesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesExtremesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesExtremesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesExtremesComponent, isStandalone: true, selector: \"kendo-chart-series-item-extremes\", inputs: { background: \"background\", border: \"border\", rotation: \"rotation\", size: \"size\", type: \"type\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesExtremesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-extremes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], rotation: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }] } });\n\n/**\n * The extremes configuration of the StockChart navigator series. Applies to extreme outliers.\n */\nclass NavigatorSeriesExtremesComponent extends SeriesExtremesComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesExtremesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesExtremesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesExtremesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesExtremesComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-extremes\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesExtremesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-extremes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The Chart series highlighting configuration options.\n */\nclass SeriesHighlightComponent extends SettingsComponent {\n constructor(configurationService) {\n super('highlight', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesHighlightComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesHighlightComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesHighlightComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesHighlightComponent, isStandalone: true, selector: \"kendo-chart-series-item-highlight\", inputs: { border: \"border\", color: \"color\", line: \"line\", markers: \"markers\", opacity: \"opacity\", toggle: \"toggle\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesHighlightComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-highlight',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { border: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], markers: [{\n type: Input\n }], opacity: [{\n type: Input\n }], toggle: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the StockChart series highlight.\n */\nclass NavigatorSeriesHighlightComponent extends SeriesHighlightComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesHighlightComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesHighlightComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesHighlightComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesHighlightComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-highlight\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesHighlightComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-highlight',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series label\n * ([see example]({% slug labels_chart_charts %})).\n */\nclass SeriesLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesLabelsComponent, isStandalone: true, selector: \"kendo-chart-series-item-labels\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", content: \"content\", ariaContent: \"ariaContent\", distance: \"distance\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", visible: \"visible\", visual: \"visual\", from: \"from\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], ariaContent: [{\n type: Input\n }], distance: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }], from: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The label configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesLabelsComponent extends SeriesLabelsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nNavigatorSeriesLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesLabelsComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-labels\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The `from` label configuration of the Chart series.\n */\nclass SeriesLabelsFromComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels.from', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesLabelsFromComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsFromComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesLabelsFromComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesLabelsFromComponent, isStandalone: true, selector: \"kendo-chart-series-item-labels-from\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", position: \"position\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsFromComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-labels-from',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The `from` label configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesLabelsFromComponent extends SeriesLabelsFromComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nNavigatorSeriesLabelsFromComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsFromComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesLabelsFromComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesLabelsFromComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-labels-from\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsFromComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-labels-from',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The `to` label configuration of the Chart series.\n */\nclass SeriesLabelsToComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels.to', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesLabelsToComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsToComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesLabelsToComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesLabelsToComponent, isStandalone: true, selector: \"kendo-chart-series-item-labels-to\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", position: \"position\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesLabelsToComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-labels-to',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The `to` label configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesLabelsToComponent extends SeriesLabelsToComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nNavigatorSeriesLabelsToComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsToComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesLabelsToComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesLabelsToComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-labels-to\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesLabelsToComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-labels-to',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series marker.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesMarkersComponent extends SettingsComponent {\n constructor(configurationService) {\n super('markers', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesMarkersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesMarkersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesMarkersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesMarkersComponent, isStandalone: true, selector: \"kendo-chart-series-item-markers\", inputs: { background: \"background\", border: \"border\", rotation: \"rotation\", size: \"size\", type: \"type\", visible: \"visible\", visual: \"visual\", from: \"from\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesMarkersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-markers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], rotation: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }], from: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The marker configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesMarkersComponent extends SeriesMarkersComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesMarkersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesMarkersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesMarkersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesMarkersComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-markers\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesMarkersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-markers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The series notes configuration\n * ([see example]({% slug notes_chart_charts %})).\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * \n * \n * ```\n */\nclass SeriesNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesNotesComponent, isStandalone: true, selector: \"kendo-chart-series-item-notes\", inputs: { line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The notes configuration of the StockChart navigator series.\n */\nclass NavigatorSeriesNotesComponent extends SeriesNotesComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesNotesComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-notes\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The icon of the notes.\n */\nclass SeriesNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesNotesIconComponent, isStandalone: true, selector: \"kendo-chart-series-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass NavigatorSeriesNotesIconComponent extends SeriesNotesIconComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesNotesIconComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-notes-icon\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The label of the notes.\n */\nclass SeriesNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-series-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass NavigatorSeriesNotesLabelComponent extends SeriesNotesLabelComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-notes-label\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration of the Chart series outliers.\n * Applies to mild outliers.\n * For more information, refer to the [`series.extremes`]({% slug api_charts_seriesitemcomponent %}#toc-extremes) option.\n */\nclass SeriesOutliersComponent extends SettingsComponent {\n constructor(configurationService) {\n super('outliers', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesOutliersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesOutliersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesOutliersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesOutliersComponent, isStandalone: true, selector: \"kendo-chart-series-item-outliers\", inputs: { background: \"background\", border: \"border\", rotation: \"rotation\", size: \"size\", type: \"type\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesOutliersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-outliers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], rotation: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }] } });\n\n/**\n * The outliers configuration of the StockChart navigator series. Applies to mild outliers.\n */\nclass NavigatorSeriesOutliersComponent extends SeriesOutliersComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesOutliersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesOutliersComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesOutliersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesOutliersComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-outliers\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesOutliersComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-outliers',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The tooltip configuration of the StockChart navigator series.\n * The StockChart navigator series tooltip is displayed when the `navigator.series.tooltip.visible` option is set to `true`.\n */\nclass NavigatorSeriesTooltipComponent extends SeriesTooltipComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n }\n}\nNavigatorSeriesTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nNavigatorSeriesTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: NavigatorSeriesTooltipComponent, isStandalone: true, selector: \"kendo-chart-navigator-series-item-tooltip\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: NavigatorSeriesTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-navigator-series-item-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The root Chart component.\n *\n * @example\n * ```html\n * \n * \n * ```\n */\nclass SparklineComponent extends ChartComponent {\n constructor(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer) {\n super(configurationService, themeService, element, intl, localizationService, ngZone, instanceEventService, changeDetector, renderer);\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.element = element;\n this.intl = intl;\n this.localizationService = localizationService;\n this.ngZone = ngZone;\n this.instanceEventService = instanceEventService;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n /**\n * @hidden\n */\n this.drilldown = new EventEmitter();\n /**\n * @hidden\n */\n this.drilldownLevelChange = new EventEmitter();\n /**\n * @hidden\n */\n this.tooltipWrapperClass = 'k-sparkline-tooltip-wrapper';\n /**\n * @hidden\n */\n this.tooltipContentClasses = {\n 'k-sparkline-tooltip': true\n };\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.hostClasses = ['k-sparkline', 'k-widget'];\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n }\n /**\n * @hidden\n */\n get drilldownLevel() {\n return this.drilldownState.length;\n }\n createInstance(element, observer) {\n this.instance = new Sparkline(element, Sparkline.normalizeOptions(this.options), this.theme, {\n intlService: this.intl,\n observer: observer,\n rtl: this.rtl,\n sender: this\n });\n }\n updateOptions() {\n this.instance.setOptions(Sparkline.normalizeOptions(this.options));\n }\n}\nSparklineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineComponent, deps: [{ token: ConfigurationService }, { token: ThemeService }, { token: i0.ElementRef }, { token: i3.IntlService }, { token: i4.LocalizationService }, { token: i0.NgZone }, { token: InstanceEventService$1 }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nSparklineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SparklineComponent, isStandalone: true, selector: \"kendo-sparkline\", inputs: { type: \"type\", data: \"data\", drilldownLevel: \"drilldownLevel\" }, outputs: { drilldown: \"drilldown\", drilldownLevelChange: \"drilldownLevelChange\" }, providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ], exportAs: [\"kendoSparkline\"], usesInheritance: true, ngImport: i0, template: `\n \n \n \n \n \n \n\n
\n `, isInline: true, dependencies: [{ kind: \"component\", type: CrosshairTooltipsContainerComponent, selector: \"kendo-chart-crosshair-tooltips-container\", inputs: [\"popupSettings\"] }, { kind: \"component\", type: TooltipPopupComponent, selector: \"kendo-chart-tooltip-popup\", inputs: [\"animate\", \"classNames\", \"popupSettings\", \"wrapperClass\"], outputs: [\"leave\"] }, { kind: \"component\", type: ResizeSensorComponent, selector: \"kendo-resize-sensor\", inputs: [\"rateLimit\"], outputs: [\"resize\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoSparkline',\n providers: [\n ConfigurationService,\n TooltipTemplateService,\n InstanceEventService$1,\n LocalizationService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.chart'\n }\n ],\n selector: 'kendo-sparkline',\n template: `\n \n \n \n \n \n \n\n
\n `,\n standalone: true,\n imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: ThemeService }, { type: i0.ElementRef }, { type: i3.IntlService }, { type: i4.LocalizationService }, { type: i0.NgZone }, { type: InstanceEventService$1 }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { type: [{\n type: Input\n }], data: [{\n type: Input\n }], drilldown: [{\n type: Output\n }], drilldownLevelChange: [{\n type: Output\n }], drilldownLevel: [{\n type: Input\n }] } });\n\n/**\n * The default options for all Chart axes ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n * Accepts the options which are supported by [`categoryAxis`](slug:api_charts_categoryaxisitemcomponent),\n * [`valueAxis`](slug:api_charts_valueaxisitemcomponent),\n * [`xAxis`](slug:api_charts_xaxisitemcomponent),\n * and [`yAxis`](slug:api_charts_yaxisitemcomponent).\n *\n */\nclass AxisDefaultsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults', configurationService);\n this.configurationService = configurationService;\n }\n}\nAxisDefaultsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults\", inputs: { background: \"background\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", startAngle: \"startAngle\", visible: \"visible\", crosshair: \"crosshair\", labels: \"labels\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], startAngle: [{\n type: Input\n }], visible: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The crosshair configuration options ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n */\nclass AxisDefaultsCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nAxisDefaultsCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsCrosshairComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-crosshair\", inputs: { color: \"color\", dashType: \"dashType\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], dashType: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The options of the crosshair tooltip ([see example]({% slug crosshairs_chart_charts %})).\n * The crosshair tooltip is displayed when the [`axisDefaults.crosshair.tooltip.visible`]({% slug api_charts_axisdefaultscrosshairtooltipcomponent %}#toc-visible)\n * option is set to `true`.\n */\nclass AxisDefaultsCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nAxisDefaultsCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the axis labels ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n */\nclass AxisDefaultsLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nAxisDefaultsLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsLabelsComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-labels\", inputs: { content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the axis title ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).\n */\nclass AxisDefaultsTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('axisDefaults.title', configurationService);\n this.configurationService = configurationService;\n }\n}\nAxisDefaultsTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nAxisDefaultsTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: AxisDefaultsTitleComponent, isStandalone: true, selector: \"kendo-chart-axis-defaults-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: AxisDefaultsTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-axis-defaults-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more category axis items.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * }\n * ```\n */\nclass CategoryAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('categoryAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nCategoryAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisComponent, isStandalone: true, selector: \"kendo-chart-category-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: CategoryAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-category-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [CategoryAxisItemComponent]\n }] } });\n\n/**\n * The configuration of the axis date range labels ([see example]({% slug labels_chart_charts %})).\n */\nclass CategoryAxisRangeLabelsComponent extends CategoryAxisLabelsComponent {\n constructor(configurationService) {\n super(configurationService);\n this.configurationService = configurationService;\n this.configKey = 'rangeLabels';\n this.markAsVisible();\n }\n}\nCategoryAxisRangeLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisRangeLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nCategoryAxisRangeLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: CategoryAxisRangeLabelsComponent, isStandalone: true, selector: \"kendo-chart-category-axis-item-range-labels\", usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: CategoryAxisRangeLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-category-axis-item-range-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; } });\n\n/**\n * The configuration options of the Chart area.\n * Represents the entire visible area of the Chart\n * ([see example]({% slug chartarea_chart_charts %})).\n */\nclass ChartAreaComponent extends SettingsComponent {\n constructor(configurationService) {\n super('chartArea', configurationService);\n this.configurationService = configurationService;\n }\n}\nChartAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartAreaComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nChartAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ChartAreaComponent, isStandalone: true, selector: \"kendo-chart-area\", inputs: { background: \"background\", border: \"border\", height: \"height\", margin: \"margin\", opacity: \"opacity\", width: \"width\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartAreaComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-area',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], height: [{\n type: Input\n }], margin: [{\n type: Input\n }], opacity: [{\n type: Input\n }], width: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart legend\n * ([see example]({% slug legend_chart_charts %})).\n */\nclass LegendComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nLegendComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nLegendComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LegendComponent, isStandalone: true, selector: \"kendo-chart-legend\", inputs: { align: \"align\", background: \"background\", border: \"border\", height: \"height\", labels: \"labels\", margin: \"margin\", offsetX: \"offsetX\", offsetY: \"offsetY\", orientation: \"orientation\", padding: \"padding\", position: \"position\", reverse: \"reverse\", visible: \"visible\", width: \"width\", markers: \"markers\", spacing: \"spacing\", inactiveItems: \"inactiveItems\", item: \"item\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-legend',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], height: [{\n type: Input\n }], labels: [{\n type: Input\n }], margin: [{\n type: Input\n }], offsetX: [{\n type: Input\n }], offsetY: [{\n type: Input\n }], orientation: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], reverse: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], markers: [{\n type: Input\n }], spacing: [{\n type: Input\n }], inactiveItems: [{\n type: Input\n }], item: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the inactive Chart legend items.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * \n * \n * ```\n */\nclass LegendInactiveItemsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend.inactiveItems', configurationService);\n this.configurationService = configurationService;\n }\n}\nLegendInactiveItemsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendInactiveItemsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nLegendInactiveItemsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LegendInactiveItemsComponent, isStandalone: true, selector: \"kendo-chart-legend-inactive-items\", inputs: { labels: \"labels\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendInactiveItemsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-legend-inactive-items',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { labels: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the Chart legend item.\n *\n * @example\n *\n * ```html-no-run\n * \n * \n * \n * \n * \n * ```\n */\nclass LegendItemComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend.item', configurationService);\n this.configurationService = configurationService;\n }\n}\nLegendItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendItemComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nLegendItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LegendItemComponent, isStandalone: true, selector: \"kendo-chart-legend-item\", inputs: { cursor: \"cursor\", type: \"type\", line: \"line\", area: \"area\", markers: \"markers\", highlight: \"highlight\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LegendItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-legend-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { cursor: [{\n type: Input\n }], type: [{\n type: Input\n }], line: [{\n type: Input\n }], area: [{\n type: Input\n }], markers: [{\n type: Input\n }], highlight: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The default options for all chart panes,\n * ([see example](slug:panes_chart_charts#toc-default-settings)).\n */\nclass PaneDefaultsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('paneDefaults', configurationService);\n this.configurationService = configurationService;\n }\n}\nPaneDefaultsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPaneDefaultsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PaneDefaultsComponent, isStandalone: true, selector: \"kendo-chart-pane-defaults\", inputs: { background: \"background\", border: \"border\", clip: \"clip\", height: \"height\", margin: \"margin\", padding: \"padding\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-pane-defaults',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], clip: [{\n type: Input\n }], height: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the pane default title.\n */\nclass PaneDefaultsTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('paneDefaults.title', configurationService);\n this.configurationService = configurationService;\n }\n}\nPaneDefaultsTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPaneDefaultsTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PaneDefaultsTitleComponent, isStandalone: true, selector: \"kendo-chart-pane-defaults-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", position: \"position\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PaneDefaultsTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-pane-defaults-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], position: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more pane configuration components.\n *\n * @example\n * ```html\n * \n * \n * \n * \n * \n * ...\n * \n * ```\n */\nclass PanesComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('panes', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nPanesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nPanesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PanesComponent, isStandalone: true, selector: \"kendo-chart-panes\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: PaneComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PanesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-panes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [PaneComponent]\n }] } });\n\n/**\n * The configuration options of the plot area\n * ([see example]({% slug plotarea_chart_charts %})).\n * The plot area is the area which displays the series.\n */\nclass PlotAreaComponent extends SettingsComponent {\n constructor(configurationService) {\n super('plotArea', configurationService);\n this.configurationService = configurationService;\n }\n}\nPlotAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PlotAreaComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nPlotAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: PlotAreaComponent, isStandalone: true, selector: \"kendo-chart-plot-area\", inputs: { background: \"background\", border: \"border\", margin: \"margin\", opacity: \"opacity\", padding: \"padding\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: PlotAreaComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-plot-area',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], margin: [{\n type: Input\n }], opacity: [{\n type: Input\n }], padding: [{\n type: Input\n }] } });\n\n/**\n * The default options for all series\n * ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)).\n */\nclass SeriesDefaultsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsComponent, isStandalone: true, selector: \"kendo-chart-series-defaults\", inputs: { border: \"border\", gap: \"gap\", highlight: \"highlight\", overlay: \"overlay\", spacing: \"spacing\", stack: \"stack\", type: \"type\", visual: \"visual\", labels: \"labels\", notes: \"notes\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { border: [{\n type: Input\n }], gap: [{\n type: Input\n }], highlight: [{\n type: Input\n }], overlay: [{\n type: Input\n }], spacing: [{\n type: Input\n }], stack: [{\n type: Input\n }], type: [{\n type: Input\n }], visual: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the Chart series label.\n */\nclass SeriesDefaultsLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.labels', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsLabelsComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", visible: \"visible\", visual: \"visual\", from: \"from\", to: \"to\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }], from: [{\n type: Input\n }], to: [{\n type: Input\n }] } });\n\n/**\n * The `from` label configuration of the Chart series.\n */\nclass SeriesDefaultsLabelsFromComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.labels.from', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsLabelsFromComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsFromComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsLabelsFromComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsLabelsFromComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-labels-from\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsFromComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-labels-from',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The `to` label configuration of the Chart series.\n */\nclass SeriesDefaultsLabelsToComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.labels.to', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsLabelsToComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsToComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsLabelsToComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsLabelsToComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-labels-to\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsLabelsToComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-labels-to',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the [`seriesDefaults`]({% slug api_charts_seriesdefaultscomponent %}) notes.\n */\nclass SeriesDefaultsNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsNotesComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-notes\", inputs: { line: \"line\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { line: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass SeriesDefaultsNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsNotesIconComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass SeriesDefaultsNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesDefaultsNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart series tooltip.\n */\nclass SeriesDefaultsTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('seriesDefaults.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSeriesDefaultsTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesDefaultsTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesDefaultsTooltipComponent, isStandalone: true, selector: \"kendo-chart-series-defaults-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesDefaultsTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-defaults-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart trendline series\n * ([see example]({% slug trendlines_chart_charts %})).\n */\nclass SeriesTrendlineComponent extends SettingsComponent {\n constructor(configurationService) {\n super('trendline', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesTrendlineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesTrendlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTrendlineComponent, isStandalone: true, selector: \"kendo-chart-series-item-trendline\", inputs: { period: \"period\", order: \"order\", forecast: \"forecast\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-trendline',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { period: [{\n type: Input\n }], order: [{\n type: Input\n }], forecast: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart trendline forecast\n * ([see example]({% slug trendlines_chart_charts %})).\n */\nclass SeriesTrendlineForecastComponent extends SettingsComponent {\n constructor(configurationService) {\n super('forecast', configurationService);\n this.configurationService = configurationService;\n }\n}\nSeriesTrendlineForecastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineForecastComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSeriesTrendlineForecastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SeriesTrendlineForecastComponent, isStandalone: true, selector: \"kendo-chart-series-item-trendline-forecast\", inputs: { before: \"before\", after: \"after\", forecast: \"forecast\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SeriesTrendlineForecastComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-series-item-trendline-forecast',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { before: [{\n type: Input\n }], after: [{\n type: Input\n }], forecast: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart subtitle or text\n * ([see example]({% slug title_chart_charts %})).\n *\n * @example\n * ```html\n * \n * \n * \n * ```\n */\nclass SubtitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('subtitle', configurationService);\n this.configurationService = configurationService;\n }\n}\nSubtitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SubtitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSubtitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SubtitleComponent, isStandalone: true, selector: \"kendo-chart-subtitle\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", text: \"text\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SubtitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-subtitle',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart title or text\n * ([see example]({% slug title_chart_charts %})).\n *\n * @example\n * ```html\n * \n * \n * ...\n * \n * ```\n */\nclass TitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: TitleComponent, isStandalone: true, selector: \"kendo-chart-title\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", text: \"text\", description: \"description\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], description: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Chart series tooltip\n * ([see example]({% slug tooltips_chart_charts %})).\n */\nclass TooltipComponent extends SettingsComponent {\n constructor(configurationService, templateService) {\n super('tooltip', configurationService);\n this.configurationService = configurationService;\n this.templateService = templateService;\n this.markAsVisible();\n }\n ngAfterContentChecked() {\n this.templateService.setTemplate(this.seriesTooltipTemplate ? this.seriesTooltipTemplate.templateRef : null);\n this.templateService.setSharedTemplate(this.sharedTooltipTemplate ? this.sharedTooltipTemplate.templateRef : null);\n }\n}\nTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipComponent, deps: [{ token: ConfigurationService }, { token: TooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });\nTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: TooltipComponent, isStandalone: true, selector: \"kendo-chart-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", opacity: \"opacity\", padding: \"padding\", shared: \"shared\", visible: \"visible\" }, queries: [{ propertyName: \"seriesTooltipTemplate\", first: true, predicate: SeriesTooltipTemplateDirective, descendants: true }, { propertyName: \"sharedTooltipTemplate\", first: true, predicate: SharedTooltipTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: TooltipComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'kendo-chart-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: TooltipTemplateService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], opacity: [{\n type: Input\n }], padding: [{\n type: Input\n }], shared: [{\n type: Input\n }], visible: [{\n type: Input\n }], seriesTooltipTemplate: [{\n type: ContentChild,\n args: [SeriesTooltipTemplateDirective, { static: false }]\n }], sharedTooltipTemplate: [{\n type: ContentChild,\n args: [SharedTooltipTemplateDirective, { static: false }]\n }] } });\n\n/**\n * The configuration component for a value axis.\n */\nclass ValueAxisItemComponent extends CollectionItemComponent {\n constructor(configurationService, collectionService) {\n super(configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nValueAxisItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisItemComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item\", inputs: { axisCrossingValue: \"axisCrossingValue\", background: \"background\", color: \"color\", line: \"line\", majorGridLines: \"majorGridLines\", majorTicks: \"majorTicks\", majorUnit: \"majorUnit\", max: \"max\", min: \"min\", minorGridLines: \"minorGridLines\", minorTicks: \"minorTicks\", minorUnit: \"minorUnit\", name: \"name\", narrowRange: \"narrowRange\", pane: \"pane\", plotBands: \"plotBands\", reverse: \"reverse\", type: \"type\", visible: \"visible\", crosshair: \"crosshair\", labels: \"labels\", notes: \"notes\", title: \"title\" }, providers: [ConfigurationService], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisItemComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [ConfigurationService],\n selector: 'kendo-chart-value-axis-item',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { axisCrossingValue: [{\n type: Input\n }], background: [{\n type: Input\n }], color: [{\n type: Input\n }], line: [{\n type: Input\n }], majorGridLines: [{\n type: Input\n }], majorTicks: [{\n type: Input\n }], majorUnit: [{\n type: Input\n }], max: [{\n type: Input\n }], min: [{\n type: Input\n }], minorGridLines: [{\n type: Input\n }], minorTicks: [{\n type: Input\n }], minorUnit: [{\n type: Input\n }], name: [{\n type: Input\n }], narrowRange: [{\n type: Input\n }], pane: [{\n type: Input\n }], plotBands: [{\n type: Input\n }], reverse: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }], crosshair: [{\n type: Input\n }], labels: [{\n type: Input\n }], notes: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * A collection of one or more value axis configuration components.\n *\n * @example\n * ```html\n * \n * \n * ....\n * \n * \n * ```\n */\nclass ValueAxisComponent extends CollectionComponent {\n constructor(configurationService, collectionService) {\n super('valueAxis', configurationService, collectionService);\n this.configurationService = configurationService;\n this.collectionService = collectionService;\n }\n}\nValueAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisComponent, isStandalone: true, selector: \"kendo-chart-value-axis\", providers: [CollectionService], queries: [{ propertyName: \"children\", predicate: ValueAxisItemComponent }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [CollectionService],\n selector: 'kendo-chart-value-axis',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: CollectionService }]; }, propDecorators: { children: [{\n type: ContentChildren,\n args: [ValueAxisItemComponent]\n }] } });\n\n/**\n * The crosshair configuration options ([see example]({% slug crosshairs_chart_charts %})).\n */\nclass ValueAxisCrosshairComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nValueAxisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisCrosshairComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-crosshair\", inputs: { color: \"color\", opacity: \"opacity\", visible: \"visible\", width: \"width\", tooltip: \"tooltip\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-crosshair',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], tooltip: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the crosshair tooltip ([see example]({% slug crosshairs_chart_charts %})).\n * The crosshair tooltip is displayed when the `visible` option is set to `true`.\n */\nclass ValueAxisCrosshairTooltipComponent extends SettingsComponent {\n constructor(configurationService) {\n super('crosshair.tooltip', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nValueAxisCrosshairTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairTooltipComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisCrosshairTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisCrosshairTooltipComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-crosshair-tooltip\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", format: \"format\", padding: \"padding\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisCrosshairTooltipComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-crosshair-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], padding: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The axis labels configuration.\n */\nclass ValueAxisLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisLabelsComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-labels\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", margin: \"margin\", mirror: \"mirror\", padding: \"padding\", position: \"position\", rotation: \"rotation\", skip: \"skip\", step: \"step\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], margin: [{\n type: Input\n }], mirror: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], skip: [{\n type: Input\n }], step: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * The configuration of the value axis notes ([see example]({% slug notes_chart_charts %}#toc-axis-notes)).\n */\nclass ValueAxisNotesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisNotesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisNotesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisNotesComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-notes\", inputs: { data: \"data\", line: \"line\", position: \"position\", visual: \"visual\", icon: \"icon\", label: \"label\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-notes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { data: [{\n type: Input\n }], line: [{\n type: Input\n }], position: [{\n type: Input\n }], visual: [{\n type: Input\n }], icon: [{\n type: Input\n }], label: [{\n type: Input\n }] } });\n\n/**\n * The icon of the notes.\n */\nclass ValueAxisNotesIconComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.icon', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisNotesIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesIconComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisNotesIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisNotesIconComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-notes-icon\", inputs: { background: \"background\", border: \"border\", size: \"size\", type: \"type\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesIconComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-notes-icon',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], size: [{\n type: Input\n }], type: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The label of the notes.\n */\nclass ValueAxisNotesLabelComponent extends SettingsComponent {\n constructor(configurationService) {\n super('notes.label', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisNotesLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesLabelComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisNotesLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisNotesLabelComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-notes-label\", inputs: { background: \"background\", border: \"border\", color: \"color\", content: \"content\", font: \"font\", format: \"format\", position: \"position\", rotation: \"rotation\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisNotesLabelComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-notes-label',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], content: [{\n type: Input\n }], font: [{\n type: Input\n }], format: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The title configuration of the value axis.\n */\nclass ValueAxisTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nValueAxisTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nValueAxisTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ValueAxisTitleComponent, isStandalone: true, selector: \"kendo-chart-value-axis-item-title\", inputs: { background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", rotation: \"rotation\", text: \"text\", visible: \"visible\", visual: \"visual\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ValueAxisTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-chart-value-axis-item-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], rotation: [{\n type: Input\n }], text: [{\n type: Input\n }], visible: [{\n type: Input\n }], visual: [{\n type: Input\n }] } });\n\n/**\n * Navigation Breadcrumb component for Drilldown Charts.\n *\n * Use this component to implement navigation for [Drilldown Charts](slug:drilldown_chart_charts).\n * Use the `chart` input to link the Breadcrumb to the Chart instance.\n *\n */\nclass ChartBreadcrumbComponent {\n constructor() {\n /**\n * The definition of the breadcrumb root item.\n *\n * The default value is `{ icon: 'home', svgIcon: homeIcon, title: 'Home' }`.\n * (homeIcon is imported from '@progress/kendo-svg-icons')\n */\n this.rootItem = { icon: 'home', svgIcon: homeIcon, title: 'Home' };\n this.subscription = new Subscription();\n }\n ngOnInit() {\n this.items = [this.rootItem];\n if (this.chart) {\n this.subscription.add(this.chart.drilldown.subscribe(this.onDrilldown.bind(this)));\n this.subscription.add(this.chart.drilldownLevelChange.subscribe(this.onDrilldownLevelChange.bind(this)));\n }\n else if (isDevMode()) {\n throw new Error('Chart Breadcrumb: No Chart instance supplied. Please add a reference using the \"chart\" attribute. For example: \\n' +\n '\\n' +\n '');\n }\n }\n ngOnChanges(changes) {\n const rootItemChange = changes['rootItem'];\n if (rootItemChange && this.items) {\n this.items[0] = rootItemChange.currentValue;\n }\n }\n ngOnDestroy() {\n if (this.subscription) {\n this.subscription.unsubscribe();\n this.subscription = null;\n }\n }\n /**\n * @hidden\n */\n onItemClick(target) {\n this.chart.drilldownLevel = this.items.findIndex(item => item === target);\n }\n onDrilldown(e) {\n this.items = [...this.items, { text: e.point.category.toString() }];\n }\n onDrilldownLevelChange(level) {\n this.items = this.items.slice(0, level + 1);\n }\n}\nChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });\nChartBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: ChartBreadcrumbComponent, isStandalone: true, 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: `\n \n \n `, isInline: true, dependencies: [{ kind: \"component\", type: BreadCrumbComponent, selector: \"kendo-breadcrumb\", inputs: [\"items\", \"separatorIcon\", \"separatorSVGIcon\", \"collapseMode\", \"size\"], outputs: [\"itemClick\"], exportAs: [\"kendoBreadCrumb\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{\n type: Component,\n args: [{\n exportAs: 'kendoChartBreadcrumb',\n selector: 'kendo-chart-breadcrumb',\n template: `\n \n \n `,\n standalone: true,\n imports: [BreadCrumbComponent]\n }]\n }], propDecorators: { chart: [{\n type: Input\n }], rootItem: [{\n type: Input\n }], breadcrumb: [{\n type: ViewChild,\n args: ['breadcrumb', { static: true }]\n }] } });\n\n/**\n * @hidden\n */\nclass SankeyBaseEvent extends PreventableEvent$1 {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super();\n this.sender = sender;\n this.originalEvent = e.originalEvent;\n }\n}\n\n/**\n * Arguments for the node-related events of the [`SankeyComponent`]({% slug api_charts_sankeycomponent %}).\n */\nclass SankeyNodeEvent extends SankeyBaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(e, sender);\n this.dataItem = e.dataItem;\n }\n}\n\n/**\n * Arguments for the link-related events of the [`SankeyComponent`]({% slug api_charts_sankeycomponent %}).\n */\nclass SankeyLinkEvent extends SankeyBaseEvent {\n /**\n * @hidden\n */\n constructor(e, sender) {\n super(e, sender);\n this.dataItem = e.dataItem;\n }\n}\n\nconst EVENT_MAP = {\n nodeEnter: SankeyNodeEvent,\n nodeLeave: SankeyNodeEvent,\n linkEnter: SankeyLinkEvent,\n linkLeave: SankeyLinkEvent,\n nodeClick: SankeyNodeEvent,\n linkClick: SankeyLinkEvent\n};\n/**\n * @hidden\n */\nclass InstanceEventService {\n create(name, args, sender) {\n return new EVENT_MAP[name](args, sender);\n }\n}\n\n/**\n * The context that is passed to the Sankey diagram Link tooltip template.\n */\nclass SankeyLinkTooltipTemplateContext {\n /**\n * @hidden\n */\n constructor(e) {\n const dataItem = e.dataItem;\n this.source = dataItem.source;\n this.target = dataItem.target;\n this.value = dataItem.value;\n }\n}\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [links tooltip](slug:tooltip_sankey#toc-specifying-a-link-tooltip-template).\n * The following context fields are frequently utilized:\n * - `let-source=\"source\"`—The link source data item..\n * - `let-target=\"target\"`—The link target data item.\n * - `let-value=\"value\"`—The link value.\n * For the full list of available fields, refer to the [`SankeyLinkTooltipTemplateContext`](slug:api_charts_sankeylinktooltiptemplatecontext).\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * Value is {{value}}\n * \n * \n * \n * \n * \n * \n * \n * `\n * })\n * class AppComponent {\n * }\n *\n * import { Component } from '@angular/core';\n * import { SankeyData } from '@progress/kendo-angular-charts';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * \n * {{ source.label?.text }} - {{ target.label?.text }}: {{ value }}\n * \n * \n * \n * `,\n * })\n * export class AppComponent {\n * public data: SankeyData = {\n * nodes: [\n * { id: 1, label: { text: 'Linux' } },\n * { id: 0, label: { text: 'iOS'} },\n * { id: 2, label: { text: 'Mobile' } },\n * { id: 3, label: { text: 'Desktop' } },\n * ],\n * links: [\n * { sourceId: 0, targetId: 2, value: 1 },\n * { sourceId: 1, targetId: 2, value: 2 },\n * { sourceId: 1, targetId: 3, value: 3 },\n * ],\n * };\n * }\n *\n * ```\n */\nclass SankeyLinkTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSankeyLinkTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinkTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSankeyLinkTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLinkTooltipTemplateDirective, isStandalone: true, selector: \"[kendoSankeyLinkTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinkTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyLinkTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * The context that is passed to the Sankey diagram Node tooltip template.\n */\nclass SankeyNodeTooltipTemplateContext {\n /**\n * @hidden\n */\n constructor(e) {\n const dataItem = e.dataItem;\n this.label = dataItem.label;\n this.color = dataItem.color;\n this.value = e.nodeValue;\n }\n}\n\n/**\n * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])\n * within the `` component for the\n * [series tooltip](slug:tooltip_sankey#toc-specifying-a-node-tooltip-template).\n * The following context fields are frequently utilized:\n * - `let-color=\"color\"`—The node color.\n * - `let-label=\"label\"`—The node label data.\n * - `let-value=\"value\"`—The node value.\n * For the full list of available fields, refer to the [`SankeyNodeTooltipTemplateContext`](slug:api_charts_sankeynodetooltiptemplatecontext).\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n * import { SankeyData } from '@progress/kendo-angular-charts';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * {{ label.text }}: {{ value }}\n * \n * \n * `,\n * })\n * export class AppComponent {\n * public data: SankeyData = {\n * nodes: [\n * { id: 1, label: { text: 'Linux' } },\n * { id: 0, label: { text: 'iOS'} },\n * { id: 2, label: { text: 'Mobile' } },\n * { id: 3, label: { text: 'Desktop' } },\n * ],\n * links: [\n * { sourceId: 0, targetId: 2, value: 1 },\n * { sourceId: 1, targetId: 2, value: 2 },\n * { sourceId: 1, targetId: 3, value: 3 },\n * ],\n * };\n * }\n *\n * ```\n */\nclass SankeyNodeTooltipTemplateDirective {\n constructor(templateRef) {\n this.templateRef = templateRef;\n }\n}\nSankeyNodeTooltipTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodeTooltipTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });\nSankeyNodeTooltipTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyNodeTooltipTemplateDirective, isStandalone: true, selector: \"[kendoSankeyNodeTooltipTemplate]\", ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodeTooltipTemplateDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyNodeTooltipTemplate]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{\n type: Optional\n }] }]; } });\n\n/**\n * @hidden\n */\nclass SankeyTooltipTemplateService {\n}\nSankeyTooltipTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });\nSankeyTooltipTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipTemplateService });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipTemplateService, decorators: [{\n type: Injectable\n }] });\n\n/**\n * @hidden\n */\nclass SquareSymbol {\n constructor() {\n this.size = 15;\n this.display = 'inline-flex';\n this.marginLeft = 3;\n }\n}\nSquareSymbol.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SquareSymbol, deps: [], target: i0.ɵɵFactoryTarget.Directive });\nSquareSymbol.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SquareSymbol, isStandalone: true, selector: \"[squareSymbol]\", inputs: { color: \"color\", size: \"size\" }, host: { properties: { \"style.backgroundColor\": \"this.color\", \"style.width.px\": \"this.size\", \"style.height.px\": \"this.size\", \"style.display\": \"this.display\", \"style.marginLeft.px\": \"this.marginLeft\" } }, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SquareSymbol, decorators: [{\n type: Directive,\n args: [{\n selector: '[squareSymbol]',\n standalone: true\n }]\n }], propDecorators: { color: [{\n type: Input\n }, {\n type: HostBinding,\n args: ['style.backgroundColor']\n }], size: [{\n type: Input\n }, {\n type: HostBinding,\n args: ['style.width.px']\n }, {\n type: HostBinding,\n args: ['style.height.px']\n }], display: [{\n type: HostBinding,\n args: ['style.display']\n }], marginLeft: [{\n type: HostBinding,\n args: ['style.marginLeft.px']\n }] } });\n\nconst DEFAULT_OFFSET = 12;\n/**\n * @hidden\n */\nclass SankeyTooltipPopupComponent extends BaseTooltip {\n constructor(element, popupService, templateService, localizationService, intlService, ngZone, renderer) {\n super(popupService, localizationService);\n this.element = element;\n this.popupService = popupService;\n this.templateService = templateService;\n this.localizationService = localizationService;\n this.intlService = intlService;\n this.ngZone = ngZone;\n this.renderer = renderer;\n this.animate = false;\n this.wrapperClass = 'k-chart-tooltip-wrapper';\n this.arrowIcon = arrowRightIcon;\n // TODO: Move to themes\n this.textStyle = { margin: '0 3px' };\n this.tooltipStyle = { display: 'flex', alignItems: 'center' };\n this.rtl = false;\n }\n onInit() {\n this.popupRef.popupElement.className += ` ${this.wrapperClass}`;\n }\n ngAfterViewInit() {\n this.setDirection();\n this.subscriptions = this.localizationService.changes.subscribe(this.rtlChange.bind(this));\n }\n ngOnDestroy() {\n super.ngOnDestroy();\n if (this.subscriptions) {\n this.subscriptions.unsubscribe();\n }\n }\n show(e) {\n this.isNode = e.targetType === 'node';\n this.isLink = e.targetType === 'link';\n this.nodeTooltipTemplateRef = this.templateService.nodeTemplate || this.defaultNodeTooltipTemplate.templateRef;\n this.nodeTooltipContext = new SankeyNodeTooltipTemplateContext(e);\n this.linkTooltipTemplateRef = this.templateService.linkTemplate || this.defaultLinkTooltipTemplate.templateRef;\n this.linkTooltipContext = new SankeyLinkTooltipTemplateContext(e);\n super.show({\n style: {\n position: 'static' // Override k-tooltip positioning\n },\n anchor: {\n align: e.tooltipData.popupAlign,\n point: this.tooltipAnchor(e),\n },\n });\n }\n tooltipAnchor(e) {\n const element = this.element.nativeElement;\n const size = { width: element.offsetWidth, height: element.offsetHeight };\n const anchor = { ...e.tooltipData.popupOffset };\n const popupAlign = e.tooltipData.popupAlign;\n const offset = this.offset || DEFAULT_OFFSET;\n anchor.left += (popupAlign.horizontal === 'left') ? offset : (-1 * offset);\n if (popupAlign.horizontal === 'right') {\n anchor.left -= size.width;\n }\n if (popupAlign.vertical === 'bottom') {\n anchor.top -= size.height + offset;\n }\n else {\n anchor.top += offset;\n }\n return anchor;\n }\n formatUnits(value) {\n return this.intlService.format(this.tooltipUnitFormat, value ?? 0);\n }\n rtlChange() {\n this.arrowIcon = this.rtl ? arrowLeftIcon : arrowRightIcon;\n }\n setDirection() {\n this.rtl = this.isRTL;\n if (this.element) {\n this.renderer.setAttribute(this.element.nativeElement, 'dir', this.rtl ? 'rtl' : 'ltr');\n }\n }\n get isRTL() {\n return Boolean(this.localizationService.rtl);\n }\n}\nSankeyTooltipPopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipPopupComponent, deps: [{ token: i0.ElementRef }, { token: i1.PopupService }, { token: SankeyTooltipTemplateService }, { token: i4.LocalizationService }, { token: i3.IntlService }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });\nSankeyTooltipPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyTooltipPopupComponent, isStandalone: true, selector: \"kendo-sankey-tooltip-popup\", inputs: { animate: \"animate\", popupSettings: \"popupSettings\", wrapperClass: \"wrapperClass\", tooltipUnitFormat: \"tooltipUnitFormat\", offset: \"offset\" }, providers: [\n PopupService,\n {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory,\n },\n ], viewQueries: [{ propertyName: \"defaultNodeTooltipTemplate\", first: true, predicate: SankeyNodeTooltipTemplateDirective, descendants: true }, { propertyName: \"defaultLinkTooltipTemplate\", first: true, predicate: SankeyLinkTooltipTemplateDirective, descendants: true }, { propertyName: \"templateRef\", first: true, predicate: [\"content\"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `\n \n
\n
\n \n \n \n \n
\n
\n
\n\n \n
\n
\n {{ label.text }}\n {{ formatUnits(value) }}\n
\n
\n\n \n
\n
\n {{ source.label?.text }}\n \n
\n {{ target.label?.text }}\n {{ formatUnits(value) }}\n
\n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: NgStyle, selector: \"[ngStyle]\", inputs: [\"ngStyle\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"directive\", type: NgTemplateOutlet, selector: \"[ngTemplateOutlet]\", inputs: [\"ngTemplateOutletContext\", \"ngTemplateOutlet\", \"ngTemplateOutletInjector\"] }, { kind: \"directive\", type: SankeyNodeTooltipTemplateDirective, selector: \"[kendoSankeyNodeTooltipTemplate]\" }, { kind: \"directive\", type: SquareSymbol, selector: \"[squareSymbol]\", inputs: [\"color\", \"size\"] }, { kind: \"directive\", type: SankeyLinkTooltipTemplateDirective, selector: \"[kendoSankeyLinkTooltipTemplate]\" }, { kind: \"component\", type: IconWrapperComponent, selector: \"kendo-icon-wrapper\", inputs: [\"name\", \"svgIcon\", \"innerCssClass\", \"customFontClass\", \"size\"], exportAs: [\"kendoIconWrapper\"] }] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipPopupComponent, decorators: [{\n type: Component,\n args: [{\n providers: [\n PopupService,\n {\n provide: POPUP_CONTAINER,\n useFactory: bodyFactory,\n },\n ],\n selector: 'kendo-sankey-tooltip-popup',\n template: `\n \n
\n
\n \n \n \n \n
\n
\n
\n\n \n
\n
\n {{ label.text }}\n {{ formatUnits(value) }}\n
\n
\n\n \n
\n
\n {{ source.label?.text }}\n \n
\n {{ target.label?.text }}\n {{ formatUnits(value) }}\n
\n
\n `,\n standalone: true,\n imports: [NgStyle, NgIf, NgTemplateOutlet, SankeyNodeTooltipTemplateDirective, SquareSymbol, SankeyLinkTooltipTemplateDirective, IconWrapperComponent]\n }]\n }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.PopupService }, { type: SankeyTooltipTemplateService }, { type: i4.LocalizationService }, { type: i3.IntlService }, { type: i0.NgZone }, { type: i0.Renderer2 }]; }, propDecorators: { defaultNodeTooltipTemplate: [{\n type: ViewChild,\n args: [SankeyNodeTooltipTemplateDirective, { static: false }]\n }], defaultLinkTooltipTemplate: [{\n type: ViewChild,\n args: [SankeyLinkTooltipTemplateDirective, { static: false }]\n }], templateRef: [{\n type: ViewChild,\n args: ['content', { static: true }]\n }], animate: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], wrapperClass: [{\n type: Input\n }], tooltipUnitFormat: [{\n type: Input\n }], offset: [{\n type: Input\n }] } });\n\n/**\n * @hidden\n */\nclass Messages extends ComponentMessages {\n}\nMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });\nMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: Messages, selector: \"[kendoSankeyMessages]\", inputs: { tooltipUnitFormat: \"tooltipUnitFormat\" }, usesInheritance: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: Messages, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyMessages]'\n }]\n }], propDecorators: { tooltipUnitFormat: [{\n type: Input\n }] } });\n\n/**\n * @hidden\n */\nclass LocalizedMessagesDirective extends Messages {\n constructor(service) {\n super();\n this.service = service;\n }\n}\nLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });\nLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: LocalizedMessagesDirective, isStandalone: true, selector: \"[kendoSankeyLocalizedMessages]\", providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => LocalizedMessagesDirective)\n }\n ], usesInheritance: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{\n type: Directive,\n args: [{\n providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => LocalizedMessagesDirective)\n }\n ],\n selector: '[kendoSankeyLocalizedMessages]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i4.LocalizationService }]; } });\n\n/**\n * The Sankey diagram component.\n *\n * @example\n * ```ts\n * import { Component } from '@angular/core';\n *\n * _@Component({\n * selector: 'my-app',\n * template: `\n * \n * \n * `,\n * })\n * export class AppComponent {\n * public data: SankeyData = {\n * nodes: [\n * { id: 1, label: { text: 'Linux' } },\n * { id: 0, label: { text: 'iOS'} },\n * { id: 2, label: { text: 'Mobile' } },\n * { id: 3, label: { text: 'Desktop' } },\n * ],\n * links: [\n * { sourceId: 0, targetId: 2, value: 1 },\n * { sourceId: 1, targetId: 2, value: 2 },\n * { sourceId: 1, targetId: 3, value: 3 },\n * ],\n * };\n * }\n * ```\n */\nclass SankeyComponent {\n constructor(element, configurationService, themeService, localizationService, instanceEventService, ngZone, changeDetector, renderer, intlService) {\n this.element = element;\n this.configurationService = configurationService;\n this.themeService = themeService;\n this.localizationService = localizationService;\n this.instanceEventService = instanceEventService;\n this.ngZone = ngZone;\n this.changeDetector = changeDetector;\n this.renderer = renderer;\n this.intlService = intlService;\n /**\n * If set to `false`, the Sankey keyboard navigation will be disabled.\n * By default, navigation is enabled.\n *\n * @default true\n */\n this.navigable = true;\n /**\n * Fires when the mouse pointer enters a node. Similar to the `mouseenter` event.\n */\n this.nodeEnter = new EventEmitter();\n /**\n * Fires when the mouse pointer leaves a node. Similar to the `mouseleave` event.\n */\n this.nodeLeave = new EventEmitter();\n /**\n * Fires when a node is clicked.\n */\n this.nodeClick = new EventEmitter();\n /**\n * Fires when the mouse pointer enters a link. Similar to the `mouseenter` event,\n */\n this.linkEnter = new EventEmitter();\n /**\n * Fires when the mouse pointer leaves a link. Similar to the `mouseleave` event.\n */\n this.linkLeave = new EventEmitter();\n /**\n * Fires when a link is clicked.\n */\n this.linkClick = new EventEmitter();\n /**\n * @hidden\n */\n this.showLicenseWatermark = false;\n this.rtl = false;\n const isValid = validatePackage(packageMetadata);\n this.showLicenseWatermark = shouldShowValidationUI(isValid);\n this.themeService.loadTheme();\n this.refreshWait();\n }\n ngAfterViewInit() {\n this.setDirection();\n this.subscriptions = this.intlService.changes.subscribe(this.intlChange.bind(this));\n this.subscriptions.add(this.localizationService.changes.subscribe(this.rtlChange.bind(this)));\n }\n ngOnChanges(changes) {\n const store = this.configurationService.store;\n copyChanges(changes, store);\n store.popupSettings = null;\n this.configurationService.push(store);\n }\n /**\n * Updates the component fields with the specified values and refreshes the widget.\n *\n * Use this method when the configuration values cannot be set through the template.\n *\n * @example\n * ```ts-no-run\n * sankey.notifyChanges({ title: { text: 'New Title' } });\n * ```\n *\n * @param changes An object containing the updated input fields.\n */\n notifyChanges(changes) {\n this.ngOnChanges(toSimpleChanges(changes));\n }\n ngOnDestroy() {\n this.destroyed = true;\n if (this.optionsChange) {\n this.optionsChange.unsubscribe();\n }\n if (this.instance) {\n this.instance.destroy();\n this.instance = null;\n }\n if (this.subscriptions) {\n this.subscriptions.unsubscribe();\n }\n clearTimeout(this.redrawTimeout);\n }\n /**\n * @hidden\n */\n messageFor(key) {\n return this.localizationService.get(key);\n }\n createInstance(element) {\n this.instance = new Sankey(element, this.instanceOptions, this.theme);\n ['nodeEnter', 'nodeLeave', 'nodeClick', 'linkEnter', 'linkLeave', 'linkClick'].forEach((eventName) => this.instance.bind(eventName, (e) => this.trigger(eventName, e)));\n this.instance.bind('tooltipShow', (e) => this.onShowTooltip(e));\n this.instance.bind('tooltipHide', () => this.onHideTooltip());\n }\n /**\n * Exports the Sankey diagram as an image. The export operation is asynchronous and returns a promise.\n *\n * @param {ImageExportOptions} options - The parameters for the exported image.\n * @returns {Promise} - A promise that will be resolved with a PNG image encoded as a Data URI.\n */\n exportImage(options = {}) {\n return exportImage(this.exportVisual(options), options);\n }\n /**\n * Exports the Sankey diagram as an SVG document. The export operation is asynchronous and returns a promise.\n *\n * @param options - The parameters for the exported file.\n * @returns - A promise that will be resolved with an SVG document that is encoded as a Data URI.\n */\n exportSVG(options = {}) {\n return exportSVG(this.exportVisual(options), options);\n }\n /**\n * Exports the visual of the Sankey component to a drawing group.\n *\n * @param options - The parameters for the export operation.\n * @returns - The root Group of the scene.\n */\n exportVisual(options = {}) {\n return this.instance.exportVisual(options);\n }\n init() {\n if (!this.canRender) {\n return;\n }\n const element = this.instanceElement.nativeElement;\n this.createInstance(element);\n }\n /**\n * Reloads the Sankey appearance settings from the current [Kendo UI Theme]({% slug themesandstyles %}).\n *\n * Call this method after loading a different theme stylesheet.\n */\n reloadTheme() {\n if (!this.instance) {\n return;\n }\n this.themeService.reset();\n this.instance.destroy();\n this.instance = null;\n }\n onShowTooltip(e) {\n this.run(() => {\n this.tooltipInstance.show(e);\n }, true, true);\n }\n onHideTooltip() {\n if (this.tooltipInstance.active) {\n this.tooltipInstance.hide();\n this.detectChanges();\n }\n }\n trigger(name, e) {\n const emitter = this.activeEmitter(name);\n if (emitter) {\n const args = this.instanceEventService.create(name, e, this);\n this.run(() => {\n emitter.emit(args);\n });\n return args.isDefaultPrevented && args.isDefaultPrevented();\n }\n }\n requiresHandlers(names) {\n for (let idx = 0; idx < names.length; idx++) {\n if (this.activeEmitter(names[idx])) {\n return true;\n }\n }\n return false;\n }\n refresh() {\n clearTimeout(this.redrawTimeout);\n if (!this.instance) {\n this.init();\n return;\n }\n this.updateOptions();\n }\n updateOptions() {\n this.instance.setOptions(this.instanceOptions);\n }\n get canRender() {\n return isDocumentAvailable() && Boolean(this.instanceElement);\n }\n get instanceOptions() {\n return { ...this.options, rtl: this.rtl, disableKeyboardNavigation: !this.navigable };\n }\n activeEmitter(name) {\n const emitter = this[name];\n if (emitter && emitter.emit && hasObservers(emitter)) {\n return emitter;\n }\n }\n refreshWait() {\n this.ngZone.runOutsideAngular(() => {\n this.optionsChange = combineLatest([this.configurationService.onChange$, this.themeService.onChange$])\n .pipe(tap((result) => {\n this.options = result[0];\n this.theme = this.loadTheme(result[1]);\n }), auditTime(THROTTLE_MS))\n .subscribe(() => {\n this.refresh();\n });\n });\n }\n loadTheme(chartTheme) {\n return {\n ...chartTheme,\n nodeColors: chartTheme.seriesColors,\n };\n }\n run(callback, inZone = true, detectChanges) {\n if (inZone) {\n if (detectChanges) {\n this.changeDetector.markForCheck();\n }\n this.ngZone.run(callback);\n }\n else {\n callback();\n if (detectChanges) {\n this.detectChanges();\n }\n }\n }\n detectChanges() {\n if (!this.destroyed) {\n this.changeDetector.detectChanges();\n }\n }\n intlChange() {\n if (this.instance) {\n this.refresh();\n }\n }\n rtlChange() {\n if (this.instance && this.rtl !== this.isRTL) {\n this.refresh();\n }\n }\n setDirection() {\n this.rtl = this.isRTL;\n if (this.element) {\n this.renderer.setAttribute(this.element.nativeElement, 'dir', this.rtl ? 'rtl' : 'ltr');\n }\n }\n get isRTL() {\n return Boolean(this.localizationService.rtl);\n }\n}\nSankeyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyComponent, deps: [{ token: i0.ElementRef }, { token: ConfigurationService }, { token: ThemeService }, { token: i4.LocalizationService }, { token: InstanceEventService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i3.IntlService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyComponent, isStandalone: true, selector: \"kendo-sankey\", inputs: { data: \"data\", links: \"links\", nodes: \"nodes\", labels: \"labels\", title: \"title\", legend: \"legend\", tooltip: \"tooltip\", disableAutoLayout: \"disableAutoLayout\", navigable: \"navigable\", popupSettings: \"popupSettings\" }, outputs: { nodeEnter: \"nodeEnter\", nodeLeave: \"nodeLeave\", nodeClick: \"nodeClick\", linkEnter: \"linkEnter\", linkLeave: \"linkLeave\", linkClick: \"linkClick\" }, providers: [\n ConfigurationService,\n LocalizationService,\n InstanceEventService,\n SankeyTooltipTemplateService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.sankey',\n },\n ], viewQueries: [{ propertyName: \"tooltipInstance\", first: true, predicate: SankeyTooltipPopupComponent, descendants: true, static: true }, { propertyName: \"instanceElement\", first: true, predicate: [\"instance\"], descendants: true, static: true }], exportAs: [\"kendoSankey\"], usesOnChanges: true, ngImport: i0, template: `\n \n
\n \n \n
\n `, isInline: true, dependencies: [{ kind: \"directive\", type: LocalizedMessagesDirective, selector: \"[kendoSankeyLocalizedMessages]\" }, { kind: \"component\", type: SankeyTooltipPopupComponent, selector: \"kendo-sankey-tooltip-popup\", inputs: [\"animate\", \"popupSettings\", \"wrapperClass\", \"tooltipUnitFormat\", \"offset\"] }, { kind: \"directive\", type: NgIf, selector: \"[ngIf]\", inputs: [\"ngIf\", \"ngIfThen\", \"ngIfElse\"] }, { kind: \"component\", type: WatermarkOverlayComponent, selector: \"div[kendoWatermarkOverlay]\" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n exportAs: 'kendoSankey',\n providers: [\n ConfigurationService,\n LocalizationService,\n InstanceEventService,\n SankeyTooltipTemplateService,\n {\n provide: L10N_PREFIX,\n useValue: 'kendo.sankey',\n },\n ],\n selector: 'kendo-sankey',\n template: `\n \n
\n \n \n
\n `,\n standalone: true,\n imports: [LocalizedMessagesDirective, SankeyTooltipPopupComponent, NgIf, WatermarkOverlayComponent]\n }]\n }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: ConfigurationService }, { type: ThemeService }, { type: i4.LocalizationService }, { type: InstanceEventService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: i3.IntlService }]; }, propDecorators: { data: [{\n type: Input\n }], links: [{\n type: Input\n }], nodes: [{\n type: Input\n }], labels: [{\n type: Input\n }], title: [{\n type: Input\n }], legend: [{\n type: Input\n }], tooltip: [{\n type: Input\n }], disableAutoLayout: [{\n type: Input\n }], navigable: [{\n type: Input\n }], popupSettings: [{\n type: Input\n }], nodeEnter: [{\n type: Output\n }], nodeLeave: [{\n type: Output\n }], nodeClick: [{\n type: Output\n }], linkEnter: [{\n type: Output\n }], linkLeave: [{\n type: Output\n }], linkClick: [{\n type: Output\n }], tooltipInstance: [{\n type: ViewChild,\n args: [SankeyTooltipPopupComponent, { static: true }]\n }], instanceElement: [{\n type: ViewChild,\n args: ['instance', { static: true }]\n }] } });\n\n/**\n * Arguments for the `dataBound` event of the [`[kendoSankeyFlatBinding]`]({% slug api_charts_sankeyflatbindingdirective %}) directive.\n */\nclass SankeyFlatBindingDataBoundEvent {\n /**\n * @hidden\n */\n constructor(data) {\n this.data = data;\n }\n}\n\n/**\n * A directive which encapsulates the retrieval of the nodes and links when flat data is provided.\n *\n * See [Data Binding - Binding to Flat Data]({% slug data_binding_sankey %}#toc-binding-to-flat-data).\n */\nclass SankeyFlatBindingDirective {\n constructor(sankey) {\n this.sankey = sankey;\n /**\n * Represents the fields which identify the nodes.\n */\n this.dimensionFields = [];\n /**\n * Fires when the flat data has been converted to `SankeyData`.\n *\n * To customize the created nodes and links, modify the data.\n */\n this.dataBound = new EventEmitter();\n }\n ngOnChanges(changes) {\n if (!isChanged('data', changes, false)) {\n return;\n }\n if (this.dimensionFields?.length === 0) {\n throw new Error('kendoSankeyFlatBinding: dimensionFields is required');\n }\n if (!this.valueField) {\n throw new Error('kendoSankeyFlatBinding: valueField is required');\n }\n const dimensions = this.dimensionFields.map(field => ({ value: getter(field) }));\n const measure = { value: getter(this.valueField) };\n const data = createSankeyData(this.data, dimensions, measure);\n this.dataBound.emit(new SankeyFlatBindingDataBoundEvent(data));\n this.sankey.notifyChanges({ data });\n }\n}\nSankeyFlatBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyFlatBindingDirective, deps: [{ token: SankeyComponent }], target: i0.ɵɵFactoryTarget.Directive });\nSankeyFlatBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyFlatBindingDirective, isStandalone: true, selector: \"[kendoSankeyFlatBinding]\", inputs: { data: [\"kendoSankeyFlatBinding\", \"data\"], dimensionFields: \"dimensionFields\", valueField: \"valueField\" }, outputs: { dataBound: \"dataBound\" }, usesOnChanges: true, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyFlatBindingDirective, decorators: [{\n type: Directive,\n args: [{\n selector: '[kendoSankeyFlatBinding]',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: SankeyComponent }]; }, propDecorators: { data: [{\n type: Input,\n args: ['kendoSankeyFlatBinding']\n }], dimensionFields: [{\n type: Input\n }], valueField: [{\n type: Input\n }], dataBound: [{\n type: Output\n }] } });\n\n/**\n * The configuration options of the Sankey labels\n * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)).\n */\nclass SankeyLabelsComponent extends SettingsComponent {\n constructor(configurationService) {\n super('labels', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLabelsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLabelsComponent, isStandalone: true, selector: \"kendo-sankey-labels\", inputs: { visible: \"visible\", font: \"font\", color: \"color\", align: \"align\", position: \"position\", padding: \"padding\", margin: \"margin\", border: \"border\", offset: \"offset\", stroke: \"stroke\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLabelsComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-labels',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { visible: [{\n type: Input\n }], font: [{\n type: Input\n }], color: [{\n type: Input\n }], align: [{\n type: Input\n }], position: [{\n type: Input\n }], padding: [{\n type: Input\n }], margin: [{\n type: Input\n }], border: [{\n type: Input\n }], offset: [{\n type: Input\n }], stroke: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey legend\n * ([see example]({% slug legend_sankey %})).\n */\nclass SankeyLegendComponent extends SettingsComponent {\n constructor(configurationService) {\n super('legend', configurationService);\n this.configurationService = configurationService;\n this.markAsVisible();\n }\n}\nSankeyLegendComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLegendComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyLegendComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLegendComponent, isStandalone: true, selector: \"kendo-sankey-legend\", inputs: { align: \"align\", background: \"background\", border: \"border\", height: \"height\", labels: \"labels\", margin: \"margin\", offsetX: \"offsetX\", offsetY: \"offsetY\", orientation: \"orientation\", padding: \"padding\", position: \"position\", reverse: \"reverse\", visible: \"visible\", width: \"width\", markers: \"markers\", spacing: \"spacing\", title: \"title\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLegendComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-legend',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], height: [{\n type: Input\n }], labels: [{\n type: Input\n }], margin: [{\n type: Input\n }], offsetX: [{\n type: Input\n }], offsetY: [{\n type: Input\n }], orientation: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], reverse: [{\n type: Input\n }], visible: [{\n type: Input\n }], width: [{\n type: Input\n }], markers: [{\n type: Input\n }], spacing: [{\n type: Input\n }], title: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey links\n * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)).\n */\nclass SankeyLinksComponent extends SettingsComponent {\n constructor(configurationService) {\n super('links', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyLinksComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinksComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyLinksComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyLinksComponent, isStandalone: true, selector: \"kendo-sankey-links\", inputs: { colorType: \"colorType\", color: \"color\", opacity: \"opacity\", highlight: \"highlight\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyLinksComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-links',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { colorType: [{\n type: Input\n }], color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], highlight: [{\n type: Input\n }] } });\n\n/**\n * Custom component messages override default component messages.\n * @example\n * ```html\n * \n * \n * \n * ```\n */\nclass SankeyCustomMessagesComponent extends Messages {\n constructor(service) {\n super();\n this.service = service;\n }\n get override() {\n return true;\n }\n}\nSankeyCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyCustomMessagesComponent, deps: [{ token: i4.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyCustomMessagesComponent, isStandalone: true, selector: \"kendo-sankey-messages\", providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => SankeyCustomMessagesComponent)\n }\n ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyCustomMessagesComponent, decorators: [{\n type: Component,\n args: [{\n providers: [\n {\n provide: Messages,\n useExisting: forwardRef(() => SankeyCustomMessagesComponent)\n }\n ],\n selector: 'kendo-sankey-messages',\n template: ``,\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: i4.LocalizationService }]; } });\n\n/**\n * The configuration options of the Sankey nodes\n * ([see example](slug:customization_sankey#toc-customizing-the-sankey-diagram-elements)).\n */\nclass SankeyNodesComponent extends SettingsComponent {\n constructor(configurationService) {\n super('nodes', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyNodesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyNodesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyNodesComponent, isStandalone: true, selector: \"kendo-sankey-nodes\", inputs: { colorType: \"colorType\", color: \"color\", opacity: \"opacity\", offset: \"offset\", padding: \"padding\", width: \"width\", align: \"align\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyNodesComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-nodes',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { colorType: [{\n type: Input\n }], color: [{\n type: Input\n }], opacity: [{\n type: Input\n }], offset: [{\n type: Input\n }], padding: [{\n type: Input\n }], width: [{\n type: Input\n }], align: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey title or text\n * ([see example]({% slug title_sankey %})).\n *\n * @example\n * ```html\n * \n * \n * ...\n * \n * ```\n */\nclass SankeyTitleComponent extends SettingsComponent {\n constructor(configurationService) {\n super('title', configurationService);\n this.configurationService = configurationService;\n }\n}\nSankeyTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTitleComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyTitleComponent, isStandalone: true, selector: \"kendo-sankey-title\", inputs: { align: \"align\", background: \"background\", border: \"border\", color: \"color\", font: \"font\", margin: \"margin\", padding: \"padding\", position: \"position\", text: \"text\", description: \"description\", visible: \"visible\" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTitleComponent, decorators: [{\n type: Component,\n args: [{\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'kendo-sankey-title',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { align: [{\n type: Input\n }], background: [{\n type: Input\n }], border: [{\n type: Input\n }], color: [{\n type: Input\n }], font: [{\n type: Input\n }], margin: [{\n type: Input\n }], padding: [{\n type: Input\n }], position: [{\n type: Input\n }], text: [{\n type: Input\n }], description: [{\n type: Input\n }], visible: [{\n type: Input\n }] } });\n\n/**\n * The configuration options of the Sankey tooltip\n * ([see example]({% slug tooltip_sankey %})).\n */\nclass SankeyTooltipComponent extends SettingsComponent {\n constructor(configurationService, templateService) {\n super('tooltip', configurationService);\n this.configurationService = configurationService;\n this.templateService = templateService;\n this.markAsVisible();\n }\n ngAfterContentChecked() {\n this.templateService.linkTemplate = this.linkTooltipTemplate?.templateRef;\n this.templateService.nodeTemplate = this.nodeTooltipTemplate?.templateRef;\n }\n}\nSankeyTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipComponent, deps: [{ token: ConfigurationService }, { token: SankeyTooltipTemplateService }], target: i0.ɵɵFactoryTarget.Component });\nSankeyTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.2.10\", type: SankeyTooltipComponent, isStandalone: true, selector: \"kendo-sankey-tooltip\", inputs: { followPointer: \"followPointer\", delay: \"delay\", offset: \"offset\", visible: \"visible\" }, queries: [{ propertyName: \"linkTooltipTemplate\", first: true, predicate: SankeyLinkTooltipTemplateDirective, descendants: true }, { propertyName: \"nodeTooltipTemplate\", first: true, predicate: SankeyNodeTooltipTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyTooltipComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'kendo-sankey-tooltip',\n template: '',\n standalone: true\n }]\n }], ctorParameters: function () { return [{ type: ConfigurationService }, { type: SankeyTooltipTemplateService }]; }, propDecorators: { followPointer: [{\n type: Input\n }], delay: [{\n type: Input\n }], offset: [{\n type: Input\n }], visible: [{\n type: Input\n }], linkTooltipTemplate: [{\n type: ContentChild,\n args: [SankeyLinkTooltipTemplateDirective, { static: false }]\n }], nodeTooltipTemplate: [{\n type: ContentChild,\n args: [SankeyNodeTooltipTemplateDirective, { static: false }]\n }] } });\n\n/**\n * Utility array that contains all `Chart` related components and directives\n */\nconst KENDO_CHART = [\n ChartComponent,\n DonutCenterTemplateDirective,\n XAxisComponent,\n XAxisCrosshairComponent,\n XAxisCrosshairTooltipComponent,\n XAxisItemComponent,\n XAxisLabelsComponent,\n XAxisNotesComponent,\n XAxisNotesIconComponent,\n XAxisNotesLabelComponent,\n XAxisTitleComponent,\n YAxisComponent,\n YAxisCrosshairComponent,\n YAxisCrosshairTooltipComponent,\n YAxisItemComponent,\n YAxisLabelsComponent,\n YAxisNotesComponent,\n YAxisNotesIconComponent,\n YAxisNotesLabelComponent,\n YAxisTitleComponent,\n ZoomableComponent,\n TooltipPopupComponent,\n SeriesTooltipTemplateDirective,\n SharedTooltipTemplateDirective,\n CrosshairTooltipsContainerComponent,\n CrosshairTooltipComponent,\n AxisDefaultsComponent,\n AxisDefaultsCrosshairComponent,\n AxisDefaultsCrosshairTooltipComponent,\n AxisDefaultsLabelsComponent,\n AxisDefaultsTitleComponent,\n CategoryAxisComponent,\n CategoryAxisCrosshairComponent,\n CategoryAxisCrosshairTooltipComponent,\n CategoryAxisItemComponent,\n CategoryAxisLabelsComponent,\n CategoryAxisRangeLabelsComponent,\n CategoryAxisNotesComponent,\n CategoryAxisNotesIconComponent,\n CategoryAxisNotesLabelComponent,\n CategoryAxisSelectComponent,\n CategoryAxisTitleComponent,\n ChartAreaComponent,\n ChartBreadcrumbComponent,\n LegendComponent,\n LegendInactiveItemsComponent,\n LegendItemComponent,\n PaneComponent,\n PaneDefaultsComponent,\n PaneDefaultsTitleComponent,\n PanesComponent,\n PanesTitleComponent,\n PlotAreaComponent,\n SeriesComponent,\n SeriesDefaultsComponent,\n SeriesDefaultsLabelsComponent,\n SeriesDefaultsLabelsFromComponent,\n SeriesDefaultsLabelsToComponent,\n SeriesDefaultsNotesComponent,\n SeriesDefaultsNotesIconComponent,\n SeriesDefaultsNotesLabelComponent,\n SeriesDefaultsTooltipComponent,\n SeriesDrilldownTemplateDirective,\n SeriesErrorBarsComponent,\n SeriesExtremesComponent,\n SeriesHighlightComponent,\n SeriesItemComponent,\n SeriesLabelsComponent,\n SeriesLabelsFromComponent,\n SeriesLabelsToComponent,\n SeriesMarkersComponent,\n SeriesNotesComponent,\n SeriesNotesIconComponent,\n SeriesNotesLabelComponent,\n SeriesOutliersComponent,\n SeriesTooltipComponent,\n SeriesTrendlineComponent,\n SeriesTrendlineForecastComponent,\n SubtitleComponent,\n TitleComponent,\n TooltipComponent,\n ValueAxisComponent,\n ValueAxisCrosshairComponent,\n ValueAxisCrosshairTooltipComponent,\n ValueAxisItemComponent,\n ValueAxisLabelsComponent,\n ValueAxisNotesComponent,\n ValueAxisNotesIconComponent,\n ValueAxisNotesLabelComponent,\n ValueAxisTitleComponent\n];\n/**\n * Utility array that contains all `SparkLine` related components and directives\n */\nconst KENDO_SPARKLINE = [\n SparklineComponent\n];\n/**\n * Utility array that contains all `StockChart` related components and directives\n */\nconst KENDO_STOCKCHART = [\n StockChartComponent,\n NavigatorComponent,\n NavigatorCategoryAxisComponent,\n NavigatorCategoryAxisCrosshairComponent,\n NavigatorCategoryAxisCrosshairTooltipComponent,\n NavigatorCategoryAxisLabelsComponent,\n NavigatorCategoryAxisNotesComponent,\n NavigatorCategoryAxisNotesIconComponent,\n NavigatorCategoryAxisNotesLabelComponent,\n NavigatorCategoryAxisSelectComponent,\n NavigatorCategoryAxisTitleComponent,\n NavigatorHintComponent,\n NavigatorPaneComponent,\n NavigatorPaneTitleComponent,\n NavigatorSelectComponent,\n NavigatorSeriesComponent,\n NavigatorSeriesItemComponent,\n NavigatorSeriesErrorBarsComponent,\n NavigatorSeriesExtremesComponent,\n NavigatorSeriesHighlightComponent,\n NavigatorSeriesLabelsComponent,\n NavigatorSeriesLabelsFromComponent,\n NavigatorSeriesLabelsToComponent,\n NavigatorSeriesMarkersComponent,\n NavigatorSeriesNotesComponent,\n NavigatorSeriesNotesIconComponent,\n NavigatorSeriesNotesLabelComponent,\n NavigatorSeriesOutliersComponent,\n NavigatorSeriesTooltipComponent,\n TooltipPopupComponent,\n SeriesTooltipTemplateDirective,\n SharedTooltipTemplateDirective,\n CrosshairTooltipsContainerComponent,\n CrosshairTooltipComponent,\n AxisDefaultsComponent,\n AxisDefaultsCrosshairComponent,\n AxisDefaultsCrosshairTooltipComponent,\n AxisDefaultsLabelsComponent,\n AxisDefaultsTitleComponent,\n CategoryAxisComponent,\n CategoryAxisCrosshairComponent,\n CategoryAxisCrosshairTooltipComponent,\n CategoryAxisItemComponent,\n CategoryAxisLabelsComponent,\n CategoryAxisRangeLabelsComponent,\n CategoryAxisNotesComponent,\n CategoryAxisNotesIconComponent,\n CategoryAxisNotesLabelComponent,\n CategoryAxisSelectComponent,\n CategoryAxisTitleComponent,\n ChartAreaComponent,\n ChartBreadcrumbComponent,\n LegendComponent,\n LegendInactiveItemsComponent,\n LegendItemComponent,\n PaneComponent,\n PaneDefaultsComponent,\n PaneDefaultsTitleComponent,\n PanesComponent,\n PanesTitleComponent,\n PlotAreaComponent,\n SeriesComponent,\n SeriesDefaultsComponent,\n SeriesDefaultsLabelsComponent,\n SeriesDefaultsLabelsFromComponent,\n SeriesDefaultsLabelsToComponent,\n SeriesDefaultsNotesComponent,\n SeriesDefaultsNotesIconComponent,\n SeriesDefaultsNotesLabelComponent,\n SeriesDefaultsTooltipComponent,\n SeriesDrilldownTemplateDirective,\n SeriesErrorBarsComponent,\n SeriesExtremesComponent,\n SeriesHighlightComponent,\n SeriesItemComponent,\n SeriesLabelsComponent,\n SeriesLabelsFromComponent,\n SeriesLabelsToComponent,\n SeriesMarkersComponent,\n SeriesNotesComponent,\n SeriesNotesIconComponent,\n SeriesNotesLabelComponent,\n SeriesOutliersComponent,\n SeriesTooltipComponent,\n SeriesTrendlineComponent,\n SeriesTrendlineForecastComponent,\n SubtitleComponent,\n TitleComponent,\n TooltipComponent,\n ValueAxisComponent,\n ValueAxisCrosshairComponent,\n ValueAxisCrosshairTooltipComponent,\n ValueAxisItemComponent,\n ValueAxisLabelsComponent,\n ValueAxisNotesComponent,\n ValueAxisNotesIconComponent,\n ValueAxisNotesLabelComponent,\n ValueAxisTitleComponent\n];\n/**\n * Utility array that contains all `Sankey` related components and directives\n */\nconst KENDO_SANKEY = [\n SankeyComponent,\n SankeyTooltipPopupComponent,\n SankeyLinkTooltipTemplateDirective,\n SankeyNodeTooltipTemplateDirective,\n SankeyCustomMessagesComponent,\n LocalizedMessagesDirective,\n SankeyTitleComponent,\n SankeyLegendComponent,\n SankeyTooltipComponent,\n SankeyLinksComponent,\n SankeyNodesComponent,\n SankeyLabelsComponent,\n SankeyFlatBindingDirective\n];\n/**\n * Utility array that contains all `@progress/kendo-angular-charts` related components and directives\n */\nconst KENDO_CHARTS = [\n ...KENDO_CHART,\n ...KENDO_SPARKLINE,\n ...KENDO_STOCKCHART,\n ...KENDO_SANKEY\n];\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.\n *\n * Imports the ChartModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Chart component.\n * @example\n * ```ts\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { ChartModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, ChartModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass ChartModule {\n}\nChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, imports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent], exports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent] });\nChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, providers: [IconsService, ResizeBatchService, PopupService, ThemeService], imports: [ChartComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_CHART],\n exports: [...KENDO_CHART],\n providers: [IconsService, ResizeBatchService, PopupService, ThemeService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the StockChart component and directives.\n *\n * Imports the StockChartModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the StockChart component.\n *\n * @example\n * ```ts-no-run\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { StockChartModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, StockChartModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass StockChartModule {\n}\nStockChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nStockChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, imports: [StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent], exports: [StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, ChartModule] });\nStockChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, providers: [ThemeService, IconsService, PopupService, ResizeBatchService], imports: [StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, ChartModule] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: StockChartModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_STOCKCHART],\n exports: [...KENDO_STOCKCHART, ChartModule],\n providers: [ThemeService, IconsService, PopupService, ResizeBatchService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Sparkline component and directives.\n *\n * Imports the SparklineModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Sparkline component.\n *\n * @example\n * ```ts-no-run\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { SparklineModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, SparklineModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass SparklineModule {\n}\nSparklineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nSparklineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, imports: [SparklineComponent], exports: [SparklineComponent, ChartModule] });\nSparklineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, providers: [ThemeService, IconsService, PopupService, ResizeBatchService], imports: [KENDO_SPARKLINE, ChartModule] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SparklineModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_SPARKLINE],\n exports: [...KENDO_SPARKLINE, ChartModule],\n providers: [ThemeService, IconsService, PopupService, ResizeBatchService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes all Chart components and directives.\n *\n * Imports the ChartsModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Charts components.\n *\n * @example\n * ```ts\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { ChartsModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, ChartsModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass ChartsModule {\n}\nChartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nChartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, imports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SparklineComponent, StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective], exports: [ChartComponent, DonutCenterTemplateDirective, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SparklineComponent, StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective] });\nChartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, providers: [IconsService, ResizeBatchService, PopupService, ThemeService], imports: [ChartComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SparklineComponent, StockChartComponent, NavigatorComponent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesItemComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, TooltipPopupComponent, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, SankeyComponent, SankeyTooltipPopupComponent, SankeyCustomMessagesComponent, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: ChartsModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_CHARTS],\n exports: [...KENDO_CHARTS],\n providers: [IconsService, ResizeBatchService, PopupService, ThemeService]\n }]\n }] });\n\n//IMPORTANT: NgModule export kept for backwards compatibility\n/**\n * A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Sparkline component and directives.\n *\n * Imports the SparklineModule into your application\n * [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module\n * that will use the Sparkline component.\n *\n * @example\n * ```ts-no-run\n * import { NgModule } from '@angular/core';\n * import { BrowserModule } from '@angular/platform-browser';\n * import { SparklineModule } from '@progress/kendo-angular-charts';\n * import { AppComponent } from './app.component';\n *\n * _@NgModule({\n * bootstrap: [AppComponent],\n * declarations: [AppComponent],\n * imports: [BrowserModule, SparklineModule]\n * })\n * export class AppModule {\n * }\n * ```\n */\nclass SankeyModule {\n}\nSankeyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nSankeyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, imports: [SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective], exports: [SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplateDirective, SankeyNodeTooltipTemplateDirective, SankeyCustomMessagesComponent, LocalizedMessagesDirective, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent, SankeyFlatBindingDirective] });\nSankeyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, providers: [IconsService, ResizeBatchService, PopupService, ThemeService], imports: [SankeyComponent, SankeyTooltipPopupComponent, SankeyCustomMessagesComponent, SankeyTitleComponent, SankeyLegendComponent, SankeyTooltipComponent, SankeyLinksComponent, SankeyNodesComponent, SankeyLabelsComponent] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.2.10\", ngImport: i0, type: SankeyModule, decorators: [{\n type: NgModule,\n args: [{\n imports: [...KENDO_SANKEY],\n exports: [...KENDO_SANKEY],\n providers: [IconsService, ResizeBatchService, PopupService, ThemeService]\n }]\n }] });\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, 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, InstanceEventService, KENDO_CHART, KENDO_CHARTS, KENDO_SANKEY, KENDO_SPARKLINE, KENDO_STOCKCHART, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, LocalizedMessagesDirective, 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, SankeyBaseEvent, SankeyComponent, SankeyCustomMessagesComponent, SankeyFlatBindingDataBoundEvent, SankeyFlatBindingDirective, SankeyLabelsComponent, SankeyLegendComponent, SankeyLinkEvent, SankeyLinkTooltipTemplateDirective, SankeyLinksComponent, SankeyModule, SankeyNodeEvent, SankeyNodeTooltipTemplateDirective, SankeyNodesComponent, SankeyTitleComponent, SankeyTooltipComponent, SankeyTooltipPopupComponent, 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, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, ThemeService, 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 };\n\n"],"mappings":"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,GACApV,GACAM,GACAE,GACAhB,EACAoB,GACAK,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAG,GACA2C,GACAI,GACAG,GACAC,GACAE,GACAa,GACAC,GACAC,GACAH,GACAI,GACAC,GACAC,GACAC,GACAC,EAAuB,EAKrB4O,GAAkB,CACpBpT,EAAkB,EAKhBqT,GAAmB,CACrBne,GACA4F,GACAc,GACAG,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAC,GACAI,GACAE,GACAC,GACAI,GACAH,GACAc,GACAE,GACAI,GACAK,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAC,GACAhG,EACA8J,GACAC,GACAhK,EACAqZ,GACA5S,GACAC,GACAC,GACAC,GACAC,GACAC,GACA9E,GACAG,GACAZ,GACAc,GACA0E,GACAxE,GACAE,GACAE,GACAE,GACAE,GACAkE,GACA2D,GACA1D,GACAO,GACAC,GACAxE,GACA4E,GACAC,GACAC,GACA1E,GACA2E,GACApE,GACAqE,GACAI,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACA0Q,GACApV,GACAM,GACAE,GACAhB,EACAoB,GACAK,GACAE,GACAE,GACAE,GACAE,GACAE,GACAE,GACAG,GACA2C,GACAI,GACAG,GACAC,GACAE,GACAa,GACAC,GACAC,GACAH,GACAI,GACAC,GACAC,GACAC,GACAC,EAAuB,EAKrB8O,GAAe,CACjBtG,GACAtE,GACAf,GACAM,GACAsK,GACA1F,GACA6F,GACAN,GACAO,GACAN,GACAI,GACAP,GACAZ,EAA0B,EAKxBiC,GAAe,CACjB,GAAGP,GACH,GAAGI,GACH,GAAGC,GACH,GAAGC,EAAY,EAqHnB,IAuBME,IAAY,IAAA,CAAlB,MAAMA,CAAa,CAAA,CAEnBA,OAAAA,EAAaC,UAAI,SAAAC,EAAA,CAAA,OAAA,IAAAA,GAAyFF,EAAY,EACtHA,EAAaG,UA57RqGC,GAAA,CAAAC,KA47RPL,CAAY,CAAA,EACvHA,EAAaM,UA77RqGC,GAAA,CAAAC,UA67RkB,CAACC,GAAcC,GAAoBC,EAAcC,EAAY,EAACC,QAAA,CAAYC,GAAgBC,GAAgBC,GAAyBC,GAAgCC,GAAoBC,GAAsBC,GAAqBC,GAAyBC,GAA0BC,GAAqBC,GAAgBC,GAAyBC,GAAgCC,GAAoBC,GAAsBC,GAAqBC,GAAyBC,GAA0BC,GAAqBC,GAAmBC,EAAuBC,EAAqCC,GAA2BC,GAAuBC,GAAgCC,GAAuCC,GAA6BC,GAA4BC,GAAuBC,GAAgCC,GAAuCC,GAA2BC,GAA6BC,GAAkCC,GAA4BC,GAAgCC,GAAiCC,GAA6BC,GAA4BC,GAAoBC,GAA0BC,GAAiBC,GAA8BC,GAAqBC,GAAeC,GAAuBC,GAA4BC,GAAgBC,GAAqBC,GAAmBC,GAAiBC,GAAyBC,GAA+BC,GAAmCC,GAAiCC,GAA8BC,GAAkCC,GAAmCC,GAAgCC,GAA0BC,GAAyBC,GAA0BC,EAAqBC,GAAuBC,GAA2BC,GAAyBC,GAAwBC,GAAsBC,GAA0BC,GAA2BC,GAAyBC,GAAwBC,GAA0BC,GAAkCC,GAAmBC,GAAgBC,GAAkBC,GAAoBC,GAA6BC,GAAoCC,GAAwBC,GAA0BC,GAAyBC,GAA6BC,GAA8BC,GAAyBC,GAAoBC,GAAqBC,GAAoBC,GAAgCC,GAAyCC,GAAgDC,GAAsCC,GAAqCC,GAAyCC,GAA0CC,GAAsCC,GAAqCC,GAAwBC,GAAwBC,GAA6BC,GAA0BC,GAA0BC,GAA8BC,GAAmCC,GAAkCC,GAAmCC,GAAgCC,GAAoCC,GAAkCC,GAAiCC,GAA+BC,GAAmCC,GAAoCC,GAAkCC,GAAiC/F,EAAuBC,EAAqCC,GAA2BC,GAAuBC,GAAgCC,GAAuCC,GAA6BC,GAA4BC,GAAuBC,GAAgCC,GAAuCC,GAA2BC,GAA6BC,GAAkCC,GAA4BC,GAAgCC,GAAiCC,GAA6BC,GAA4BC,GAAoBC,GAA0BC,GAAiBC,GAA8BC,GAAqBC,GAAeC,GAAuBC,GAA4BC,GAAgBC,GAAqBC,GAAmBC,GAAiBC,GAAyBC,GAA+BC,GAAmCC,GAAiCC,GAA8BC,GAAkCC,GAAmCC,GAAgCC,GAA0BC,GAAyBC,GAA0BC,EAAqBC,GAAuBC,GAA2BC,GAAyBC,GAAwBC,GAAsBC,GAA0BC,GAA2BC,GAAyBC,GAAwBC,GAA0BC,GAAkCC,GAAmBC,GAAgBC,GAAkBC,GAAoBC,GAA6BC,GAAoCC,GAAwBC,GAA0BC,GAAyBC,GAA6BC,GAA8BC,GAAyB+B,GAAiBC,GAA6BC,GAA+BC,GAAsBC,GAAuBC,GAAwBC,GAAsBC,GAAsBC,EAAqB,CAAA,CAAA,EAJhvK1I,CAAY,GAAA","names":["_c0","CrosshairTooltipComponent_ng_template_0_Template","rf","ctx","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ctx_r0","ɵɵnextContext","ɵɵproperty","style","ɵɵadvance","ɵɵtextInterpolate1","value","CrosshairTooltipsContainerComponent_kendo_chart_crosshair_tooltip_0_Template","ɵɵelement","key_r1","$implicit","ctx_r1","popupSettings","TooltipPopupComponent_ng_template_0_1_ng_template_0_Template","TooltipPopupComponent_ng_template_0_1_Template","ɵɵtemplate","seriesTooltipTemplateRef","seriesTooltipContext","TooltipPopupComponent_ng_template_0_2_ng_template_0_Template","TooltipPopupComponent_ng_template_0_2_Template","seriesSharedTooltipTemplateRef","seriesSharedTooltipContext","TooltipPopupComponent_ng_template_0_Template","popupClasses","shared","TooltipPopupComponent_ng_template_2_Template","formattedValue_r2","formattedValue","ɵɵsanitizeHtml","TooltipPopupComponent_ng_template_3_tr_4_td_1_Template","point_r3","ɵɵstyleProp","series","color","TooltipPopupComponent_ng_template_3_tr_4_td_2_ng_container_1_Template","ɵɵelementContainerStart","ɵɵelementContainerEnd","ɵɵtextInterpolate","name","TooltipPopupComponent_ng_template_3_tr_4_td_2_ng_container_2_Template","TooltipPopupComponent_ng_template_3_tr_4_td_2_Template","undefined","TooltipPopupComponent_ng_template_3_tr_4_ng_template_4_Template","TooltipPopupComponent_ng_template_3_tr_4_Template","ctx_r3","colorMarker_r5","colorMarker","nameColumn_r6","nameColumn","template","TooltipPopupComponent_ng_template_3_Template","points_r7","points","categoryText_r8","categoryText","colspan_r9","colspan","ɵɵattribute","_c1","ChartComponent_div_5_ng_template_1_Template","ChartComponent_div_5_Template","donutCenterStyle","donutCenterTemplate","templateRef","ChartComponent_div_6_Template","StockChartComponent_div_5_Template","SparklineComponent_div_5_Template","_c2","SankeyTooltipPopupComponent_ng_template_0_2_ng_template_0_Template","SankeyTooltipPopupComponent_ng_template_0_2_Template","nodeTooltipTemplateRef","nodeTooltipContext","SankeyTooltipPopupComponent_ng_template_0_3_ng_template_0_Template","SankeyTooltipPopupComponent_ng_template_0_3_Template","linkTooltipTemplateRef","linkTooltipContext","SankeyTooltipPopupComponent_ng_template_0_Template","isNode","isLink","SankeyTooltipPopupComponent_ng_template_2_Template","color_r2","label_r3","label","value_r4","tooltipStyle","textStyle","text","formatUnits","SankeyTooltipPopupComponent_ng_template_3_Template","source_r5","source","target_r6","target","value_r7","arrowIcon","_c3","SankeyComponent_div_4_Template","dateCategoryAxisFormats","DateCategoryAxis","prototype","options","labels","dateFormats","dateValueAxisFormats","DateValueAxis","milliseconds","seconds","time","minutes","hours","days","skeleton","weeks","months","years","Object","assign","DonutCenterTemplateDirective","constructor","ɵfac","__ngFactoryType__","ɵɵdirectiveInject","TemplateRef","ɵdir","ɵɵdefineDirective","type","selectors","ItemChange","sender","CollectionService","Subject","onItemChange$","asObservable","notify","change","next","ɵprov","ɵɵdefineInjectable","token","factory","THROTTLE_MS","Change","key","ConfigurationService","ngZone","store","BehaviorSubject","initSource","onFastChange$","onChange$","pipe","auditTime","push","set","field","parts","split","shift","length","runOutsideAngular","ɵɵinject","NgZone","copyChanges","changes","propertyName","hasOwnProperty","call","currentValue","toSimpleChanges","result","SimpleChange","CollectionItemComponent","configurationService","collectionService","hidden","subscription","subscribe","ngOnChanges","notifyChanges","ngOnDestroy","unsubscribe","standalone","features","ɵɵNgOnChangesFeature","SettingsComponent","configKey","Error","markAsVisible","visible","ɵɵinvalidFactory","SeriesTooltipComponent","seriesTooltipTemplate","ɵcmp","ɵɵdefineComponent","contentQueries","dirIndex","ɵɵcontentQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","first","inputs","background","border","font","format","padding","ɵɵInheritDefinitionFeature","decls","vars","encapsulation","changeDetection","SeriesDrilldownTemplateDirective","toggle","flag","SeriesItemComponent","toggleVisibility","togglePointVisibility","pointIndex","pv","pointVisibility","seriesTooltip","drilldownTemplate","aggregate","autoFit","axis","categoryAxis","categoryField","closeField","colorField","connectors","currentField","dashType","data","downColor","downColorField","drilldownField","dynamicHeight","dynamicSlope","errorHighField","errorLowField","explodeField","fromField","gap","highField","holeSize","line","lowField","lowerField","margin","maxSize","mean","meanField","median","medianField","minSize","missingValues","neckRatio","negativeColor","negativeValues","noteTextField","opacity","openField","outliersField","overlay","q1Field","q3Field","segmentSpacing","size","sizeField","spacing","stack","startAngle","summaryField","toField","upperField","visibleInLegend","visibleInLegendField","visual","width","whiskers","xAxis","xErrorHighField","xErrorLowField","xField","yAxis","yErrorHighField","yErrorLowField","yField","zIndex","trendline","for","legendItem","errorBars","extremes","highlight","markers","notes","outliers","tooltip","ɵɵProvidersFeature","POSITION_MODE","COLLISION","horizontal","vertical","BaseTooltip","popupService","localizationService","popupRef","active","show","e","align","anchor","offset","position","point","open","popupAlign","animate","content","collision","positionMode","rtl","popupElement","setAttribute","onInit","popup","instance","hide","close","appendTo","element","nativeElement","bbox","getBoundingClientRect","scrollLeft","scrollTop","scrollOffset","left","top","parent","parentElement","PopupService","LocalizationService","bodyFactory","isDocumentAvailable","ElementRef","document","body","CrosshairTooltipComponent","changeDetectorRef","detectChanges","viewQuery","ɵɵviewQuery","provide","POPUP_CONTAINER","useFactory","consts","ɵɵtemplateRefExtractor","dependencies","NgStyle","AXES","CrosshairTooltipsContainerComponent","tooltipKeys","tooltipsMap","tooltipComponents","crossahirTooltipComponents","toArray","axisName","axisIndex","idx","createCrosshairTooltips","newMap","mapTooltips","map","removeTooltip","keys","splice","tooltips","axesCrosshairTooltipOptions","tooltipIdx","index","axes","concat","crosshair","NgFor","SeriesTooltipTemplateDirective","SharedTooltipTemplateDirective","TooltipTemplatePoint","category","categoryIndex","categoryIx","dataItem","percentage","runningTotal","total","low","high","xLow","xHigh","yLow","yHigh","formatValue","String","hasParent","current","parentNode","TooltipTemplateService","setTemplate","getTemplate","seriesIndex","seriesTemplates","setSeriesTemplates","setSharedTemplate","sharedTemplate","getSharedTemplate","SHARED_TOOLTIP_CLASS","TOOLTIP_CLASS","TooltipPopupComponent","templateService","wrapperClass","leave","EventEmitter","className","classNames","defaultSharedTooltipTemplate","sharedTemplateContext","pointTemplateRef","containsElement","filter","wrapPoints","defaultSeriesTooltipTemplate","pointFormat","mouseleaveSubscription","addEventListener","args","emit","outputs","NgClass","NgIf","NgTemplateOutlet","ChartInstanceObserver","InstanceObserver","handlerMap","hideTooltip","legendItemClick","render","showTooltip","init","chartDefaultTheme","chartBaseTheme","axisDefaults","majorGridLines","minorGridLines","icon","title","chartArea","legend","inactiveItems","seriesDefaults","boxPlot","bullet","candlestick","horizontalWaterfall","gradient","verticalBoxPlot","verticalBullet","waterfall","area","seriesColors","fontWeight","fontSize","fontFamily","computedBackgroundColor","window","getComputedStyle","backgroundColor","letterPos","letter","toLowerCase","charCodeAt","seriesPos","alpha","match","num","parseInt","SERIES_COLORS","seriesTemplate","i","ThemeService","loaded","loadTheme","readTheme","readDefaultTheme","reset","createElement","available","queryColor","setColors","setFonts","setSeriesColors","destroyElement","container","display","innerHTML","appendChild","removeChild","setStyle","mapColor","querySelector","parseFloat","queryStyle","isNaN","setInactiveOpacity","seriesTypes","selector","inactiveOpacity","forEach","defaultFont","titleFont","paneTitleFont","labelFont","slice","querySelectorAll","unsetColor","reduce","arr","el","pos","varName","styleKey","providedIn","BaseEvent","AxisLabelClickEvent","PreventableEvent","arguments","prevented","preventDefault","isDefaultPrevented","ɵPreventableEvent_BaseFactory","ɵɵgetInheritedFactory","DragEvent","axisRanges","originalEvent","DragEndEvent","DragStartEvent","LegendEvent","LegendItemHoverEvent","LegendItemLeaveEvent","NoteEvent","NoteClickEvent","NoteHoverEvent","NoteLeaveEvent","PaneRenderEvent","PlotAreaClickEvent","x","y","PlotAreaHoverEvent","PlotAreaLeaveEvent","RenderEvent","_e","SelectEvent","from","to","SelectEndEvent","SelectStartEvent","SeriesClickEvent","stackValue","SeriesEvent","SeriesHoverEvent","SeriesOverEvent","SeriesLeaveEvent","ZoomEvent","delta","ZoomEndEvent","ZoomStartEvent","EVENT_MAP$2","axisLabelClick","drag","dragEnd","dragStart","legendItemHover","legendItemLeave","noteClick","noteHover","noteLeave","paneRender","plotAreaClick","plotAreaHover","plotAreaLeave","select","selectEnd","selectStart","seriesClick","seriesHover","seriesOver","seriesLeave","zoom","zoomEnd","zoomStart","InstanceEventService$1","create","LegendItemClickEvent","packageMetadata","productName","productCodes","publishDate","version","licensingDocsUrl","CollectionComponent","items","processChanges","ngAfterContentInit","readItems","children","s","indexOf","SeriesComponent","tooltipTemplateService","viewContainer","ngAfterContentChecked","readTooltipTemplates","templates","item","ViewContainerRef","DrilldownEvent","hasObservers","emitter","observers","ChartComponent","themeService","intl","instanceEventService","changeDetector","renderer","drilldown","drilldownLevelChange","resizeRateLimit","showLicenseWatermark","theme","suppressTransitions","hostClasses","drilldownState","isValid","validatePackage","shouldShowValidationUI","refreshWait","drilldownLevel","level","currentLevel","seriesComponents","removed","view","destroy","ngOnInit","addClass","ngAfterViewInit","canRender","chartMouseleave","listen","surfaceElement","bind","domSubscriptions","setDirection","subscriptions","intlChange","add","rtlChange","onDrilldown","run","seriesCollection","seriesCollectionComponent","seriesComponent","find","sc","createEmbeddedView","drilldownValue","markForCheck","ngAfterViewChecked","autoResize","clearTimeout","resizeTimeout","setTimeout","resize","destroyed","optionsChange","redrawTimeout","createInstance","observer","Chart","intlService","exportImage","exportVisual","exportSVG","findAxisByName","findPaneByIndex","findPaneByName","getPlotArea","plotArea","toggleHighlight","instanceObserver","onResize","reloadTheme","onLegendItemClick","onRender","getDonutCenterStyle","surface","onShowTooltip","crossahirTooltips","tooltipInstance","onHideTooltip","trigger","activeEmitter","requiresHandlers","names","refresh","updateDirection","setChartAreaSize","transitions","updateOptions","height","setOptions","tooltipMouseleave","relatedTarget","chartElement","hideElements","handlingTap","Boolean","firstSeries","charts","_plotArea","firstPoint","center","box","radius","sector","innerRadius","combineLatest","tap","callback","inZone","deferredRedraw","isRTL","noTransitionsRedraw","IntlService","ChangeDetectorRef","Renderer2","pannable","renderAs","subtitle","zoomable","panes","paneDefaults","valueAxis","exportAs","L10N_PREFIX","useValue","_r1","ɵɵgetCurrentView","ɵɵlistener","$event","i0","ɵɵrestoreView","ɵɵresetView","ResizeSensorComponent","WatermarkOverlayComponent","XAxisItemComponent","CollectionItemComponent","constructor","configurationService","collectionService","intl","localeId","notifyChanges","weekStartDay","firstDay","ɵfac","__ngFactoryType__","ɵɵdirectiveInject","ConfigurationService","CollectionService","IntlService","LOCALE_ID","ɵcmp","ɵɵdefineComponent","type","selectors","inputs","axisCrossingValue","background","baseUnit","categories","color","line","majorGridLines","majorTicks","majorUnit","max","min","minorGridLines","minorTicks","minorUnit","name","narrowRange","pane","plotBands","reverse","startAngle","visible","crosshair","labels","notes","title","features","ɵɵProvidersFeature","ɵɵInheritDefinitionFeature","decls","vars","template","rf","ctx","encapsulation","changeDetection","XAxisComponent","CollectionComponent","contentQueries","dirIndex","ɵɵcontentQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","children","XAxisCrosshairComponent","SettingsComponent","markAsVisible","opacity","width","tooltip","XAxisCrosshairTooltipComponent","border","font","format","padding","XAxisLabelsComponent","content","culture","dateFormats","margin","mirror","position","rotation","skip","step","visual","XAxisNotesComponent","data","icon","label","XAxisNotesIconComponent","size","XAxisNotesLabelComponent","XAxisTitleComponent","text","YAxisItemComponent","YAxisComponent","YAxisCrosshairComponent","YAxisCrosshairTooltipComponent","YAxisLabelsComponent","YAxisNotesComponent","YAxisNotesIconComponent","YAxisNotesLabelComponent","YAxisTitleComponent","ZoomableComponent","mousewheel","selection","NavigatorFilterEvent","BaseEvent","e","sender","from","to","RootConfigurationService","ɵRootConfigurationService_BaseFactory","ɵɵgetInheritedFactory","ɵprov","ɵɵdefineInjectable","token","factory","EVENT_MAP$1","navigatorFilter","StockInstanceEventService","InstanceEventService$1","create","args","NAVIGATOR_DEFAULTS","autoBindElements","liveDrag","partialRedraw","StockChartComponent","ChartComponent","themeService","element","localizationService","ngZone","instanceEventService","changeDetector","renderer","drilldown","EventEmitter","drilldownLevelChange","showLicenseWatermark","redrawSlaves","hostClasses","isValid","validatePackage","packageMetadata","shouldShowValidationUI","drilldownLevel","drilldownState","length","skipNavigatorRedraw","createInstance","observer","applyNavigatorDefaults","isDevMode","options","zoomable","pannable","Error","instance","StockChart","theme","intlService","rtl","updateOptions","applyOptions","bindCategories","navigator","setOptions","Object","assign","ThemeService","ElementRef","LocalizationService","NgZone","ChangeDetectorRef","Renderer2","outputs","exportAs","TooltipTemplateService","provide","useExisting","L10N_PREFIX","useValue","consts","_r1","ɵɵgetCurrentView","ɵɵelement","ɵɵelementStart","ɵɵlistener","$event","i0","ɵɵrestoreView","ɵɵresetView","tooltipMouseleave","ɵɵelementEnd","onResize","ɵɵtemplate","StockChartComponent_div_5_Template","ɵɵadvance","ɵɵproperty","popupSettings","dependencies","CrosshairTooltipsContainerComponent","TooltipPopupComponent","ResizeSensorComponent","NgIf","WatermarkOverlayComponent","PREFIX","InjectionToken","PrefixConfigurationService","rootService","prefix","push","store","notify","Change","change","key","ɵɵinject","NavigatorComponent","categoryAxis","hint","select","series","useClass","CategoryAxisItemComponent","autoBaseUnitSteps","baseUnitStep","justified","maxDateGroups","maxDivisions","roundToBaseUnit","rangeLabels","NavigatorCategoryAxisComponent","CategoryAxisCrosshairComponent","dashType","NavigatorCategoryAxisCrosshairComponent","CategoryAxisCrosshairTooltipComponent","NavigatorCategoryAxisCrosshairTooltipComponent","CategoryAxisLabelsComponent","NavigatorCategoryAxisLabelsComponent","CategoryAxisNotesComponent","NavigatorCategoryAxisNotesComponent","CategoryAxisNotesIconComponent","NavigatorCategoryAxisNotesIconComponent","CategoryAxisNotesLabelComponent","NavigatorCategoryAxisNotesLabelComponent","CategoryAxisSelectComponent","NavigatorCategoryAxisSelectComponent","CategoryAxisTitleComponent","NavigatorCategoryAxisTitleComponent","NavigatorHintComponent","PaneComponent","clip","height","NavigatorPaneComponent","PanesTitleComponent","NavigatorPaneTitleComponent","NavigatorSelectComponent","NavigatorSeriesItemComponent","SeriesItemComponent","drilldownField","NavigatorSeriesComponent","SeriesComponent","tooltipTemplateService","viewContainer","readTooltipTemplates","ViewContainerRef","SeriesErrorBarsComponent","endCaps","value","xValue","yValue","NavigatorSeriesErrorBarsComponent","SeriesExtremesComponent","NavigatorSeriesExtremesComponent","SeriesHighlightComponent","markers","toggle","NavigatorSeriesHighlightComponent","SeriesLabelsComponent","align","ariaContent","distance","NavigatorSeriesLabelsComponent","SeriesLabelsFromComponent","NavigatorSeriesLabelsFromComponent","SeriesLabelsToComponent","NavigatorSeriesLabelsToComponent","SeriesMarkersComponent","NavigatorSeriesMarkersComponent","SeriesNotesComponent","NavigatorSeriesNotesComponent","SeriesNotesIconComponent","NavigatorSeriesNotesIconComponent","SeriesNotesLabelComponent","NavigatorSeriesNotesLabelComponent","SeriesOutliersComponent","NavigatorSeriesOutliersComponent","NavigatorSeriesTooltipComponent","SeriesTooltipComponent","SparklineComponent","tooltipWrapperClass","tooltipContentClasses","Sparkline","normalizeOptions","SparklineComponent_div_5_Template","AxisDefaultsComponent","AxisDefaultsCrosshairComponent","AxisDefaultsCrosshairTooltipComponent","AxisDefaultsLabelsComponent","AxisDefaultsTitleComponent","CategoryAxisComponent","CategoryAxisRangeLabelsComponent","configKey","ChartAreaComponent","LegendComponent","offsetX","offsetY","orientation","spacing","inactiveItems","item","LegendInactiveItemsComponent","LegendItemComponent","cursor","area","highlight","PaneDefaultsComponent","PaneDefaultsTitleComponent","PanesComponent","PlotAreaComponent","SeriesDefaultsComponent","gap","overlay","stack","SeriesDefaultsLabelsComponent","SeriesDefaultsLabelsFromComponent","SeriesDefaultsLabelsToComponent","SeriesDefaultsNotesComponent","SeriesDefaultsNotesIconComponent","SeriesDefaultsNotesLabelComponent","SeriesDefaultsTooltipComponent","SeriesTrendlineComponent","period","order","forecast","SeriesTrendlineForecastComponent","before","after","SubtitleComponent","TitleComponent","description","TooltipComponent","templateService","ngAfterContentChecked","setTemplate","seriesTooltipTemplate","templateRef","setSharedTemplate","sharedTooltipTemplate","SeriesTooltipTemplateDirective","SharedTooltipTemplateDirective","first","shared","ValueAxisItemComponent","ValueAxisComponent","ValueAxisCrosshairComponent","ValueAxisCrosshairTooltipComponent","ValueAxisLabelsComponent","ValueAxisNotesComponent","ValueAxisNotesIconComponent","ValueAxisNotesLabelComponent","ValueAxisTitleComponent","ChartBreadcrumbComponent","rootItem","svgIcon","homeIcon","subscription","Subscription","ngOnInit","items","chart","add","subscribe","onDrilldown","bind","onDrilldownLevelChange","ngOnChanges","changes","rootItemChange","currentValue","ngOnDestroy","unsubscribe","onItemClick","target","findIndex","point","category","toString","level","slice","viewQuery","ɵɵviewQuery","_c2","breadcrumb","ɵɵNgOnChangesFeature","BreadCrumbComponent","SankeyBaseEvent","PreventableEvent$1","originalEvent","SankeyNodeEvent","dataItem","SankeyLinkEvent","EVENT_MAP","nodeEnter","nodeLeave","linkEnter","linkLeave","nodeClick","linkClick","InstanceEventService","SankeyLinkTooltipTemplateContext","source","SankeyLinkTooltipTemplateDirective","TemplateRef","ɵdir","ɵɵdefineDirective","SankeyNodeTooltipTemplateContext","nodeValue","SankeyNodeTooltipTemplateDirective","SankeyTooltipTemplateService","SquareSymbol","display","marginLeft","hostVars","hostBindings","ɵɵstyleProp","DEFAULT_OFFSET","SankeyTooltipPopupComponent","BaseTooltip","popupService","animate","wrapperClass","arrowIcon","arrowRightIcon","textStyle","tooltipStyle","alignItems","onInit","popupRef","popupElement","className","ngAfterViewInit","setDirection","subscriptions","rtlChange","show","isNode","targetType","isLink","nodeTooltipTemplateRef","nodeTemplate","defaultNodeTooltipTemplate","nodeTooltipContext","linkTooltipTemplateRef","linkTemplate","defaultLinkTooltipTemplate","linkTooltipContext","style","anchor","tooltipData","popupAlign","tooltipAnchor","nativeElement","offsetWidth","offsetHeight","__spreadValues","popupOffset","offset","left","horizontal","vertical","top","formatUnits","tooltipUnitFormat","arrowLeftIcon","isRTL","setAttribute","Boolean","PopupService","_c0","POPUP_CONTAINER","useFactory","bodyFactory","SankeyTooltipPopupComponent_ng_template_0_Template","ɵɵtemplateRefExtractor","SankeyTooltipPopupComponent_ng_template_2_Template","SankeyTooltipPopupComponent_ng_template_3_Template","NgStyle","NgTemplateOutlet","IconWrapperComponent","Messages","ComponentMessages","ɵMessages_BaseFactory","standalone","LocalizedMessagesDirective","service","forwardRef","SankeyComponent","navigable","loadTheme","refreshWait","intlChange","copyChanges","toSimpleChanges","destroyed","optionsChange","destroy","clearTimeout","redrawTimeout","messageFor","get","Sankey","instanceOptions","forEach","eventName","trigger","onShowTooltip","onHideTooltip","exportImage","exportVisual","exportSVG","init","canRender","instanceElement","reloadTheme","reset","run","tooltipInstance","active","hide","detectChanges","emitter","activeEmitter","emit","isDefaultPrevented","requiresHandlers","names","idx","refresh","isDocumentAvailable","__spreadProps","disableKeyboardNavigation","hasObservers","runOutsideAngular","combineLatest","onChange$","pipe","tap","result","auditTime","THROTTLE_MS","chartTheme","nodeColors","seriesColors","callback","inZone","markForCheck","_c3","links","nodes","legend","disableAutoLayout","i18n_0","$localize","ɵɵelementContainer","SankeyComponent_div_4_Template","SankeyFlatBindingDataBoundEvent","SankeyFlatBindingDirective","sankey","dimensionFields","dataBound","isChanged","valueField","dimensions","map","field","getter","measure","createSankeyData","SankeyLabelsComponent","stroke","SankeyLegendComponent","SankeyLinksComponent","colorType","SankeyCustomMessagesComponent","override","SankeyNodesComponent","SankeyTitleComponent","SankeyTooltipComponent","linkTooltipTemplate","nodeTooltipTemplate","followPointer","delay","KENDO_CHART","DonutCenterTemplateDirective","CrosshairTooltipComponent","SeriesDrilldownTemplateDirective","KENDO_SPARKLINE","KENDO_STOCKCHART","KENDO_SANKEY","KENDO_CHARTS","ChartsModule","ɵfac","__ngFactoryType__","ɵmod","ɵɵdefineNgModule","type","ɵinj","ɵɵdefineInjector","providers","IconsService","ResizeBatchService","PopupService","ThemeService","imports","ChartComponent","XAxisComponent","XAxisCrosshairComponent","XAxisCrosshairTooltipComponent","XAxisItemComponent","XAxisLabelsComponent","XAxisNotesComponent","XAxisNotesIconComponent","XAxisNotesLabelComponent","XAxisTitleComponent","YAxisComponent","YAxisCrosshairComponent","YAxisCrosshairTooltipComponent","YAxisItemComponent","YAxisLabelsComponent","YAxisNotesComponent","YAxisNotesIconComponent","YAxisNotesLabelComponent","YAxisTitleComponent","ZoomableComponent","TooltipPopupComponent","CrosshairTooltipsContainerComponent","CrosshairTooltipComponent","AxisDefaultsComponent","AxisDefaultsCrosshairComponent","AxisDefaultsCrosshairTooltipComponent","AxisDefaultsLabelsComponent","AxisDefaultsTitleComponent","CategoryAxisComponent","CategoryAxisCrosshairComponent","CategoryAxisCrosshairTooltipComponent","CategoryAxisItemComponent","CategoryAxisLabelsComponent","CategoryAxisRangeLabelsComponent","CategoryAxisNotesComponent","CategoryAxisNotesIconComponent","CategoryAxisNotesLabelComponent","CategoryAxisSelectComponent","CategoryAxisTitleComponent","ChartAreaComponent","ChartBreadcrumbComponent","LegendComponent","LegendInactiveItemsComponent","LegendItemComponent","PaneComponent","PaneDefaultsComponent","PaneDefaultsTitleComponent","PanesComponent","PanesTitleComponent","PlotAreaComponent","SeriesComponent","SeriesDefaultsComponent","SeriesDefaultsLabelsComponent","SeriesDefaultsLabelsFromComponent","SeriesDefaultsLabelsToComponent","SeriesDefaultsNotesComponent","SeriesDefaultsNotesIconComponent","SeriesDefaultsNotesLabelComponent","SeriesDefaultsTooltipComponent","SeriesErrorBarsComponent","SeriesExtremesComponent","SeriesHighlightComponent","SeriesItemComponent","SeriesLabelsComponent","SeriesLabelsFromComponent","SeriesLabelsToComponent","SeriesMarkersComponent","SeriesNotesComponent","SeriesNotesIconComponent","SeriesNotesLabelComponent","SeriesOutliersComponent","SeriesTooltipComponent","SeriesTrendlineComponent","SeriesTrendlineForecastComponent","SubtitleComponent","TitleComponent","TooltipComponent","ValueAxisComponent","ValueAxisCrosshairComponent","ValueAxisCrosshairTooltipComponent","ValueAxisItemComponent","ValueAxisLabelsComponent","ValueAxisNotesComponent","ValueAxisNotesIconComponent","ValueAxisNotesLabelComponent","ValueAxisTitleComponent","SparklineComponent","StockChartComponent","NavigatorComponent","NavigatorCategoryAxisComponent","NavigatorCategoryAxisCrosshairComponent","NavigatorCategoryAxisCrosshairTooltipComponent","NavigatorCategoryAxisLabelsComponent","NavigatorCategoryAxisNotesComponent","NavigatorCategoryAxisNotesIconComponent","NavigatorCategoryAxisNotesLabelComponent","NavigatorCategoryAxisSelectComponent","NavigatorCategoryAxisTitleComponent","NavigatorHintComponent","NavigatorPaneComponent","NavigatorPaneTitleComponent","NavigatorSelectComponent","NavigatorSeriesComponent","NavigatorSeriesItemComponent","NavigatorSeriesErrorBarsComponent","NavigatorSeriesExtremesComponent","NavigatorSeriesHighlightComponent","NavigatorSeriesLabelsComponent","NavigatorSeriesLabelsFromComponent","NavigatorSeriesLabelsToComponent","NavigatorSeriesMarkersComponent","NavigatorSeriesNotesComponent","NavigatorSeriesNotesIconComponent","NavigatorSeriesNotesLabelComponent","NavigatorSeriesOutliersComponent","NavigatorSeriesTooltipComponent","SankeyComponent","SankeyTooltipPopupComponent","SankeyCustomMessagesComponent","SankeyTitleComponent","SankeyLegendComponent","SankeyTooltipComponent","SankeyLinksComponent","SankeyNodesComponent","SankeyLabelsComponent"],"x_google_ignoreList":[0]}