UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

71 lines (70 loc) 2.86 kB
import { IgcPolarBaseComponent } from "./igc-polar-base-component"; import { PolarScatterSeries } from "./PolarScatterSeries"; import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core"; import { RegisterElementHelper } from "igniteui-webcomponents-core"; let IgcPolarScatterSeriesComponent = /*@__PURE__*/ (() => { class IgcPolarScatterSeriesComponent extends IgcPolarBaseComponent { createImplementation() { return new PolarScatterSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } connectedCallback() { if (super["connectedCallback"]) { super["connectedCallback"](); } if (this.i.connectedCallback) { this.i.connectedCallback(); } if (!this._attached) { this._attached = true; this._flushQueuedAttributes(); } } disconnectedCallback() { if (super["disconnectedCallback"]) { super["disconnectedCallback"](); } if (this.i.disconnectedCallback) { this.i.disconnectedCallback(); } if (this._attached) { this._attached = false; } } static get observedAttributes() { if (IgcPolarScatterSeriesComponent._observedAttributesIgcPolarScatterSeriesComponent == null) { let names = getAllPropertyNames(IgcPolarScatterSeriesComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcPolarScatterSeriesComponent._observedAttributesIgcPolarScatterSeriesComponent = names; } return IgcPolarScatterSeriesComponent._observedAttributesIgcPolarScatterSeriesComponent; } static register() { if (!IgcPolarScatterSeriesComponent._isElementRegistered) { IgcPolarScatterSeriesComponent._isElementRegistered = true; RegisterElementHelper.registerElement(IgcPolarScatterSeriesComponent.htmlTagName, IgcPolarScatterSeriesComponent); } } /** * Gets whether the series has only marker as visuals */ get hasOnlyMarkers() { return this.i.ek; } } IgcPolarScatterSeriesComponent._observedAttributesIgcPolarScatterSeriesComponent = null; IgcPolarScatterSeriesComponent.htmlTagName = "igc-polar-scatter-series"; IgcPolarScatterSeriesComponent._isElementRegistered = false; return IgcPolarScatterSeriesComponent; })(); export { IgcPolarScatterSeriesComponent };