UNPKG

devextreme-angular

Version:

Angular UI and visualization components based on DevExtreme widgets

1 lines • 534 kB
{"version":3,"file":"devextreme-angular-ui-polar-chart-nested.mjs","sources":["../../../dist/ui/polar-chart/nested/adaptive-layout.ts","../../../dist/ui/polar-chart/nested/animation.ts","../../../dist/ui/polar-chart/nested/annotation-border.ts","../../../dist/ui/polar-chart/nested/annotation-dxi.ts","../../../dist/ui/polar-chart/nested/argument-axis-minor-tick.ts","../../../dist/ui/polar-chart/nested/argument-axis-tick.ts","../../../dist/ui/polar-chart/nested/constant-line-dxi.ts","../../../dist/ui/polar-chart/nested/strip-dxi.ts","../../../dist/ui/polar-chart/nested/argument-axis.ts","../../../dist/ui/polar-chart/nested/argument-format.ts","../../../dist/ui/polar-chart/nested/axis-label.ts","../../../dist/ui/polar-chart/nested/border.ts","../../../dist/ui/polar-chart/nested/color.ts","../../../dist/ui/polar-chart/nested/common-annotation-settings.ts","../../../dist/ui/polar-chart/nested/common-axis-settings-label.ts","../../../dist/ui/polar-chart/nested/common-axis-settings-minor-tick.ts","../../../dist/ui/polar-chart/nested/common-axis-settings-tick.ts","../../../dist/ui/polar-chart/nested/common-axis-settings.ts","../../../dist/ui/polar-chart/nested/common-series-settings-hover-style.ts","../../../dist/ui/polar-chart/nested/common-series-settings-label.ts","../../../dist/ui/polar-chart/nested/common-series-settings-selection-style.ts","../../../dist/ui/polar-chart/nested/common-series-settings.ts","../../../dist/ui/polar-chart/nested/connector.ts","../../../dist/ui/polar-chart/nested/constant-line-label.ts","../../../dist/ui/polar-chart/nested/constant-line-style-label.ts","../../../dist/ui/polar-chart/nested/constant-line-style.ts","../../../dist/ui/polar-chart/nested/data-prepare-settings.ts","../../../dist/ui/polar-chart/nested/export.ts","../../../dist/ui/polar-chart/nested/font.ts","../../../dist/ui/polar-chart/nested/format.ts","../../../dist/ui/polar-chart/nested/grid.ts","../../../dist/ui/polar-chart/nested/hatching.ts","../../../dist/ui/polar-chart/nested/hover-style.ts","../../../dist/ui/polar-chart/nested/image.ts","../../../dist/ui/polar-chart/nested/label.ts","../../../dist/ui/polar-chart/nested/legend-title-subtitle.ts","../../../dist/ui/polar-chart/nested/legend-title.ts","../../../dist/ui/polar-chart/nested/legend.ts","../../../dist/ui/polar-chart/nested/length.ts","../../../dist/ui/polar-chart/nested/loading-indicator.ts","../../../dist/ui/polar-chart/nested/margin.ts","../../../dist/ui/polar-chart/nested/min-visual-range-length.ts","../../../dist/ui/polar-chart/nested/minor-grid.ts","../../../dist/ui/polar-chart/nested/minor-tick-interval.ts","../../../dist/ui/polar-chart/nested/minor-tick.ts","../../../dist/ui/polar-chart/nested/point-border.ts","../../../dist/ui/polar-chart/nested/point-hover-style.ts","../../../dist/ui/polar-chart/nested/point-selection-style.ts","../../../dist/ui/polar-chart/nested/point.ts","../../../dist/ui/polar-chart/nested/polar-chart-title-subtitle.ts","../../../dist/ui/polar-chart/nested/polar-chart-title.ts","../../../dist/ui/polar-chart/nested/selection-style.ts","../../../dist/ui/polar-chart/nested/series-border.ts","../../../dist/ui/polar-chart/nested/series-dxi.ts","../../../dist/ui/polar-chart/nested/series-template.ts","../../../dist/ui/polar-chart/nested/shadow.ts","../../../dist/ui/polar-chart/nested/size.ts","../../../dist/ui/polar-chart/nested/strip-label.ts","../../../dist/ui/polar-chart/nested/strip-style-label.ts","../../../dist/ui/polar-chart/nested/strip-style.ts","../../../dist/ui/polar-chart/nested/subtitle.ts","../../../dist/ui/polar-chart/nested/tick-interval.ts","../../../dist/ui/polar-chart/nested/tick.ts","../../../dist/ui/polar-chart/nested/title.ts","../../../dist/ui/polar-chart/nested/tooltip-border.ts","../../../dist/ui/polar-chart/nested/tooltip.ts","../../../dist/ui/polar-chart/nested/value-axis.ts","../../../dist/ui/polar-chart/nested/value-error-bar.ts","../../../dist/ui/polar-chart/nested/visual-range.ts","../../../dist/ui/polar-chart/nested/whole-range.ts","../../../dist/ui/polar-chart/nested/index.ts","../../../dist/ui/polar-chart/nested/devextreme-angular-ui-polar-chart-nested.ts"],"sourcesContent":["/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-adaptive-layout',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartAdaptiveLayoutComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get height(): number {\r\n return this._getOption('height');\r\n }\r\n set height(value: number) {\r\n this._setOption('height', value);\r\n }\r\n\r\n @Input()\r\n get keepLabels(): boolean {\r\n return this._getOption('keepLabels');\r\n }\r\n set keepLabels(value: boolean) {\r\n this._setOption('keepLabels', value);\r\n }\r\n\r\n @Input()\r\n get width(): number {\r\n return this._getOption('width');\r\n }\r\n set width(value: number) {\r\n this._setOption('width', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'adaptiveLayout';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoPolarChartAdaptiveLayoutComponent\r\n ],\r\n exports: [\r\n DxoPolarChartAdaptiveLayoutComponent\r\n ],\r\n})\r\nexport class DxoPolarChartAdaptiveLayoutModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { AnimationEaseMode } from 'devextreme/common/charts';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-animation',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartAnimationComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get duration(): number {\r\n return this._getOption('duration');\r\n }\r\n set duration(value: number) {\r\n this._setOption('duration', value);\r\n }\r\n\r\n @Input()\r\n get easing(): AnimationEaseMode {\r\n return this._getOption('easing');\r\n }\r\n set easing(value: AnimationEaseMode) {\r\n this._setOption('easing', value);\r\n }\r\n\r\n @Input()\r\n get enabled(): boolean {\r\n return this._getOption('enabled');\r\n }\r\n set enabled(value: boolean) {\r\n this._setOption('enabled', value);\r\n }\r\n\r\n @Input()\r\n get maxPointCountSupported(): number {\r\n return this._getOption('maxPointCountSupported');\r\n }\r\n set maxPointCountSupported(value: number) {\r\n this._setOption('maxPointCountSupported', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'animation';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoPolarChartAnimationComponent\r\n ],\r\n exports: [\r\n DxoPolarChartAnimationComponent\r\n ],\r\n})\r\nexport class DxoPolarChartAnimationModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { DashStyle } from 'devextreme/common/charts';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-annotation-border',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartAnnotationBorderComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get color(): string {\r\n return this._getOption('color');\r\n }\r\n set color(value: string) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get cornerRadius(): number {\r\n return this._getOption('cornerRadius');\r\n }\r\n set cornerRadius(value: number) {\r\n this._setOption('cornerRadius', value);\r\n }\r\n\r\n @Input()\r\n get dashStyle(): DashStyle {\r\n return this._getOption('dashStyle');\r\n }\r\n set dashStyle(value: DashStyle) {\r\n this._setOption('dashStyle', value);\r\n }\r\n\r\n @Input()\r\n get opacity(): number | undefined {\r\n return this._getOption('opacity');\r\n }\r\n set opacity(value: number | undefined) {\r\n this._setOption('opacity', value);\r\n }\r\n\r\n @Input()\r\n get visible(): boolean {\r\n return this._getOption('visible');\r\n }\r\n set visible(value: boolean) {\r\n this._setOption('visible', value);\r\n }\r\n\r\n @Input()\r\n get width(): number {\r\n return this._getOption('width');\r\n }\r\n set width(value: number) {\r\n this._setOption('width', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'border';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoPolarChartAnnotationBorderComponent\r\n ],\r\n exports: [\r\n DxoPolarChartAnnotationBorderComponent\r\n ],\r\n})\r\nexport class DxoPolarChartAnnotationBorderModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n NgModule,\r\n Host,\r\n ElementRef,\r\n Renderer2,\r\n Inject,\r\n AfterViewInit,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\nimport { DOCUMENT } from '@angular/common';\r\n\r\n\r\nimport { DashStyle, Font, TextOverflow, AnnotationType, WordWrap } from 'devextreme/common/charts';\r\nimport { dxPolarChartAnnotationConfig } from 'devextreme/viz/polar_chart';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n extractTemplate,\r\n DxTemplateDirective,\r\n IDxTemplateHost,\r\n DxTemplateHost\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-polar-chart-annotation',\r\n standalone: true,\r\n template: '<ng-content></ng-content>',\r\n styles: [':host { display: block; }'],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost, DxTemplateHost]\r\n})\r\nexport class DxiPolarChartAnnotationComponent extends CollectionNestedOption implements AfterViewInit,\r\n IDxTemplateHost {\r\n @Input()\r\n get allowDragging(): boolean {\r\n return this._getOption('allowDragging');\r\n }\r\n set allowDragging(value: boolean) {\r\n this._setOption('allowDragging', value);\r\n }\r\n\r\n @Input()\r\n get angle(): number | undefined {\r\n return this._getOption('angle');\r\n }\r\n set angle(value: number | undefined) {\r\n this._setOption('angle', value);\r\n }\r\n\r\n @Input()\r\n get argument(): Date | number | string | undefined {\r\n return this._getOption('argument');\r\n }\r\n set argument(value: Date | number | string | undefined) {\r\n this._setOption('argument', value);\r\n }\r\n\r\n @Input()\r\n get arrowLength(): number {\r\n return this._getOption('arrowLength');\r\n }\r\n set arrowLength(value: number) {\r\n this._setOption('arrowLength', value);\r\n }\r\n\r\n @Input()\r\n get arrowWidth(): number {\r\n return this._getOption('arrowWidth');\r\n }\r\n set arrowWidth(value: number) {\r\n this._setOption('arrowWidth', value);\r\n }\r\n\r\n @Input()\r\n get border(): { color?: string, cornerRadius?: number, dashStyle?: DashStyle, opacity?: number | undefined, visible?: boolean, width?: number } {\r\n return this._getOption('border');\r\n }\r\n set border(value: { color?: string, cornerRadius?: number, dashStyle?: DashStyle, opacity?: number | undefined, visible?: boolean, width?: number }) {\r\n this._setOption('border', value);\r\n }\r\n\r\n @Input()\r\n get color(): string {\r\n return this._getOption('color');\r\n }\r\n set color(value: string) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get customizeTooltip(): ((annotation: dxPolarChartAnnotationConfig | any) => Record<string, any>) | undefined {\r\n return this._getOption('customizeTooltip');\r\n }\r\n set customizeTooltip(value: ((annotation: dxPolarChartAnnotationConfig | any) => Record<string, any>) | undefined) {\r\n this._setOption('customizeTooltip', value);\r\n }\r\n\r\n @Input()\r\n get data(): any {\r\n return this._getOption('data');\r\n }\r\n set data(value: any) {\r\n this._setOption('data', value);\r\n }\r\n\r\n @Input()\r\n get description(): string | undefined {\r\n return this._getOption('description');\r\n }\r\n set description(value: string | undefined) {\r\n this._setOption('description', value);\r\n }\r\n\r\n @Input()\r\n get font(): Font {\r\n return this._getOption('font');\r\n }\r\n set font(value: Font) {\r\n this._setOption('font', value);\r\n }\r\n\r\n @Input()\r\n get height(): number | undefined {\r\n return this._getOption('height');\r\n }\r\n set height(value: number | undefined) {\r\n this._setOption('height', value);\r\n }\r\n\r\n @Input()\r\n get image(): string | { height?: number, url?: string | undefined, width?: number } {\r\n return this._getOption('image');\r\n }\r\n set image(value: string | { height?: number, url?: string | undefined, width?: number }) {\r\n this._setOption('image', value);\r\n }\r\n\r\n @Input()\r\n get name(): string | undefined {\r\n return this._getOption('name');\r\n }\r\n set name(value: string | undefined) {\r\n this._setOption('name', value);\r\n }\r\n\r\n @Input()\r\n get offsetX(): number | undefined {\r\n return this._getOption('offsetX');\r\n }\r\n set offsetX(value: number | undefined) {\r\n this._setOption('offsetX', value);\r\n }\r\n\r\n @Input()\r\n get offsetY(): number | undefined {\r\n return this._getOption('offsetY');\r\n }\r\n set offsetY(value: number | undefined) {\r\n this._setOption('offsetY', value);\r\n }\r\n\r\n @Input()\r\n get opacity(): number {\r\n return this._getOption('opacity');\r\n }\r\n set opacity(value: number) {\r\n this._setOption('opacity', value);\r\n }\r\n\r\n @Input()\r\n get paddingLeftRight(): number {\r\n return this._getOption('paddingLeftRight');\r\n }\r\n set paddingLeftRight(value: number) {\r\n this._setOption('paddingLeftRight', value);\r\n }\r\n\r\n @Input()\r\n get paddingTopBottom(): number {\r\n return this._getOption('paddingTopBottom');\r\n }\r\n set paddingTopBottom(value: number) {\r\n this._setOption('paddingTopBottom', value);\r\n }\r\n\r\n @Input()\r\n get radius(): number | undefined {\r\n return this._getOption('radius');\r\n }\r\n set radius(value: number | undefined) {\r\n this._setOption('radius', value);\r\n }\r\n\r\n @Input()\r\n get series(): string | undefined {\r\n return this._getOption('series');\r\n }\r\n set series(value: string | undefined) {\r\n this._setOption('series', value);\r\n }\r\n\r\n @Input()\r\n get shadow(): { blur?: number, color?: string, offsetX?: number, offsetY?: number, opacity?: number } {\r\n return this._getOption('shadow');\r\n }\r\n set shadow(value: { blur?: number, color?: string, offsetX?: number, offsetY?: number, opacity?: number }) {\r\n this._setOption('shadow', value);\r\n }\r\n\r\n @Input()\r\n get template(): any {\r\n return this._getOption('template');\r\n }\r\n set template(value: any) {\r\n this._setOption('template', value);\r\n }\r\n\r\n @Input()\r\n get text(): string | undefined {\r\n return this._getOption('text');\r\n }\r\n set text(value: string | undefined) {\r\n this._setOption('text', value);\r\n }\r\n\r\n @Input()\r\n get textOverflow(): TextOverflow {\r\n return this._getOption('textOverflow');\r\n }\r\n set textOverflow(value: TextOverflow) {\r\n this._setOption('textOverflow', value);\r\n }\r\n\r\n @Input()\r\n get tooltipEnabled(): boolean {\r\n return this._getOption('tooltipEnabled');\r\n }\r\n set tooltipEnabled(value: boolean) {\r\n this._setOption('tooltipEnabled', value);\r\n }\r\n\r\n @Input()\r\n get tooltipTemplate(): any {\r\n return this._getOption('tooltipTemplate');\r\n }\r\n set tooltipTemplate(value: any) {\r\n this._setOption('tooltipTemplate', value);\r\n }\r\n\r\n @Input()\r\n get type(): AnnotationType | undefined {\r\n return this._getOption('type');\r\n }\r\n set type(value: AnnotationType | undefined) {\r\n this._setOption('type', value);\r\n }\r\n\r\n @Input()\r\n get value(): Date | number | string | undefined {\r\n return this._getOption('value');\r\n }\r\n set value(value: Date | number | string | undefined) {\r\n this._setOption('value', value);\r\n }\r\n\r\n @Input()\r\n get width(): number | undefined {\r\n return this._getOption('width');\r\n }\r\n set width(value: number | undefined) {\r\n this._setOption('width', value);\r\n }\r\n\r\n @Input()\r\n get wordWrap(): WordWrap {\r\n return this._getOption('wordWrap');\r\n }\r\n set wordWrap(value: WordWrap) {\r\n this._setOption('wordWrap', value);\r\n }\r\n\r\n @Input()\r\n get x(): number | undefined {\r\n return this._getOption('x');\r\n }\r\n set x(value: number | undefined) {\r\n this._setOption('x', value);\r\n }\r\n\r\n @Input()\r\n get y(): number | undefined {\r\n return this._getOption('y');\r\n }\r\n set y(value: number | undefined) {\r\n this._setOption('y', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'annotations';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost,\r\n private renderer: Renderer2,\r\n @Inject(DOCUMENT) private document: any,\r\n @Host() templateHost: DxTemplateHost,\r\n private element: ElementRef) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n templateHost.setHost(this);\r\n }\r\n\r\n setTemplate(template: DxTemplateDirective) {\r\n this.template = template;\r\n }\r\n ngAfterViewInit() {\r\n extractTemplate(this, this.element, this.renderer, this.document);\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiPolarChartAnnotationComponent\r\n ],\r\n exports: [\r\n DxiPolarChartAnnotationComponent\r\n ],\r\n})\r\nexport class DxiPolarChartAnnotationModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-argument-axis-minor-tick',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartArgumentAxisMinorTickComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get color(): string {\r\n return this._getOption('color');\r\n }\r\n set color(value: string) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get length(): number {\r\n return this._getOption('length');\r\n }\r\n set length(value: number) {\r\n this._setOption('length', value);\r\n }\r\n\r\n @Input()\r\n get opacity(): number {\r\n return this._getOption('opacity');\r\n }\r\n set opacity(value: number) {\r\n this._setOption('opacity', value);\r\n }\r\n\r\n @Input()\r\n get shift(): number {\r\n return this._getOption('shift');\r\n }\r\n set shift(value: number) {\r\n this._setOption('shift', value);\r\n }\r\n\r\n @Input()\r\n get visible(): boolean {\r\n return this._getOption('visible');\r\n }\r\n set visible(value: boolean) {\r\n this._setOption('visible', value);\r\n }\r\n\r\n @Input()\r\n get width(): number {\r\n return this._getOption('width');\r\n }\r\n set width(value: number) {\r\n this._setOption('width', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'minorTick';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoPolarChartArgumentAxisMinorTickComponent\r\n ],\r\n exports: [\r\n DxoPolarChartArgumentAxisMinorTickComponent\r\n ],\r\n})\r\nexport class DxoPolarChartArgumentAxisMinorTickModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-argument-axis-tick',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartArgumentAxisTickComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get color(): string {\r\n return this._getOption('color');\r\n }\r\n set color(value: string) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get length(): number {\r\n return this._getOption('length');\r\n }\r\n set length(value: number) {\r\n this._setOption('length', value);\r\n }\r\n\r\n @Input()\r\n get opacity(): number | undefined {\r\n return this._getOption('opacity');\r\n }\r\n set opacity(value: number | undefined) {\r\n this._setOption('opacity', value);\r\n }\r\n\r\n @Input()\r\n get shift(): number {\r\n return this._getOption('shift');\r\n }\r\n set shift(value: number) {\r\n this._setOption('shift', value);\r\n }\r\n\r\n @Input()\r\n get visible(): boolean {\r\n return this._getOption('visible');\r\n }\r\n set visible(value: boolean) {\r\n this._setOption('visible', value);\r\n }\r\n\r\n @Input()\r\n get width(): number {\r\n return this._getOption('width');\r\n }\r\n set width(value: number) {\r\n this._setOption('width', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'tick';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoPolarChartArgumentAxisTickComponent\r\n ],\r\n exports: [\r\n DxoPolarChartArgumentAxisTickComponent\r\n ],\r\n})\r\nexport class DxoPolarChartArgumentAxisTickModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { DashStyle, Font } from 'devextreme/common/charts';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-polar-chart-constant-line',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiPolarChartConstantLineComponent extends CollectionNestedOption {\r\n @Input()\r\n get color(): string {\r\n return this._getOption('color');\r\n }\r\n set color(value: string) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get dashStyle(): DashStyle {\r\n return this._getOption('dashStyle');\r\n }\r\n set dashStyle(value: DashStyle) {\r\n this._setOption('dashStyle', value);\r\n }\r\n\r\n @Input()\r\n get displayBehindSeries(): boolean {\r\n return this._getOption('displayBehindSeries');\r\n }\r\n set displayBehindSeries(value: boolean) {\r\n this._setOption('displayBehindSeries', value);\r\n }\r\n\r\n @Input()\r\n get extendAxis(): boolean {\r\n return this._getOption('extendAxis');\r\n }\r\n set extendAxis(value: boolean) {\r\n this._setOption('extendAxis', value);\r\n }\r\n\r\n @Input()\r\n get label(): { font?: Font, text?: string | undefined, visible?: boolean } {\r\n return this._getOption('label');\r\n }\r\n set label(value: { font?: Font, text?: string | undefined, visible?: boolean }) {\r\n this._setOption('label', value);\r\n }\r\n\r\n @Input()\r\n get value(): Date | number | string | undefined {\r\n return this._getOption('value');\r\n }\r\n set value(value: Date | number | string | undefined) {\r\n this._setOption('value', value);\r\n }\r\n\r\n @Input()\r\n get width(): number {\r\n return this._getOption('width');\r\n }\r\n set width(value: number) {\r\n this._setOption('width', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'constantLines';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiPolarChartConstantLineComponent\r\n ],\r\n exports: [\r\n DxiPolarChartConstantLineComponent\r\n ],\r\n})\r\nexport class DxiPolarChartConstantLineModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { Font } from 'devextreme/common/charts';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-polar-chart-strip',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiPolarChartStripComponent extends CollectionNestedOption {\r\n @Input()\r\n get color(): string | undefined {\r\n return this._getOption('color');\r\n }\r\n set color(value: string | undefined) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get endValue(): Date | number | string | undefined {\r\n return this._getOption('endValue');\r\n }\r\n set endValue(value: Date | number | string | undefined) {\r\n this._setOption('endValue', value);\r\n }\r\n\r\n @Input()\r\n get label(): { font?: Font, text?: string | undefined } {\r\n return this._getOption('label');\r\n }\r\n set label(value: { font?: Font, text?: string | undefined }) {\r\n this._setOption('label', value);\r\n }\r\n\r\n @Input()\r\n get startValue(): Date | number | string | undefined {\r\n return this._getOption('startValue');\r\n }\r\n set startValue(value: Date | number | string | undefined) {\r\n this._setOption('startValue', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'strips';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiPolarChartStripComponent\r\n ],\r\n exports: [\r\n DxiPolarChartStripComponent\r\n ],\r\n})\r\nexport class DxiPolarChartStripModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input,\r\n ContentChildren,\r\n forwardRef,\r\n QueryList\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ChartsDataType, DashStyle, Font, DiscreteAxisDivisionMode, ArgumentAxisHoverMode, LabelOverlap, TimeInterval, AxisScaleType } from 'devextreme/common/charts';\r\nimport { Format } from 'devextreme/common/core/localization';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\nimport { DxiPolarChartConstantLineComponent } from './constant-line-dxi';\r\nimport { DxiPolarChartStripComponent } from './strip-dxi';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-argument-axis',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartArgumentAxisComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get allowDecimals(): boolean | undefined {\r\n return this._getOption('allowDecimals');\r\n }\r\n set allowDecimals(value: boolean | undefined) {\r\n this._setOption('allowDecimals', value);\r\n }\r\n\r\n @Input()\r\n get argumentType(): ChartsDataType | undefined {\r\n return this._getOption('argumentType');\r\n }\r\n set argumentType(value: ChartsDataType | undefined) {\r\n this._setOption('argumentType', value);\r\n }\r\n\r\n @Input()\r\n get axisDivisionFactor(): number {\r\n return this._getOption('axisDivisionFactor');\r\n }\r\n set axisDivisionFactor(value: number) {\r\n this._setOption('axisDivisionFactor', value);\r\n }\r\n\r\n @Input()\r\n get categories(): Array<Date | number | string> {\r\n return this._getOption('categories');\r\n }\r\n set categories(value: Array<Date | number | string>) {\r\n this._setOption('categories', value);\r\n }\r\n\r\n @Input()\r\n get color(): string {\r\n return this._getOption('color');\r\n }\r\n set color(value: string) {\r\n this._setOption('color', value);\r\n }\r\n\r\n @Input()\r\n get constantLines(): { color?: string, dashStyle?: DashStyle, displayBehindSeries?: boolean, extendAxis?: boolean, label?: { font?: Font, text?: string | undefined, visible?: boolean }, value?: Date | number | string | undefined, width?: number }[] {\r\n return this._getOption('constantLines');\r\n }\r\n set constantLines(value: { color?: string, dashStyle?: DashStyle, displayBehindSeries?: boolean, extendAxis?: boolean, label?: { font?: Font, text?: string | undefined, visible?: boolean }, value?: Date | number | string | undefined, width?: number }[]) {\r\n this._setOption('constantLines', value);\r\n }\r\n\r\n @Input()\r\n get constantLineStyle(): { color?: string, dashStyle?: DashStyle, label?: { font?: Font, visible?: boolean }, width?: number } {\r\n return this._getOption('constantLineStyle');\r\n }\r\n set constantLineStyle(value: { color?: string, dashStyle?: DashStyle, label?: { font?: Font, visible?: boolean }, width?: number }) {\r\n this._setOption('constantLineStyle', value);\r\n }\r\n\r\n @Input()\r\n get discreteAxisDivisionMode(): DiscreteAxisDivisionMode {\r\n return this._getOption('discreteAxisDivisionMode');\r\n }\r\n set discreteAxisDivisionMode(value: DiscreteAxisDivisionMode) {\r\n this._setOption('discreteAxisDivisionMode', value);\r\n }\r\n\r\n @Input()\r\n get endOnTick(): boolean | undefined {\r\n return this._getOption('endOnTick');\r\n }\r\n set endOnTick(value: boolean | undefined) {\r\n this._setOption('endOnTick', value);\r\n }\r\n\r\n @Input()\r\n get firstPointOnStartAngle(): boolean {\r\n return this._getOption('firstPointOnStartAngle');\r\n }\r\n set firstPointOnStartAngle(value: boolean) {\r\n this._setOption('firstPointOnStartAngle', value);\r\n }\r\n\r\n @Input()\r\n get grid(): { color?: string, opacity?: number | undefined, visible?: boolean, width?: number } {\r\n return this._getOption('grid');\r\n }\r\n set grid(value: { color?: string, opacity?: number | undefined, visible?: boolean, width?: number }) {\r\n this._setOption('grid', value);\r\n }\r\n\r\n @Input()\r\n get hoverMode(): ArgumentAxisHoverMode {\r\n return this._getOption('hoverMode');\r\n }\r\n set hoverMode(value: ArgumentAxisHoverMode) {\r\n this._setOption('hoverMode', value);\r\n }\r\n\r\n @Input()\r\n get inverted(): boolean {\r\n return this._getOption('inverted');\r\n }\r\n set inverted(value: boolean) {\r\n this._setOption('inverted', value);\r\n }\r\n\r\n @Input()\r\n get label(): { customizeHint?: ((argument: { value: Date | number | string, valueText: string }) => string), customizeText?: ((argument: { value: Date | number | string, valueText: string }) => string), font?: Font, format?: Format | undefined, indentFromAxis?: number, overlappingBehavior?: LabelOverlap, visible?: boolean } {\r\n return this._getOption('label');\r\n }\r\n set label(value: { customizeHint?: ((argument: { value: Date | number | string, valueText: string }) => string), customizeText?: ((argument: { value: Date | number | string, valueText: string }) => string), font?: Font, format?: Format | undefined, indentFromAxis?: number, overlappingBehavior?: LabelOverlap, visible?: boolean }) {\r\n this._setOption('label', value);\r\n }\r\n\r\n @Input()\r\n get linearThreshold(): number | undefined {\r\n return this._getOption('linearThreshold');\r\n }\r\n set linearThreshold(value: number | undefined) {\r\n this._setOption('linearThreshold', value);\r\n }\r\n\r\n @Input()\r\n get logarithmBase(): number {\r\n return this._getOption('logarithmBase');\r\n }\r\n set logarithmBase(value: number) {\r\n this._setOption('logarithmBase', value);\r\n }\r\n\r\n @Input()\r\n get minorGrid(): { color?: string, opacity?: number | undefined, visible?: boolean, width?: number } {\r\n return this._getOption('minorGrid');\r\n }\r\n set minorGrid(value: { color?: string, opacity?: number | undefined, visible?: boolean, width?: number }) {\r\n this._setOption('minorGrid', value);\r\n }\r\n\r\n @Input()\r\n get minorTick(): { color?: string, length?: number, opacity?: number, shift?: number, visible?: boolean, width?: number } {\r\n return this._getOption('minorTick');\r\n }\r\n set minorTick(value: { color?: string, length?: number, opacity?: number, shift?: number, visible?: boolean, width?: number }) {\r\n this._setOption('minorTick', value);\r\n }\r\n\r\n @Input()\r\n get minorTickCount(): number | undefined {\r\n return this._getOption('minorTickCount');\r\n }\r\n set minorTickCount(value: number | undefined) {\r\n this._setOption('minorTickCount', value);\r\n }\r\n\r\n @Input()\r\n get minorTickInterval(): number | TimeInterval | { days?: number, hours?: number, milliseconds?: number, minutes?: number, months?: number, quarters?: number, seconds?: number, weeks?: number, years?: number } {\r\n return this._getOption('minorTickInterval');\r\n }\r\n set minorTickInterval(value: number | TimeInterval | { days?: number, hours?: number, milliseconds?: number, minutes?: number, months?: number, quarters?: number, seconds?: number, weeks?: number, years?: number }) {\r\n this._setOption('minorTickInterval', value);\r\n }\r\n\r\n @Input()\r\n get opacity(): number | undefined {\r\n return this._getOption('opacity');\r\n }\r\n set opacity(value: number | undefined) {\r\n this._setOption('opacity', value);\r\n }\r\n\r\n @Input()\r\n get originValue(): number | undefined {\r\n return this._getOption('originValue');\r\n }\r\n set originValue(value: number | undefined) {\r\n this._setOption('originValue', value);\r\n }\r\n\r\n @Input()\r\n get period(): number | undefined {\r\n return this._getOption('period');\r\n }\r\n set period(value: number | undefined) {\r\n this._setOption('period', value);\r\n }\r\n\r\n @Input()\r\n get startAngle(): number {\r\n return this._getOption('startAngle');\r\n }\r\n set startAngle(value: number) {\r\n this._setOption('startAngle', value);\r\n }\r\n\r\n @Input()\r\n get strips(): { color?: string | undefined, endValue?: Date | number | string | undefined, label?: { font?: Font, text?: string | undefined }, startValue?: Date | number | string | undefined }[] {\r\n return this._getOption('strips');\r\n }\r\n set strips(value: { color?: string | undefined, endValue?: Date | number | string | undefined, label?: { font?: Font, text?: string | undefined }, startValue?: Date | number | string | undefined }[]) {\r\n this._setOption('strips', value);\r\n }\r\n\r\n @Input()\r\n get stripStyle(): { label?: { font?: Font } } {\r\n return this._getOption('stripStyle');\r\n }\r\n set stripStyle(value: { label?: { font?: Font } }) {\r\n this._setOption('stripStyle', value);\r\n }\r\n\r\n @Input()\r\n get tick(): { color?: string, length?: number, opacity?: number | undefined, shift?: number, visible?: boolean, width?: number } {\r\n return this._getOption('tick');\r\n }\r\n set tick(value: { color?: string, length?: number, opacity?: number | undefined, shift?: number, visible?: boolean, width?: number }) {\r\n this._setOption('tick', value);\r\n }\r\n\r\n @Input()\r\n get tickInterval(): number | TimeInterval | { days?: number, hours?: number, milliseconds?: number, minutes?: number, months?: number, quarters?: number, seconds?: number, weeks?: number, years?: number } {\r\n return this._getOption('tickInterval');\r\n }\r\n set tickInterval(value: number | TimeInterval | { days?: number, hours?: number, milliseconds?: number, minutes?: number, months?: number, quarters?: number, seconds?: number, weeks?: number, years?: number }) {\r\n this._setOption('tickInterval', value);\r\n }\r\n\r\n @Input()\r\n get type(): AxisScaleType | undefined {\r\n return this._getOption('type');\r\n }\r\n set type(value: AxisScaleType | undefined) {\r\n this._setOption('type', value);\r\n }\r\n\r\n @Input()\r\n get visible(): boolean {\r\n return this._getOption('visible');\r\n }\r\n set visible(value: boolean) {\r\n this._setOption('visible', value);\r\n }\r\n\r\n @Input()\r\n get width(): number {\r\n return this._getOption('width');\r\n }\r\n set width(value: number) {\r\n this._setOption('width', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'argumentAxis';\r\n }\r\n\r\n\r\n @ContentChildren(forwardRef(() => DxiPolarChartConstantLineComponent))\r\n get constantLinesChildren(): QueryList<DxiPolarChartConstantLineComponent> {\r\n return this._getOption('constantLines');\r\n }\r\n set constantLinesChildren(value) {\r\n this.setChildren('constantLines', value);\r\n }\r\n\r\n @ContentChildren(forwardRef(() => DxiPolarChartStripComponent))\r\n get stripsChildren(): QueryList<DxiPolarChartStripComponent> {\r\n return this._getOption('strips');\r\n }\r\n set stripsChildren(value) {\r\n this.setChildren('strips', value);\r\n }\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoPolarChartArgumentAxisComponent\r\n ],\r\n exports: [\r\n DxoPolarChartArgumentAxisComponent\r\n ],\r\n})\r\nexport class DxoPolarChartArgumentAxisModule { }\r\n","/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { Format } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-polar-chart-argument-format',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoPolarChartArgumentFormatComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get currency(): string {\r\n return this._getOption('currency');\r\n }\r\n set currency(value: string) {\r\n this._setOption('currency', value);\r\n }\r\n\r\n @Input()\r\n get formatter(): ((value: number | Date) => string) {\r\n return this._getOption('formatter');\r\n }\r\n set formatter(value: ((value: number | Date) => string)) {\r\n this._setOption('formatter', value);\r\n }\r\n\r\n @Input()\r\n get parser(): ((value: string) => number | Date) {\r\n return this._getOption('parser');\r\n }\r\n set parser(value: ((value: string) => number | Date)) {\r\n this._setOption('parser', value);\r\n }\r\n\r\n @Input()\r\n get precision(): number