UNPKG

igniteui-webcomponents-charts

Version:

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

70 lines (69 loc) 2.93 kB
import { IgcStackedSplineSeriesComponent } from "./igc-stacked-spline-series-component"; import { Stacked100SplineSeries } from "./Stacked100SplineSeries"; import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core"; import { RegisterElementHelper } from "igniteui-webcomponents-core"; /** * Represents a IgxDataChartComponent stacked100 spline series. */ export let IgcStacked100SplineSeriesComponent = /*@__PURE__*/ (() => { class IgcStacked100SplineSeriesComponent extends IgcStackedSplineSeriesComponent { createImplementation() { return new Stacked100SplineSeries(); } /** * @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 (IgcStacked100SplineSeriesComponent._observedAttributesIgcStacked100SplineSeriesComponent == null) { let names = getAllPropertyNames(IgcStacked100SplineSeriesComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcStacked100SplineSeriesComponent._observedAttributesIgcStacked100SplineSeriesComponent = names; } return IgcStacked100SplineSeriesComponent._observedAttributesIgcStacked100SplineSeriesComponent; } static register() { if (!IgcStacked100SplineSeriesComponent._isElementRegistered) { IgcStacked100SplineSeriesComponent._isElementRegistered = true; RegisterElementHelper.registerElement(IgcStacked100SplineSeriesComponent.htmlTagName, IgcStacked100SplineSeriesComponent); } } get isPercentBased() { return this.i.aa8; } } IgcStacked100SplineSeriesComponent._observedAttributesIgcStacked100SplineSeriesComponent = null; IgcStacked100SplineSeriesComponent.htmlTagName = "igc-stacked-100-spline-series"; IgcStacked100SplineSeriesComponent._isElementRegistered = false; return IgcStacked100SplineSeriesComponent; })();