UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

41 lines (40 loc) 2.5 kB
import { Component, forwardRef, ChangeDetectionStrategy } from '@angular/core'; import { IgxPolarBaseComponent } from "./igx-polar-base-component"; import { IgxMarkerSeriesComponent } from "./igx-marker-series-component"; import { IgxSeriesComponent } from "./igx-series-component"; import { PolarScatterSeries } from "./PolarScatterSeries"; import * as i0 from "@angular/core"; /** * Represents a IgxDataChartComponent polar scatter series. */ export class IgxPolarScatterSeriesComponent extends IgxPolarBaseComponent { createImplementation() { return new PolarScatterSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } /** * Gets whether the series has only marker as visuals */ get hasOnlyMarkers() { return this.i.ek; } static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0-rc.1", ngImport: i0, type: IgxPolarScatterSeriesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); } static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0-rc.1", type: IgxPolarScatterSeriesComponent, isStandalone: true, selector: "igx-polar-scatter-series", providers: [{ provide: IgxPolarBaseComponent, useExisting: forwardRef(() => IgxPolarScatterSeriesComponent) }, { provide: IgxMarkerSeriesComponent, useExisting: forwardRef(() => IgxPolarScatterSeriesComponent) }, { provide: IgxSeriesComponent, useExisting: forwardRef(() => IgxPolarScatterSeriesComponent) }], usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); } } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0-rc.1", ngImport: i0, type: IgxPolarScatterSeriesComponent, decorators: [{ type: Component, args: [{ selector: 'igx-polar-scatter-series', template: ``, providers: [{ provide: IgxPolarBaseComponent, useExisting: forwardRef(() => IgxPolarScatterSeriesComponent) }, { provide: IgxMarkerSeriesComponent, useExisting: forwardRef(() => IgxPolarScatterSeriesComponent) }, { provide: IgxSeriesComponent, useExisting: forwardRef(() => IgxPolarScatterSeriesComponent) }], changeDetection: ChangeDetectionStrategy.OnPush }] }], ctorParameters: () => [] });