UNPKG

igniteui-webcomponents-charts

Version:

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

873 lines (870 loc) 36.1 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { IgcAxisComponent } from './igc-axis-component'; import { IgcSeriesComponent } from './igc-series-component'; import { GridMode_$type } from './GridMode'; import { IgcSeriesViewerComponent } from './igc-series-viewer-component'; import { WebComponentRenderer, WebComponentWrapper } from "igniteui-webcomponents-core"; import { TypeRegistrar } from "igniteui-webcomponents-core"; import { XamDataChart } from './XamDataChart'; import { CollectionAdapter, brushToString, stringToBrush, ensureBool, ensureEnum, enumToString, getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core"; import { Axis } from './Axis'; import { DataChartStylingDefaults } from './DataChartStylingDefaults'; import { IgcDataContext } from "igniteui-webcomponents-core"; import { IgcSeriesCollection } from './igc-series-collection'; import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core"; import { NotifyCollectionChangedAction } from "igniteui-webcomponents-core"; import { IgcAxisCollection } from './igc-axis-collection'; import { AxisCollection as AxisCollection_internal } from './AxisCollection'; import { SyncLinkManager } from './SyncLinkManager'; import { SyncLink } from './SyncLink'; import { RegisterElementHelper } from "igniteui-webcomponents-core"; import { ComputedPlotAreaMarginMode_$type } from './ComputedPlotAreaMarginMode'; import { AutoMarginsAndAngleUpdateMode_$type } from './AutoMarginsAndAngleUpdateMode'; import { SeriesPlotAreaMarginHorizontalMode_$type } from './SeriesPlotAreaMarginHorizontalMode'; import { SeriesPlotAreaMarginVerticalMode_$type } from './SeriesPlotAreaMarginVerticalMode'; let IgcDataChartComponent = /*@__PURE__*/ (() => { class IgcDataChartComponent extends IgcSeriesViewerComponent { set height(value) { this._height = value; this.style.height = value; this.notifyContainerResized(); } get height() { return this._height; } set width(value) { this._width = value; this.style.width = value; this.notifyContainerResized(); } get width() { return this._width; } notifyContainerResized() { this._chart.notifyContainerResized(); } /** * Gets or sets the legend used for the current chart. */ get legend() { if (this.i.legend != null) return this.i.legend.externalObject; } set legend(v) { if (v != undefined && v != null) this.i.legend = v.i; } /** * A collection or manually added series for the chart. */ get series() { if (this._series === null) { let coll = new IgcSeriesCollection(); let inner = coll._innerColl; inner.addListener((sender, e) => { switch (e.action) { case NotifyCollectionChangedAction.Add: this._seriesAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0)); break; case NotifyCollectionChangedAction.Remove: this._seriesAdapter.removeManualItemAt(e.oldStartingIndex); break; case NotifyCollectionChangedAction.Replace: this._seriesAdapter.removeManualItemAt(e.oldStartingIndex); this._seriesAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0)); break; case NotifyCollectionChangedAction.Reset: this._seriesAdapter.clearManualItems(); break; } }); this._series = coll; } return this._series; } /** * A collection or manually added axes for the chart. */ get axes() { if (this._axes === null) { let coll = new IgcAxisCollection(); let inner = coll._innerColl; inner.addListener((sender, e) => { switch (e.action) { case NotifyCollectionChangedAction.Add: this._axesAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0)); break; case NotifyCollectionChangedAction.Remove: this._axesAdapter.removeManualItemAt(e.oldStartingIndex); break; case NotifyCollectionChangedAction.Replace: this._axesAdapter.removeManualItemAt(e.oldStartingIndex); this._axesAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0)); break; case NotifyCollectionChangedAction.Reset: this._axesAdapter.clearManualItems(); break; } }); this._axes = coll; } return this._axes; } constructor() { super(); this.contentAxes = []; this.contentSeries = []; /** * The series actually present in the chart. Do not directly modify this array. * This array's contents can be modified by causing Angular to reproject the child content. * Or adding and removing series from the manual series collection on the series property. */ this.actualSeries = []; /** * The axes actually present in the chart. Do not directly modify this array. * This array's contents can be modified by causing Angular to reproject the child content. * Or adding and removing axes from the manual axes collection on the axes property. */ this.actualAxes = []; this._series = null; this._axes = null; this._dataSource = null; this._highlightedDataSource = null; this._axesAdapter = null; this._seriesAdapter = null; this._disconnected = false; this._defaultTooltips = null; this._fullAxes = null; this._renderer = new WebComponentRenderer(this, document, true, DataChartStylingDefaults); //this._implementation = this.createImplementation(); this._container = this._renderer.createElement("div"); this._renderer.updateRoot(this._container); //this._renderer.rootWrapper.append(this._container); this._container.setStyleProperty("display", "block"); this._container.setStyleProperty("width", "100%"); this._container.setStyleProperty("height", "100%"); var root; root = this._container; if (this._container.nativeElement != null) { root = this._container.nativeElement; } this._wrapper = this._renderer; var chart = this.i; this._chart = chart; this._axesAdapter = new CollectionAdapter(this.contentAxes, this.i.axes, this.actualAxes, (c) => c.i, (i) => { i._provideRenderer(this._wrapper); i.provideData(this._dataSource); for (let j = 0; j < this.actualSeries.length; j++) { this.actualSeries[j].bindAxes(this.actualAxes); } for (let j = 0; j < this.actualAxes.length; j++) { this.actualAxes[j].bindAxes(this.actualAxes); } if (this.parentElement) { i._styling(this, this, this); } }, (i) => { i._provideRenderer(null); i.provideData(null); }); this._seriesAdapter = new CollectionAdapter(this.contentSeries, this.i.series, this.actualSeries, (c) => c.i, (i) => { i.owner = this; i._provideRenderer(this._dataSource); i.provideData(this._dataSource); i.provideHighlightedData(this._highlightedDataSource); i.bindAxes(this.actualAxes); for (let j = 0; j < this.actualSeries.length; j++) { this.actualSeries[j].bindSeries(this.actualSeries); } if (this.parentElement) { i._styling(this, this, this); } this._ensureDefaultTooltip(i); this._ensureTooltipCreated(i); }, (i) => { i._provideRenderer(null); i.provideData(null); }); chart.provideContainer(this._renderer); let mut = new MutationObserver((list) => { for (var mutation of list) { if (mutation.type == 'childList') { this.updateContentChildren(); } } }); mut.observe(this, { childList: true }); this._renderer.addSizeWatcher(() => { this.notifyContainerResized(); }); } destroy() { this._chart.destroy(); this._wrapper.destroy(); } createImplementation() { return new XamDataChart(); } set dataSource(value) { this._dataSource = value; this.bindData(); } get dataSource() { return this._dataSource; } set highlightedDataSource(value) { this._highlightedDataSource = value; this.bindHighlightedData(); } get highlightedDataSource() { return this._highlightedDataSource; } bindData() { //console.log("binding data: " + this._dataSource); if (this.actualAxes && this.actualAxes.length > 0) { var currAxes = this.actualAxes; for (var i = 0; i < currAxes.length; i++) { currAxes[i].provideData(this._dataSource); } } if (this.actualSeries && this.actualSeries.length > 0) { var currSeries = this.actualSeries; for (var i = 0; i < currSeries.length; i++) { currSeries[i].provideData(this._dataSource); } } } bindHighlightedData() { if (this.actualSeries && this.actualSeries.length > 0) { var currSeries = this.actualSeries; for (var i = 0; i < currSeries.length; i++) { currSeries[i].provideHighlightedData(this._highlightedDataSource); } } } updateContentChildren() { this.contentAxes.length = 0; this.contentSeries.length = 0; for (var i = 0; i < this.children.length; i++) { if (this.children[i] instanceof IgcAxisComponent) { this.contentAxes.push(this.children[i]); } } for (var i = 0; i < this.children.length; i++) { if (this.children[i] instanceof IgcSeriesComponent) { this.contentSeries.push(this.children[i]); } } if (this._axesAdapter != null) { this._axesAdapter.notifyContentChanged(); } if (this._seriesAdapter != null) { this._seriesAdapter.notifyContentChanged(); } } disconnectedCallback() { this._disconnected = true; if (this.i) { this.i.onDetachedFromUI(); } } connectedCallback() { if (this._disconnected) { this._disconnected = false; if (this.i) { this.i.onAttachedToUI(); } return; } this.classList.add("ig-data-chart"); this.classList.add("igc-data-chart"); this.appendChild(this._renderer.rootWrapper.getNativeElement()); this._attached = true; this.style.display = "block"; this.style.height = this._height; this.style.width = this._width; this._flushQueuedAttributes(); // supports themes or custom properties set in CSS this._styling(this, this); this.updateContentChildren(); for (let i = 0; i < this.actualAxes.length; i++) { let a = this.actualAxes[i]; a._styling(this, this, this); } for (let i = 0; i < this.actualSeries.length; i++) { let s = this.actualSeries[i]; s._styling(this, this, this); } this.afterContentInit(); } afterContentInit() { if (TypeRegistrar.isRegistered("IgcDataChartDefaultTooltipsComponent")) { let cr = TypeRegistrar.create("IgcDataChartDefaultTooltipsComponent"); //let cr = cf.create(this._injector); this._defaultTooltips = cr; //(<any>cr).onContentReady = () => { // this._onDefaultTooltipsReady(cr); //}; this._onDefaultTooltipsReady(cr); //this._container.appendChild(cr.location.nativeElement); } this.i.notifyContainerResized(); } _ensureTooltipCreated(series) { series._ensureTooltipCreated(() => this.createTooltip(), (ele) => { let wrapper = new WebComponentWrapper(ele, this._renderer); wrapper.updateToolTip = ele.updateToolTip; wrapper.hideToolTip = ele.hideToolTip; return wrapper; }); } _ensureDefaultTooltip(series) { if (this._defaultTooltips == null) { return; } this._defaultTooltips["ensureDefaultTooltip"](series); } _onDefaultTooltipsReady(cr) { if (this.actualSeries && this.actualSeries.length > 0) { var currSeries = this.actualSeries; for (var i = 0; i < currSeries.length; i++) { if (currSeries[i].showDefaultTooltip) { this._ensureDefaultTooltip(currSeries[i]); } } } } createTooltip() { if (!TypeRegistrar.isRegistered("IgcTooltipContainerComponent")) { return null; } let cr = TypeRegistrar.create("IgcTooltipContainerComponent"); let ele = cr; let self = this; ele.updateToolTip = function (c, isSubContent) { if (c.externalObject) { c = c.externalObject; } else { let ext = new IgcDataContext(); ext._implementation = c; c = ext; } if (!isSubContent) { ele.removeAttribute("popover"); //attach tooltip to chart container if (c.series != null && !c.series.attachTooltipToRoot) { if (ele.parentElement != self._container.getNativeElement()) { if (ele.parentElement != null) { ele.parentElement.removeChild(ele); } self._container.getNativeElement().appendChild(ele); } } //attach tooltip to body else { this.remove(); this.renderer.appendToBody(this); var supportsPopover = HTMLElement.prototype.hasOwnProperty("popover"); if (supportsPopover) { ele.setAttribute("popover", "manual"); ele.showPopover(); } } } else { c.isSubContent = true; } cr.context = c; ele.style.display = "block"; return true; }; ele.hideToolTip = function () { if (ele.hasAttribute("popover")) ele.hidePopover(); ele.style.display = "none"; }; ele.style.display = "none"; return cr; } /** * Gets or sets the channel with which to synchronize. * * Synchronization is the coordination of zooming, panning and crosshairs events between multiple charts. Multiple chart controls can be synchronized horizontally (along X-Axis), vertically (along Y-Axis), or both. If you want to synchronize a set of charts, assign them the same name to the `syncChannel` and then specify whether or not synchronize chart horizontally and/or vertically. */ get syncChannel() { return this.i.syncChannel; } set syncChannel(v) { let newLink = null; if (v && v.length > 0) { newLink = SyncLinkManager.instance().getLink(v); } let oldLink = this.i.actualSyncLink; if (oldLink) { SyncLinkManager.instance().releaseLink(oldLink); } if (newLink) { this.i.actualSyncLink = newLink; } else { this.i.actualSyncLink = new SyncLink(); } this.i.syncChannel = v; } /** * Gets or sets the bool used to display the window preview shadow. * * Synchronization is the coordination of zooming, panning and crosshairs events between multiple charts. Multiple chart controls can be synchronized horizontally (along X-Axis), vertically (along Y-Axis), or both. If you want to synchronize a set of charts, assign them the same name to the `syncChannel` and then specify whether or not synchronize chart horizontally and/or vertically. */ get synchronizeVertically() { return this.i.syncSettings ? this.i.syncSettings.synchronizeVertically : false; } set synchronizeVertically(v) { this.i.syncSettings.synchronizeVertically = ensureBool(v); } /** * Gets or sets the bool used to display the window preview shadow. * * Synchronization is the coordination of zooming, panning and crosshairs events between multiple charts. Multiple chart controls can be synchronized horizontally (along X-Axis), vertically (along Y-Axis), or both. If you want to synchronize a set of charts, assign them the same name to the `syncChannel` and then specify whether or not synchronize chart horizontally and/or vertically. */ get synchronizeHorizontally() { return this.i.syncSettings ? this.i.syncSettings.synchronizeHorizontally : false; } set synchronizeHorizontally(v) { this.i.syncSettings.synchronizeHorizontally = ensureBool(v); } /** * @hidden */ get i() { return this._implementation; } static get observedAttributes() { if (IgcDataChartComponent._observedAttributesIgcDataChartComponent == null) { let names = getAllPropertyNames(IgcDataChartComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcDataChartComponent._observedAttributesIgcDataChartComponent = names; } return IgcDataChartComponent._observedAttributesIgcDataChartComponent; } static register() { if (!IgcDataChartComponent._isElementRegistered) { IgcDataChartComponent._isElementRegistered = true; RegisterElementHelper.registerElement(IgcDataChartComponent.htmlTagName, IgcDataChartComponent); } } /** * Gets or sets whether to use a square aspect ratio for the chart. This is locked to true for polar and radial charts. * * Set `IsSquare` to true to constrain the chart to a square, using the minimum of its height and width. * * ```ts * this.chart.isSquare="True"; * ``` */ get isSquare() { return this.i.aag; } set isSquare(v) { this.i.aag = ensureBool(v); this._a("isSquare", this.i.aag); } /** * A number between 0 and 1 determining the scale of the horizontal zoom. * This property is effectively a shortcut to the Width of the WindowRect property. * * To programmatically change the horizontal zoom level, set `WindowScaleHorizontal` to a value between 0 and 1. * * ```ts * this.chart.windowScaleHorizontal="0.75"; * ``` */ get windowScaleHorizontal() { return this.i.abp; } set windowScaleHorizontal(v) { this.i.abp = +v; this._a("windowScaleHorizontal", this.i.abp); } /** * A number between 0 and 1 determining the scale of the vertical zoom. * This property is effectively a shortcut to the Height of the WindowRect property. * * To programmatically change the vertical zoom level, set `WindowScaleVertical` to a value between 0 and 1. * * ```ts * this.chart.windowScaleVertical="0.75"; * ``` */ get windowScaleVertical() { return this.i.abq; } set windowScaleVertical(v) { this.i.abq = +v; this._a("windowScaleVertical", this.i.abq); } /** * A number between 0 and 1 determining the scale of the horizontal zoom. * This property is effectively a shortcut to the Width of the ActualWindowRect property. */ get actualWindowScaleHorizontal() { return this.i.aba; } set actualWindowScaleHorizontal(v) { this.i.aba = +v; this._a("actualWindowScaleHorizontal", this.i.aba); } /** * A number between 0 and 1 determining the scale of the vertical zoom. * This property is effectively a shortcut to the Height of the ActualWindowRect property. */ get actualWindowScaleVertical() { return this.i.abb; } set actualWindowScaleVertical(v) { this.i.abb = +v; this._a("actualWindowScaleVertical", this.i.abb); } /** * Gets or sets horizontal zoomability of the current control * * Set `IsHorizontalZoomEnabled` to enable or disable horizontal zooming. * * ```ts * this.chart.IsHorizontalZoomEnabled= true; * ``` */ get isHorizontalZoomEnabled() { return this.i.aae; } set isHorizontalZoomEnabled(v) { this.i.aae = ensureBool(v); this._a("isHorizontalZoomEnabled", this.i.aae); } /** * Gets or sets vertical zoomability of the current control * * Set `IsVerticalZoomEnabled` to enable or disable vertical zooming. * * ```ts * this.chart.isVerticalZoomEnabled="True"; * ``` */ get isVerticalZoomEnabled() { return this.i.aai; } set isVerticalZoomEnabled(v) { this.i.aai = ensureBool(v); this._a("isVerticalZoomEnabled", this.i.aai); } /** * Gets or sets how grid lines are rendered in relation to series. * * Try setting the `GridMode` property to bring your grid lines in front of the data series. */ get gridMode() { return this.i.zu; } set gridMode(v) { this.i.zu = ensureEnum(GridMode_$type, v); this._a("gridMode", enumToString(GridMode_$type, this.i.zu)); } /** * Gets or sets a value indicating whether grid and tick lines are aligned to device pixels. */ get alignsGridLinesToPixels() { return this.i.aaa; } set alignsGridLinesToPixels(v) { this.i.aaa = ensureBool(v); this._a("alignsGridLinesToPixels", this.i.aaa); } /** * Gets or sets the maximum amount the series viewer should auto expand margins to accomodate the initial horizontal axis labels. */ get autoExpandMarginMaximumValue() { return this.i.abd; } set autoExpandMarginMaximumValue(v) { this.i.abd = +v; this._a("autoExpandMarginMaximumValue", this.i.abd); } /** * Gets or sets the extra amount the series viewer should auto expand margins to accomodate the initial horizontal axis labels. */ get autoExpandMarginExtraPadding() { return this.i.abc; } set autoExpandMarginExtraPadding(v) { this.i.abc = +v; this._a("autoExpandMarginExtraPadding", this.i.abc); } /** * Gets or sets a whether the series viewer should suppress truncation of axis labels. */ get shouldSuppressAxisLabelTruncation() { return this.i.aap; } set shouldSuppressAxisLabelTruncation(v) { this.i.aap = ensureBool(v); this._a("shouldSuppressAxisLabelTruncation", this.i.aap); } /** * Gets or sets a whether the series viewer should auto expand margins to accomodate the initial horizontal axis labels. */ get shouldAutoExpandMarginForInitialLabels() { return this.i.aal; } set shouldAutoExpandMarginForInitialLabels(v) { this.i.aal = ensureBool(v); this._a("shouldAutoExpandMarginForInitialLabels", this.i.aal); } /** * Gets or sets a whether the series viewer should consider auto rotating labels to fit them in the initial view. This implies that ShouldAutoExpandMarginForInitialLabels is true. */ get shouldConsiderAutoRotationForInitialLabels() { return this.i.aao; } set shouldConsiderAutoRotationForInitialLabels(v) { this.i.aao = ensureBool(v); this._a("shouldConsiderAutoRotationForInitialLabels", this.i.aao); } /** * Gets or sets a whether the series viewer should suppress auto recalculating margin and axis label angles. */ get suppressAutoMarginAndAngleRecalculation() { return this.i.aaq; } set suppressAutoMarginAndAngleRecalculation(v) { this.i.aaq = ensureBool(v); this._a("suppressAutoMarginAndAngleRecalculation", this.i.aaq); } /** * Gets or sets a whether the series viewer should consider auto rotating labels to fit them in the initial view. This implies that ShouldAutoExpandMarginForInitialLabels is true. */ get autoMarginAndAngleUpdateMode() { return this.i.zg; } set autoMarginAndAngleUpdateMode(v) { this.i.zg = ensureEnum(AutoMarginsAndAngleUpdateMode_$type, v); this._a("autoMarginAndAngleUpdateMode", enumToString(AutoMarginsAndAngleUpdateMode_$type, this.i.zg)); } /** * Gets or sets the DefaultAxisStroke property. * The DefaultAxisStroke property defines the brush which is used by the axes when no * Axis.Stroke is set. */ get defaultAxisStroke() { return brushToString(this.i.adv); } set defaultAxisStroke(v) { this.i.adv = stringToBrush(v); this._a("defaultAxisStroke", brushToString(this.i.adv)); } /** * Gets or sets the DefaultAxisMajorStroke property. * The DefaultAxisMajorStroke property defines the brush which is used by the axes when no * Axis.MajorStroke is set. */ get defaultAxisMajorStroke() { return brushToString(this.i.adt); } set defaultAxisMajorStroke(v) { this.i.adt = stringToBrush(v); this._a("defaultAxisMajorStroke", brushToString(this.i.adt)); } /** * Gets or sets the DefaultAxisMinorStroke property. * The DefaultAxisMinorStroke property defines the brush which is used by the axes when no * Axis.MinorStroke is set. */ get defaultAxisMinorStroke() { return brushToString(this.i.adu); } set defaultAxisMinorStroke(v) { this.i.adu = stringToBrush(v); this._a("defaultAxisMinorStroke", brushToString(this.i.adu)); } get fullAxes() { if (this._fullAxes === null) { let coll = new IgcAxisCollection(); let innerColl = this.i.zq; if (!innerColl) { innerColl = new AxisCollection_internal(); } this._fullAxes = coll._fromInner(innerColl); } return this._fullAxes; } set fullAxes(v) { if (this._fullAxes !== null) { this._fullAxes._setSyncTarget(null); this._fullAxes = null; } let coll = new IgcAxisCollection(); this._fullAxes = coll._fromOuter(v); let syncColl = new SyncableObservableCollection$1(Axis.$type); let innerColl = this.i.zq; if (!innerColl) { innerColl = new AxisCollection_internal(); } syncColl._inner = innerColl; syncColl.clear(); this._fullAxes._setSyncTarget(syncColl); } /** * Gets the actual resolved left plot area margin; */ get actualPlotAreaMarginLeft() { return this.i.aa7; } set actualPlotAreaMarginLeft(v) { this.i.aa7 = +v; this._a("actualPlotAreaMarginLeft", this.i.aa7); } /** * Gets the actual resolved top plot area margin; */ get actualPlotAreaMarginTop() { return this.i.aa9; } set actualPlotAreaMarginTop(v) { this.i.aa9 = +v; this._a("actualPlotAreaMarginTop", this.i.aa9); } /** * Gets the actual resolved right plot area margin; */ get actualPlotAreaMarginRight() { return this.i.aa8; } set actualPlotAreaMarginRight(v) { this.i.aa8 = +v; this._a("actualPlotAreaMarginRight", this.i.aa8); } /** * Gets the actual resolved bottom plot area margin; */ get actualPlotAreaMarginBottom() { return this.i.aa6; } set actualPlotAreaMarginBottom(v) { this.i.aa6 = +v; this._a("actualPlotAreaMarginBottom", this.i.aa6); } /** * Gets or sets mode to use for automatically calculating the plot area margin. */ get computedPlotAreaMarginMode() { return this.i.zr; } set computedPlotAreaMarginMode(v) { this.i.zr = ensureEnum(ComputedPlotAreaMarginMode_$type, v); this._a("computedPlotAreaMarginMode", enumToString(ComputedPlotAreaMarginMode_$type, this.i.zr)); } /** * Gets or sets horizontal mode to use for automatically calculating the plot area margin based ont the series. */ get seriesPlotAreaMarginHorizontalMode() { return this.i.zz; } set seriesPlotAreaMarginHorizontalMode(v) { this.i.zz = ensureEnum(SeriesPlotAreaMarginHorizontalMode_$type, v); this._a("seriesPlotAreaMarginHorizontalMode", enumToString(SeriesPlotAreaMarginHorizontalMode_$type, this.i.zz)); } /** * Gets or sets vertical mode to use for automatically calculating the plot area margin based ont the series. */ get seriesPlotAreaMarginVerticalMode() { return this.i.z2; } set seriesPlotAreaMarginVerticalMode(v) { this.i.z2 = ensureEnum(SeriesPlotAreaMarginVerticalMode_$type, v); this._a("seriesPlotAreaMarginVerticalMode", enumToString(SeriesPlotAreaMarginVerticalMode_$type, this.i.z2)); } /** * Margin applied to the left of the plot area. */ get plotAreaMarginLeft() { return this.i.abl; } set plotAreaMarginLeft(v) { this.i.abl = +v; this._a("plotAreaMarginLeft", this.i.abl); } /** * Margin applied above the plot area. */ get plotAreaMarginTop() { return this.i.abn; } set plotAreaMarginTop(v) { this.i.abn = +v; this._a("plotAreaMarginTop", this.i.abn); } /** * Margin applied to the right of the plot area. */ get plotAreaMarginRight() { return this.i.abm; } set plotAreaMarginRight(v) { this.i.abm = +v; this._a("plotAreaMarginRight", this.i.abm); } /** * Margin applied below the plot area. */ get plotAreaMarginBottom() { return this.i.abk; } set plotAreaMarginBottom(v) { this.i.abk = +v; this._a("plotAreaMarginBottom", this.i.abk); } findByName(name) { var baseResult = super.findByName(name); if (baseResult) { return baseResult; } if (this.axes != null && this.axes.findByName && this.axes.findByName(name)) { return this.axes.findByName(name); } if (this.fullAxes != null && this.fullAxes.findByName && this.fullAxes.findByName(name)) { return this.fullAxes.findByName(name); } return null; } refreshComputedPlotAreaMargin() { this.i.ac1(); } recalculateMarginAutoExpansion() { this.i.ac0(); } recalculateAutoLabelsAngle() { this.i.acz(); } /** * Notifies the chart that the CSS styles in effect have been updated. */ styleUpdated() { this.i.ac2(); } /** * Export serialized visual data. */ exportSerializedVisualData() { let iv = this.i.ab7(); return (iv); } } IgcDataChartComponent._observedAttributesIgcDataChartComponent = null; IgcDataChartComponent.htmlTagName = "igc-data-chart"; IgcDataChartComponent._isElementRegistered = false; return IgcDataChartComponent; })(); export { IgcDataChartComponent };