UNPKG

igniteui-angular-charts

Version:

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

997 lines (994 loc) 42.2 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 { Component, ViewChild, ContentChildren, Input, forwardRef, ChangeDetectionStrategy, ViewContainerRef } from '@angular/core'; import { IgxAxisComponent } from './igx-axis-component'; import { IgxSeriesComponent } from './igx-series-component'; import { GridMode_$type } from './GridMode'; import { IgxSeriesViewerComponent } from './igx-series-viewer-component'; import { AngularRenderer, AngularWrapper } from "igniteui-angular-core"; import { TypeRegistrar } from "igniteui-angular-core"; import { XamDataChart } from './XamDataChart'; import { CollectionAdapter, brushToString, stringToBrush, ensureBool, ensureEnum } from "igniteui-angular-core"; import { Axis } from './Axis'; import { DataChartStylingDefaults } from './DataChartStylingDefaults'; import { IgxDataContext } from "igniteui-angular-core"; import { IgxSeriesCollection } from './igx-series-collection'; import { SyncableObservableCollection$1 } from "igniteui-angular-core"; import { NotifyCollectionChangedAction } from "igniteui-angular-core"; import { IgxAxisCollection } from './igx-axis-collection'; import { AxisCollection as AxisCollection_internal } from './AxisCollection'; import { SyncLinkManager } from './SyncLinkManager'; import { SyncLink } from './SyncLink'; import { ComputedPlotAreaMarginMode_$type } from './ComputedPlotAreaMarginMode'; import { AutoMarginsAndAngleUpdateMode_$type } from './AutoMarginsAndAngleUpdateMode'; import { SeriesPlotAreaMarginHorizontalMode_$type } from './SeriesPlotAreaMarginHorizontalMode'; import { SeriesPlotAreaMarginVerticalMode_$type } from './SeriesPlotAreaMarginVerticalMode'; import * as i0 from "@angular/core"; /** * Represents a chart area containing axes, series, an optional legend and other hosted content. */ export let IgxDataChartComponent = /*@__PURE__*/ (() => { class IgxDataChartComponent extends IgxSeriesViewerComponent { constructor(_renderer, _elRef, _ngZone, _componentFactoryResolver, _injector) { super(); this._renderer = _renderer; this._elRef = _elRef; this._ngZone = _ngZone; this._componentFactoryResolver = _componentFactoryResolver; this._injector = _injector; /** * 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._root = null; this._dataSource = null; this._highlightedDataSource = null; this._axesAdapter = null; this._seriesAdapter = null; this._defaultTooltips = null; this._fullAxes = null; this._zoneRunner = (act) => this._ngZone.run(act); this._container = _renderer.createElement("div"); _renderer.appendChild(_elRef.element.nativeElement, this._container); _renderer.setStyle(this._container, "display", "block"); _renderer.setStyle(this._container, "width", "100%"); _renderer.setStyle(this._container, "height", "100%"); var root; root = this._container; if (this._container.nativeElement != null) { root = this._container.nativeElement; } this._root = root; var ren = new AngularRenderer(root, this._renderer, window.document, this._ngZone, true, DataChartStylingDefaults); this._wrapper = ren; var chart = this.i; this._chart = chart; this._axesAdapter = new CollectionAdapter([], 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._container && this._container.parentElement) { i._styling(this._root, this, this); } }, (i) => { i._provideRenderer(null); i.provideData(null); }); this._seriesAdapter = new CollectionAdapter([], this.i.series, this.actualSeries, (c) => c.i, (i) => { i.owner = this; i._provideRenderer(this._dataSource); i.provideData(this._dataSource); i.provideHighlightedData(this._highlightedDataSource); if (this._container && this._container.parentElement) { i._styling(this._root, this, this); } i.bindAxes(this.actualAxes); for (let j = 0; j < this.actualSeries.length; j++) { this.actualSeries[j].bindSeries(this.actualSeries); } this._ensureDefaultTooltip(i); this._ensureTooltipCreated(i); }, (i) => { i._provideRenderer(null); i.provideData(null); }); chart.provideContainer(ren); ren.addSizeWatcher(() => { this._chart.notifyContainerResized(); }); } set height(value) { this._height = value; this._renderer.setStyle(this._elRef.element.nativeElement, "height", value); this._chart.notifyContainerResized(); } get height() { return this._height; } set width(value) { this._width = value; this._renderer.setStyle(this._elRef.element.nativeElement, "width", value); this._chart.notifyContainerResized(); } get width() { return this._width; } /** * 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 IgxSeriesCollection(); 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 IgxAxisCollection(); 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; } ngOnDestroy() { 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); } } } ngAfterContentInit() { if (TypeRegistrar.isRegistered("IgxDataChartDefaultTooltipsComponent")) { let c = TypeRegistrar.get("IgxDataChartDefaultTooltipsComponent"); let cf = this._componentFactoryResolver.resolveComponentFactory(c); let cr = this._dynamicContent.createComponent(cf); //let cr = cf.create(this._injector); this._defaultTooltips = cr; cr.instance.onContentReady.subscribe(() => { this._onDefaultTooltipsReady(cr); }); //this._container.appendChild(cr.location.nativeElement); } this._axesAdapter.updateQuery(this.contentAxes); this._seriesAdapter.updateQuery(this.contentSeries); 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); } } } ngAfterViewInit() { this.updateStyle(); this.i.notifyContainerResized(); } updateStyle() { this._styling(this._root, this); } _ensureTooltipCreated(series) { series._ensureTooltipCreated(() => this.createTooltip(), (ele) => { let wrapper = new AngularWrapper(ele, this._renderer, this._ngZone); wrapper.updateToolTip = ele.updateToolTip; wrapper.hideToolTip = ele.hideToolTip; return wrapper; }); } _ensureDefaultTooltip(series) { if (this._defaultTooltips == null) { return; } this._defaultTooltips.instance["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("IgxTooltipContainerComponent")) { return null; } let t = TypeRegistrar.get("IgxTooltipContainerComponent"); let cf = this._componentFactoryResolver.resolveComponentFactory(t); //let cr = cf.create(this._injector); let cr = this._dynamicContent.createComponent(cf); let ele = cr.location.nativeElement; let self = this; ele.updateToolTip = function (c, isSubContent) { if (c.externalObject) { c = c.externalObject; } else { let ext = new IgxDataContext(); 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) { if (ele.parentElement != null) { ele.parentElement.removeChild(ele); } self._container.appendChild(ele); } } //attach tooltip to body else { this.remove(); document.body.appendChild(this.ele); //this.renderer.appendToBody(this); var supportsPopover = HTMLElement.prototype.hasOwnProperty("popover"); if (supportsPopover) { ele.setAttribute("popover", "manual"); ele.showPopover(); } } } else { c.isSubContent = true; } cr.instance.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; } /** * 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. * * ```html * <igx-data-chart [dataSource]="data" * isSquare="true" * width="800px" * height="400px"> * <igx-category-x-axis #xAxis * label="label"> * </igx-category-x-axis> * <igx-numeric-y-axis #yAxis * majorStroke="green"> * </igx-numeric-y-axis> * * <igx-column-series * [xAxis]="xAxis" * [yAxis]="yAxis" * valueMemberPath="value"> * </igx-column-series> * </igx-data-chart> * ``` * * ```ts * this.chart.isSquare="True"; * ``` */ get isSquare() { return this.i.aag; } set isSquare(v) { this.i.aag = ensureBool(v); } /** * 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. * * ```html * <igx-data-chart [dataSource]="data" * windowScaleHorizontal="0.75"> * <igx-category-x-axis #xAxis * label="label"> * </igx-category-x-axis> * <igx-numeric-y-axis #yAxis> * </igx-numeric-y-axis> * * <igx-column-series * [xAxis]="xAxis" * [yAxis]="yAxis" * valueMemberPath="value"> * </igx-column-series> * </igx-data-chart> * ``` * * ```ts * this.chart.windowScaleHorizontal="0.75"; * ``` */ get windowScaleHorizontal() { return this.i.abp; } set windowScaleHorizontal(v) { this.i.abp = +v; } /** * 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. * * ```html * <igx-data-chart [dataSource]="data" * windowScaleVertical="0.75"> * <igx-category-x-axis #xAxis * label="label"> * </igx-category-x-axis> * <igx-numeric-y-axis #yAxis> * </igx-numeric-y-axis> * * <igx-column-series * [xAxis]="xAxis" * [yAxis]="yAxis" * valueMemberPath="value"> * </igx-column-series> * </igx-data-chart> * ``` * * ```ts * this.chart.windowScaleVertical="0.75"; * ``` */ get windowScaleVertical() { return this.i.abq; } set windowScaleVertical(v) { this.i.abq = +v; } /** * 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; } /** * 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; } /** * Gets or sets horizontal zoomability of the current control * * Set `IsHorizontalZoomEnabled` to enable or disable horizontal zooming. * * ```html * <igx-data-chart [dataSource]="data" * isHorizontalZoomEnabled="true"> * <igx-category-x-axis #xAxis * label="label"> * </igx-category-x-axis> * <igx-numeric-y-axis #yAxis> * </igx-numeric-y-axis> * * <igx-column-series * [xAxis]="xAxis" * [yAxis]="yAxis" * valueMemberPath="value"> * </igx-column-series> * </igx-data-chart> * ``` * * ```ts * this.chart.IsHorizontalZoomEnabled= true; * ``` */ get isHorizontalZoomEnabled() { return this.i.aae; } set isHorizontalZoomEnabled(v) { this.i.aae = ensureBool(v); } /** * Gets or sets vertical zoomability of the current control * * Set `IsVerticalZoomEnabled` to enable or disable vertical zooming. * * ```html * <igx-data-chart [dataSource]="data" * isVerticalZoomEnabled="true"> * <igx-category-x-axis #xAxis * label="label"> * </igx-category-x-axis> * <igx-numeric-y-axis #yAxis> * </igx-numeric-y-axis> * * <igx-column-series * [xAxis]="xAxis" * [yAxis]="yAxis" * valueMemberPath="value"> * </igx-column-series> * </igx-data-chart> * ``` * * ```ts * this.chart.isVerticalZoomEnabled="True"; * ``` */ get isVerticalZoomEnabled() { return this.i.aai; } set isVerticalZoomEnabled(v) { this.i.aai = ensureBool(v); } /** * 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. * * ```html * <igx-data-chart [dataSource]="data" * gridMode="beforeSeries"> * <igx-category-x-axis #xAxis * label="label"> * </igx-category-x-axis> * <igx-numeric-y-axis #yAxis * majorStroke="green"> * </igx-numeric-y-axis> * * <igx-column-series * [xAxis]="xAxis" * [yAxis]="yAxis" * valueMemberPath="value"> * </igx-column-series> * </igx-data-chart> * ``` */ get gridMode() { return this.i.zu; } set gridMode(v) { this.i.zu = ensureEnum(GridMode_$type, v); } /** * 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); } /** * 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; } /** * 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; } /** * 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); } /** * 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); } /** * 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); } /** * 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); } /** * 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); } /** * 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); } /** * 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); } /** * 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); } get fullAxes() { if (this._fullAxes === null) { let coll = new IgxAxisCollection(); 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 IgxAxisCollection(); 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; } /** * Gets the actual resolved top plot area margin; */ get actualPlotAreaMarginTop() { return this.i.aa9; } set actualPlotAreaMarginTop(v) { this.i.aa9 = +v; } /** * Gets the actual resolved right plot area margin; */ get actualPlotAreaMarginRight() { return this.i.aa8; } set actualPlotAreaMarginRight(v) { this.i.aa8 = +v; } /** * Gets the actual resolved bottom plot area margin; */ get actualPlotAreaMarginBottom() { return this.i.aa6; } set actualPlotAreaMarginBottom(v) { this.i.aa6 = +v; } /** * 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); } /** * 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); } /** * 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); } /** * Margin applied to the left of the plot area. */ get plotAreaMarginLeft() { return this.i.abl; } set plotAreaMarginLeft(v) { this.i.abl = +v; } /** * Margin applied above the plot area. */ get plotAreaMarginTop() { return this.i.abn; } set plotAreaMarginTop(v) { this.i.abn = +v; } /** * Margin applied to the right of the plot area. */ get plotAreaMarginRight() { return this.i.abm; } set plotAreaMarginRight(v) { this.i.abm = +v; } /** * Margin applied below the plot area. */ get plotAreaMarginBottom() { return this.i.abk; } set plotAreaMarginBottom(v) { this.i.abk = +v; } 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); } } IgxDataChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataChartComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component }); IgxDataChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxDataChartComponent, selector: "igx-data-chart", inputs: { height: "height", width: "width", legend: "legend", dataSource: "dataSource", highlightedDataSource: "highlightedDataSource", syncChannel: "syncChannel", synchronizeVertically: "synchronizeVertically", synchronizeHorizontally: "synchronizeHorizontally", isSquare: "isSquare", windowScaleHorizontal: "windowScaleHorizontal", windowScaleVertical: "windowScaleVertical", actualWindowScaleHorizontal: "actualWindowScaleHorizontal", actualWindowScaleVertical: "actualWindowScaleVertical", isHorizontalZoomEnabled: "isHorizontalZoomEnabled", isVerticalZoomEnabled: "isVerticalZoomEnabled", gridMode: "gridMode", alignsGridLinesToPixels: "alignsGridLinesToPixels", autoExpandMarginMaximumValue: "autoExpandMarginMaximumValue", autoExpandMarginExtraPadding: "autoExpandMarginExtraPadding", shouldSuppressAxisLabelTruncation: "shouldSuppressAxisLabelTruncation", shouldAutoExpandMarginForInitialLabels: "shouldAutoExpandMarginForInitialLabels", shouldConsiderAutoRotationForInitialLabels: "shouldConsiderAutoRotationForInitialLabels", suppressAutoMarginAndAngleRecalculation: "suppressAutoMarginAndAngleRecalculation", autoMarginAndAngleUpdateMode: "autoMarginAndAngleUpdateMode", defaultAxisStroke: "defaultAxisStroke", defaultAxisMajorStroke: "defaultAxisMajorStroke", defaultAxisMinorStroke: "defaultAxisMinorStroke", fullAxes: "fullAxes", actualPlotAreaMarginLeft: "actualPlotAreaMarginLeft", actualPlotAreaMarginTop: "actualPlotAreaMarginTop", actualPlotAreaMarginRight: "actualPlotAreaMarginRight", actualPlotAreaMarginBottom: "actualPlotAreaMarginBottom", computedPlotAreaMarginMode: "computedPlotAreaMarginMode", seriesPlotAreaMarginHorizontalMode: "seriesPlotAreaMarginHorizontalMode", seriesPlotAreaMarginVerticalMode: "seriesPlotAreaMarginVerticalMode", plotAreaMarginLeft: "plotAreaMarginLeft", plotAreaMarginTop: "plotAreaMarginTop", plotAreaMarginRight: "plotAreaMarginRight", plotAreaMarginBottom: "plotAreaMarginBottom" }, host: { classAttribute: "igx-data-chart ig-data-chart" }, providers: [{ provide: IgxSeriesViewerComponent, useExisting: forwardRef(() => IgxDataChartComponent) }], queries: [{ propertyName: "contentAxes", predicate: IgxAxisComponent }, { propertyName: "contentSeries", predicate: IgxSeriesComponent }], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: `<ng-container #dynamicContent></ng-container>`, isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); return IgxDataChartComponent; })(); i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataChartComponent, decorators: [{ type: Component, args: [{ selector: 'igx-data-chart', template: `<ng-container #dynamicContent></ng-container>`, changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: IgxSeriesViewerComponent, useExisting: forwardRef(() => IgxDataChartComponent) }], host: { 'class': 'igx-data-chart ig-data-chart' }, styles: [` :host { display: block; } `] }] }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }]; }, propDecorators: { contentAxes: [{ type: ContentChildren, args: [IgxAxisComponent] }], contentSeries: [{ type: ContentChildren, args: [IgxSeriesComponent] }], _dynamicContent: [{ type: ViewChild, args: ["dynamicContent", { read: ViewContainerRef, static: true }] }], height: [{ type: Input }], width: [{ type: Input }], legend: [{ type: Input }], dataSource: [{ type: Input }], highlightedDataSource: [{ type: Input }], syncChannel: [{ type: Input }], synchronizeVertically: [{ type: Input }], synchronizeHorizontally: [{ type: Input }], isSquare: [{ type: Input }], windowScaleHorizontal: [{ type: Input }], windowScaleVertical: [{ type: Input }], actualWindowScaleHorizontal: [{ type: Input }], actualWindowScaleVertical: [{ type: Input }], isHorizontalZoomEnabled: [{ type: Input }], isVerticalZoomEnabled: [{ type: Input }], gridMode: [{ type: Input }], alignsGridLinesToPixels: [{ type: Input }], autoExpandMarginMaximumValue: [{ type: Input }], autoExpandMarginExtraPadding: [{ type: Input }], shouldSuppressAxisLabelTruncation: [{ type: Input }], shouldAutoExpandMarginForInitialLabels: [{ type: Input }], shouldConsiderAutoRotationForInitialLabels: [{ type: Input }], suppressAutoMarginAndAngleRecalculation: [{ type: Input }], autoMarginAndAngleUpdateMode: [{ type: Input }], defaultAxisStroke: [{ type: Input }], defaultAxisMajorStroke: [{ type: Input }], defaultAxisMinorStroke: [{ type: Input }], fullAxes: [{ type: Input }], actualPlotAreaMarginLeft: [{ type: Input }], actualPlotAreaMarginTop: [{ type: Input }], actualPlotAreaMarginRight: [{ type: Input }], actualPlotAreaMarginBottom: [{ type: Input }], computedPlotAreaMarginMode: [{ type: Input }], seriesPlotAreaMarginHorizontalMode: [{ type: Input }], seriesPlotAreaMarginVerticalMode: [{ type: Input }], plotAreaMarginLeft: [{ type: Input }], plotAreaMarginTop: [{ type: Input }], plotAreaMarginRight: [{ type: Input }], plotAreaMarginBottom: [{ type: Input }] } });