UNPKG

igniteui-webcomponents-charts

Version:

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

54 lines (53 loc) 2.09 kB
import { IgcPolarBaseComponent } from "./igc-polar-base-component"; import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core"; /** * Represents the base class from which all IgxDataChartComponent polar line series are derived. */ export let IgcPolarLineSeriesBaseComponent = /*@__PURE__*/ (() => { class IgcPolarLineSeriesBaseComponent extends IgcPolarBaseComponent { /** * @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 (IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent == null) { let names = getAllPropertyNames(IgcPolarLineSeriesBaseComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent = names; } return IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent; } } IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent = null; return IgcPolarLineSeriesBaseComponent; })();