igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
911 lines (904 loc) • 34.9 kB
JavaScript
import { Component, ChangeDetectionStrategy, EventEmitter, Output, ViewChild, ViewContainerRef, Input } from '@angular/core';
import { AngularRenderer } from "igniteui-angular-core";
import { TypeRegistrar, delegateCombine } from "igniteui-angular-core";
import { DataChartStylingDefaults } from './DataChartStylingDefaults';
import { XamFunnelChart } from './XamFunnelChart';
import { toSpinal, initializePropertiesFromCss, NamePatcher, fromBrushCollection, toBrushCollection, ensureBool, stringToBrush, brushToString, ensureEnum } from "igniteui-angular-core";
import { Visibility_$type } from "igniteui-angular-core";
import { OuterLabelAlignment_$type } from './OuterLabelAlignment';
import { FunnelSliceDisplay_$type } from './FunnelSliceDisplay';
import { IgxFunnelSliceClickedEventArgs } from './igx-funnel-slice-clicked-event-args';
import { IgxFunnelSliceEventArgs } from './igx-funnel-slice-event-args';
import { Style } from "igniteui-angular-core";
import { HighlightedValueDisplayMode_$type } from "igniteui-angular-core";
import { Base } from "igniteui-angular-core";
import { SyncableObservableCollection$1 } from "igniteui-angular-core";
import { IgxFunnelChartSelectedItemsCollection } from './igx-funnel-chart-selected-items-collection';
import { FunnelChartSelectedItemsCollection as FunnelChartSelectedItemsCollection_internal } from './FunnelChartSelectedItemsCollection';
import { IgxFunnelChartSelectedItemsChangedEventArgs } from './igx-funnel-chart-selected-items-changed-event-args';
import * as i0 from "@angular/core";
/**
* Represents a funnel chart.
*/
export let IgxFunnelChartComponent = /*@__PURE__*/ (() => {
class IgxFunnelChartComponent {
constructor(renderer, _elRef, ngZone, injector, componentFactoryResolver) {
this.renderer = renderer;
this._elRef = _elRef;
this.ngZone = ngZone;
this.injector = injector;
this.componentFactoryResolver = componentFactoryResolver;
this._root = null;
this._dataSource = null;
this._selectedItems = null;
this.__p = null;
this._hasUserValues = new Set();
this._stylingContainer = null;
this._stylingParent = null;
this._inStyling = false;
this._selectedItemsChanged = null;
this._sliceClicked = null;
this._sliceEnter = null;
this._sliceLeave = null;
this._sliceHover = null;
this._zoneRunner = null;
if (this._styling) {
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
}
this._zoneRunner = (act) => ngZone.run(act);
this.container = renderer.createElement("div");
this._implementation = this.createImplementation();
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 != null) {
root = this.container;
}
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;
chart.provideContainer(ren);
this.bindData();
chart.notifyResized();
ren.addSizeWatcher(() => {
this._chart.notifyResized();
});
}
set height(value) {
this._height = value;
this.renderer.setStyle(this._elRef.element.nativeElement, "height", value);
this._chart.notifyResized();
}
get height() {
return this._height;
}
set width(value) {
this._width = value;
this.renderer.setStyle(this._elRef.element.nativeElement, "width", value);
this._chart.notifyResized();
}
get width() {
return this._width;
}
ngAfterViewInit() {
this.updateStyle();
this.i.notifyResized();
}
updateStyle() {
this._styling(this._root, this);
}
ngOnDestroy() {
this._chart.destroy();
this._wrapper.destroy();
}
createImplementation() {
return new XamFunnelChart();
}
createSeriesComponent(type) {
if (TypeRegistrar.isRegistered(type)) {
let s = TypeRegistrar.create(type);
s.owner = this;
s._provideRenderer(this.renderer);
return s;
}
else {
//we shouldn't get here, hopefully.
throw Error("series type not loaded: " + type);
}
}
set dataSource(value) {
this._dataSource = value;
this.bindData();
}
get dataSource() {
return this._dataSource;
}
bindData() {
if (this._chart != null && this._chart !== undefined) {
this._chart.itemsSource = this._dataSource;
}
}
/**
* 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;
}
/**
* @hidden
*/
get i() {
return this._implementation;
} /**
* @hidden
*/
static _createFromInternal(internal) {
if (!internal) {
return null;
}
if (!internal.$type) {
return null;
}
let name = internal.$type.name;
let externalName = "Igx" + name + "Component";
if (!TypeRegistrar.isRegistered(externalName)) {
return null;
}
return TypeRegistrar.create(externalName);
}
/**
* Gets or sets the value member path for the funnel chart.
*/
get valueMemberPath() {
return this.i.dw;
}
set valueMemberPath(v) {
this.i.dw = v;
}
/**
* Gets or sets the highlighted value member path for the funnel chart.
*/
get highlightedValueMemberPath() {
return this.i.cs;
}
set highlightedValueMemberPath(v) {
this.i.cs = v;
}
/**
* Gets the actual opacity of the primary needle while highlighting
*/
get actualHighlightValueOpacity() {
return this.i.bx;
}
set actualHighlightValueOpacity(v) {
this.i.bx = +v;
}
/**
* Gets or sets the opacity while highlighting
*/
get highlightValueOpacity() {
return this.i.b1;
}
set highlightValueOpacity(v) {
this.i.b1 = +v;
}
/**
* Gets whether and how to display the highlighted value.
*/
get actualHighlightValueDisplayMode() {
return this.i.a5;
}
set actualHighlightValueDisplayMode(v) {
this.i.a5 = ensureEnum(HighlightedValueDisplayMode_$type, v);
}
/**
* Gets or sets whether and how to display the highlighted value.
*/
get highlightValueDisplayMode() {
return this.i.a6;
}
set highlightValueDisplayMode(v) {
this.i.a6 = ensureEnum(HighlightedValueDisplayMode_$type, v);
}
/**
* Gets or sets the palette of brushes to use for coloring the slices.
*/
get brushes() {
return fromBrushCollection(this.i.ah);
}
set brushes(v) {
this.i.ah = toBrushCollection(v);
}
/**
* Gets or sets the palette of brushes to use for outlines on the slices.
*/
get outlines() {
return fromBrushCollection(this.i.ai);
}
set outlines(v) {
this.i.ai = toBrushCollection(v);
}
/**
* Gets or sets the percentage (from near 0 to 1) of space the bottom edge of the funnel should take.
*/
get bottomEdgeWidth() {
return this.i.bz;
}
set bottomEdgeWidth(v) {
this.i.bz = +v;
}
/**
* Gets or sets the InnerLabel mapping property for the current series object.
*/
get innerLabelMemberPath() {
return this.i.cz;
}
set innerLabelMemberPath(v) {
this.i.cz = v;
}
/**
* Gets or sets the OuterLabel mapping property for the current series object.
*/
get outerLabelMemberPath() {
return this.i.da;
}
set outerLabelMemberPath(v) {
this.i.da = v;
}
/**
* Gets or sets whether the inner labels are visible.
*/
get innerLabelVisibility() {
return this.i.fv;
}
set innerLabelVisibility(v) {
this.i.fv = ensureEnum(Visibility_$type, v);
}
/**
* Gets or sets whether the outer labels are visible.
*/
get outerLabelVisibility() {
return this.i.fw;
}
set outerLabelVisibility(v) {
this.i.fw = ensureEnum(Visibility_$type, v);
}
/**
* Gets or sets which side of the chart the outer labels should appear.
*/
get outerLabelAlignment() {
return this.i.ax;
}
set outerLabelAlignment(v) {
this.i.ax = ensureEnum(OuterLabelAlignment_$type, v);
}
/**
* Gets or sets how the heights of the funnel slices should be configured.
*/
get funnelSliceDisplay() {
return this.i.an;
}
set funnelSliceDisplay(v) {
this.i.an = ensureEnum(FunnelSliceDisplay_$type, v);
}
/**
* Gets or sets the formatter function for inner labels. Function should return string and it takes 3 parameters: 1st-value of item to format, 2nd-index of item within data, 3rd-reference to the funnel chart.
*/
get formatInnerLabel() {
return this.i.b9;
}
set formatInnerLabel(v) {
this.i.b9 = v;
}
/**
* Gets or sets the formatter function for outer labels. Function should return string and it takes 3 parameters: 1st-value of item to format, 2nd-index of item within data, 3rd-reference to the funnel chart.
*/
get formatOuterLabel() {
return this.i.ca;
}
set formatOuterLabel(v) {
this.i.ca = v;
}
/**
* Gets or sets how long the animations should take to run.
*/
get transitionDuration() {
return this.i.cb;
}
set transitionDuration(v) {
this.i.cb = +v;
}
/**
* Gets or sets if the funnel should be rendered inverted.
*/
get isInverted() {
return this.i.bn;
}
set isInverted(v) {
this.i.bn = ensureBool(v);
}
/**
* Gets or sets whether to use a Bezier curve to define the funnel.
*/
get useBezierCurve() {
return this.i.bo;
}
set useBezierCurve(v) {
this.i.bo = ensureBool(v);
}
/**
* Gets or sets whether to allow slices to be selected.
*/
get allowSliceSelection() {
return this.i.bh;
}
set allowSliceSelection(v) {
this.i.bh = ensureBool(v);
}
/**
* Gets or sets whether to use the unselected style on unselected slices.
*/
get useUnselectedStyle() {
return this.i.bq;
}
set useUnselectedStyle(v) {
this.i.bq = ensureBool(v);
}
/**
* Gets or sets the fill brush.
*/
get selectedSliceFill() {
return this.i.ft ? this.i.ft.fill : null;
}
set selectedSliceFill(v) {
this.ensureSelectedSliceStyle();
this.i.ft.fill = v;
}
/**
* Gets or sets the stroke brush.
*/
get selectedSliceStroke() {
return this.i.ft ? this.i.ft.stroke : null;
}
set selectedSliceStroke(v) {
this.ensureSelectedSliceStyle();
this.i.ft.stroke = v;
}
/**
* Gets or sets the stroke thickness.
*/
get selectedSliceStrokeThickness() {
return this.i.ft ? this.i.ft.strokeThickness : NaN;
}
set selectedSliceStrokeThickness(v) {
this.ensureSelectedSliceStyle();
this.i.ft.strokeThickness = +v;
}
/**
* Gets or sets the opacity.
*/
get selectedSliceOpacity() {
return this.i.ft ? this.i.ft.opacity : NaN;
}
set selectedSliceOpacity(v) {
this.ensureSelectedSliceStyle();
this.i.ft.opacity = +v;
}
ensureSelectedSliceStyle() {
if (this.i.ft) {
return;
}
this.i.ft = new Style();
}
/**
* Gets or sets the fill brush.
*/
get unselectedSliceFill() {
return this.i.fu ? this.i.fu.fill : null;
}
set unselectedSliceFill(v) {
this.ensureUnselectedSliceStyle();
this.i.fu.fill = v;
}
/**
* Gets or sets the stroke brush.
*/
get unselectedSliceStroke() {
return this.i.fu ? this.i.fu.stroke : null;
}
set unselectedSliceStroke(v) {
this.ensureUnselectedSliceStyle();
this.i.fu.stroke = v;
}
/**
* Gets or sets the stroke thickness.
*/
get unselectedSliceStrokeThickness() {
return this.i.fu ? this.i.fu.strokeThickness : NaN;
}
set unselectedSliceStrokeThickness(v) {
this.ensureUnselectedSliceStyle();
this.i.fu.strokeThickness = +v;
}
/**
* Gets or sets the opacity.
*/
get unselectedSliceOpacity() {
return this.i.fu ? this.i.fu.opacity : NaN;
}
set unselectedSliceOpacity(v) {
this.ensureUnselectedSliceStyle();
this.i.fu.opacity = +v;
}
ensureUnselectedSliceStyle() {
if (this.i.fu) {
return;
}
this.i.fu = new Style();
}
/**
* Represents the current selected items.
*/
get selectedItems() {
if (this._selectedItems === null) {
let coll = new IgxFunnelChartSelectedItemsCollection();
let innerColl = this.i.selectedItems;
if (!innerColl) {
innerColl = new FunnelChartSelectedItemsCollection_internal();
}
this._selectedItems = coll._fromInner(innerColl);
}
return this._selectedItems;
}
set selectedItems(v) {
if (this._selectedItems !== null) {
this._selectedItems._setSyncTarget(null);
this._selectedItems = null;
}
let coll = new IgxFunnelChartSelectedItemsCollection();
this._selectedItems = coll._fromOuter(v);
let syncColl = new SyncableObservableCollection$1(Base.$type);
let innerColl = this.i.selectedItems;
if (!innerColl) {
innerColl = new FunnelChartSelectedItemsCollection_internal();
}
syncColl._inner = innerColl;
syncColl.clear();
this._selectedItems._setSyncTarget(syncColl);
}
/**
* Gets or sets the LegendItemBadgeTemplate to use for the legend items.
*/
get legendItemBadgeTemplate() {
return this.i.legendItemBadgeTemplate;
}
set legendItemBadgeTemplate(v) {
this.i.legendItemBadgeTemplate = v;
}
/**
* Gets or sets whether to use the outer labels to identify the legend items.
*/
get useOuterLabelsForLegend() {
return this.i.bp;
}
set useOuterLabelsForLegend(v) {
this.i.bp = ensureBool(v);
}
/**
* Gets or sets the text style for inner labels
*/
get textStyle() {
return this.i.dl;
}
set textStyle(v) {
this.i.dl = v;
}
/**
* Gets or sets the text style for outer labels
*/
get outerLabelTextStyle() {
return this.i.dd;
}
set outerLabelTextStyle(v) {
this.i.dd = v;
}
/**
* Gets or sets the thickness of outline around slices.
*/
get outlineThickness() {
return this.i.b2;
}
set outlineThickness(v) {
this.i.b2 = +v;
}
/**
* Gets or sets the scaling value used to affect the pixel density of the control.
* A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
* to appear blurry.
*/
get pixelScalingRatio() {
return this.i.b4;
}
set pixelScalingRatio(v) {
this.i.b4 = +v;
}
/**
* Gets or sets the brush used for the outer labels.
*/
get outerLabelTextColor() {
return brushToString(this.i.fp);
}
set outerLabelTextColor(v) {
this.i.fp = stringToBrush(v);
}
/**
* Gets or sets the brush used for the inner labels.
*/
get textColor() {
return brushToString(this.i.fq);
}
set textColor(v) {
this.i.fq = stringToBrush(v);
}
findByName(name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
}
get hasUserValues() {
return this._hasUserValues;
}
__m(propertyName) {
if (!this._inStyling) {
this._hasUserValues.add(propertyName);
}
}
_styling(container, component, parent) {
if (this._inStyling) {
return;
}
this._inStyling = true;
this._stylingContainer = container;
this._stylingParent = component;
let genericPrefix = "";
let typeName = this.i.$type.name;
if (typeName.indexOf("Xam") === 0) {
typeName = typeName.substring(3);
}
genericPrefix = toSpinal("FunnelChartComponent");
let additionalPrefixes = [];
let prefix = toSpinal(typeName);
additionalPrefixes.push(prefix + "-");
let b = this.i.$type.baseType;
while (b && b.name != "Object" &&
b.name != "Base" &&
b.name != "Control" &&
b.Name != "DependencyObject" &&
b.Name != "FrameworkElement") {
typeName = b.name;
if (typeName.indexOf("Xam") === 0) {
typeName = typeName.substring(3);
}
let basePrefix = toSpinal(typeName);
additionalPrefixes.push(basePrefix + "-");
b = b.baseType;
}
if (parent) {
let parentTypeName = parent.i.$type.name;
if (parentTypeName.indexOf("Xam") === 0) {
parentTypeName = parentTypeName.substring(3);
}
let parentPrefix = toSpinal(parentTypeName);
additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
}
initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
if (this._otherStyling) {
this._otherStyling(container, component, parent);
}
this._inStyling = false;
}
/**
* Use to force the funnel chart to finish any deferred work before printing or evaluating its visual.
* This should only be called if the visual of the funnel chart needs to be synchronously saved or evaluated.
* Calling this method too often will hinder the performance of the funnel chart.
*/
flush() {
this.i.d0();
}
/**
* Provides container for funnel chart
*/
provideContainer(container) {
this.i.provideContainer(container);
}
/**
* Notifies the controller and view about a size change.
*/
notifyResized() {
this.i.notifyResized();
}
notifySetItem(source_, index, oldItem, newItem) {
this.i.eb(source_, index, oldItem, newItem);
}
/**
* Manually notifies the chart's data source that the data it has bound to has been cleared and needs to be re-examined.
* This should not be called if the data that the chart is bound to is already observable.
*/
notifyClearItems(source_) {
this.i.d6(source_);
}
notifyInsertItem(source_, index, newItem) {
this.i.d8(source_, index, newItem);
}
notifyRemoveItem(source_, index, oldItem) {
this.i.d9(source_, index, oldItem);
}
/**
* Toggle selection of item at index.
*/
toggleSelection(index) {
this.i.eo(index);
}
/**
* Exports and serializes the chart visuals.
*/
exportSerializedVisualData() {
let iv = this.i.cm();
return (iv);
}
/**
* Raised when the SelectedItems collection has changed.
*/
get selectedItemsChanged() {
if (this._selectedItemsChanged == null) {
this._selectedItemsChanged = new EventEmitter();
this.i.selectedItemsChanged = delegateCombine(this.i.selectedItemsChanged, (o, e) => {
this._runInZone(() => {
let outerArgs = new IgxFunnelChartSelectedItemsChangedEventArgs();
outerArgs._provideImplementation(e);
if (this.beforeSelectedItemsChanged) {
this.beforeSelectedItemsChanged(this, outerArgs);
}
this._selectedItemsChanged.emit({
sender: this,
args: outerArgs
});
});
});
}
return this._selectedItemsChanged;
}
/**
* Event which is raised when a slice is clicked.
* Function takes first argument null and second argument ui.
* Use ui.owner to obtain reference to igFunnelChart.
* Use ui.index to obtain index of clicked slice.
* Use ui.item to obtain reference to clicked slice item.
* Use ui.selected to check if slice became selected.
*/
get sliceClicked() {
if (this._sliceClicked == null) {
this._sliceClicked = new EventEmitter();
this.i.sliceClicked = delegateCombine(this.i.sliceClicked, (o, e) => {
this._runInZone(() => {
let outerArgs = new IgxFunnelSliceClickedEventArgs();
outerArgs._provideImplementation(e);
if (this.beforeSliceClicked) {
this.beforeSliceClicked(this, outerArgs);
}
this._sliceClicked.emit({
sender: this,
args: outerArgs
});
});
});
}
return this._sliceClicked;
}
/**
* Raised when a funnel slice is entered.
*/
get sliceEnter() {
if (this._sliceEnter == null) {
this._sliceEnter = new EventEmitter();
this.i.sliceEnter = delegateCombine(this.i.sliceEnter, (o, e) => {
this._runInZone(() => {
let outerArgs = new IgxFunnelSliceEventArgs();
outerArgs._provideImplementation(e);
if (this.beforeSliceEnter) {
this.beforeSliceEnter(this, outerArgs);
}
this._sliceEnter.emit({
sender: this,
args: outerArgs
});
});
});
}
return this._sliceEnter;
}
/**
* Raised when a funnel slice is left.
*/
get sliceLeave() {
if (this._sliceLeave == null) {
this._sliceLeave = new EventEmitter();
this.i.sliceLeave = delegateCombine(this.i.sliceLeave, (o, e) => {
this._runInZone(() => {
let outerArgs = new IgxFunnelSliceEventArgs();
outerArgs._provideImplementation(e);
if (this.beforeSliceLeave) {
this.beforeSliceLeave(this, outerArgs);
}
this._sliceLeave.emit({
sender: this,
args: outerArgs
});
});
});
}
return this._sliceLeave;
}
/**
* Raised when a funnel slice is hovered.
*/
get sliceHover() {
if (this._sliceHover == null) {
this._sliceHover = new EventEmitter();
this.i.sliceHover = delegateCombine(this.i.sliceHover, (o, e) => {
this._runInZone(() => {
let outerArgs = new IgxFunnelSliceEventArgs();
outerArgs._provideImplementation(e);
if (this.beforeSliceHover) {
this.beforeSliceHover(this, outerArgs);
}
this._sliceHover.emit({
sender: this,
args: outerArgs
});
});
});
}
return this._sliceHover;
}
_runInZone(act) {
if (this._zoneRunner != null) {
this._zoneRunner(act);
}
else {
act();
}
}
}
IgxFunnelChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxFunnelChartComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
IgxFunnelChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxFunnelChartComponent, selector: "igx-funnel-chart", inputs: { height: "height", width: "width", dataSource: "dataSource", legend: "legend", valueMemberPath: "valueMemberPath", highlightedValueMemberPath: "highlightedValueMemberPath", actualHighlightValueOpacity: "actualHighlightValueOpacity", highlightValueOpacity: "highlightValueOpacity", actualHighlightValueDisplayMode: "actualHighlightValueDisplayMode", highlightValueDisplayMode: "highlightValueDisplayMode", brushes: "brushes", outlines: "outlines", bottomEdgeWidth: "bottomEdgeWidth", innerLabelMemberPath: "innerLabelMemberPath", outerLabelMemberPath: "outerLabelMemberPath", innerLabelVisibility: "innerLabelVisibility", outerLabelVisibility: "outerLabelVisibility", outerLabelAlignment: "outerLabelAlignment", funnelSliceDisplay: "funnelSliceDisplay", formatInnerLabel: "formatInnerLabel", formatOuterLabel: "formatOuterLabel", transitionDuration: "transitionDuration", isInverted: "isInverted", useBezierCurve: "useBezierCurve", allowSliceSelection: "allowSliceSelection", useUnselectedStyle: "useUnselectedStyle", selectedSliceFill: "selectedSliceFill", selectedSliceStroke: "selectedSliceStroke", selectedSliceStrokeThickness: "selectedSliceStrokeThickness", selectedSliceOpacity: "selectedSliceOpacity", unselectedSliceFill: "unselectedSliceFill", unselectedSliceStroke: "unselectedSliceStroke", unselectedSliceStrokeThickness: "unselectedSliceStrokeThickness", unselectedSliceOpacity: "unselectedSliceOpacity", selectedItems: "selectedItems", legendItemBadgeTemplate: "legendItemBadgeTemplate", useOuterLabelsForLegend: "useOuterLabelsForLegend", textStyle: "textStyle", outerLabelTextStyle: "outerLabelTextStyle", outlineThickness: "outlineThickness", pixelScalingRatio: "pixelScalingRatio", outerLabelTextColor: "outerLabelTextColor", textColor: "textColor" }, outputs: { selectedItemsChanged: "selectedItemsChanged", sliceClicked: "sliceClicked", sliceEnter: "sliceEnter", sliceLeave: "sliceLeave", sliceHover: "sliceHover" }, host: { classAttribute: "ig-funnel-chart igx-funnel-chart" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: 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 IgxFunnelChartComponent;
})();
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxFunnelChartComponent, decorators: [{
type: Component,
args: [{
selector: 'igx-funnel-chart',
template: `<ng-container #dynamicContent></ng-container>`,
changeDetection: ChangeDetectionStrategy.OnPush,
providers: [],
host: { 'class': 'ig-funnel-chart igx-funnel-chart' },
styles: [`
:host {
display: block;
}
`]
}]
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i0.Injector }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { _dynamicContent: [{
type: ViewChild,
args: ["dynamicContent", { read: ViewContainerRef, static: true }]
}], height: [{
type: Input
}], width: [{
type: Input
}], dataSource: [{
type: Input
}], legend: [{
type: Input
}], valueMemberPath: [{
type: Input
}], highlightedValueMemberPath: [{
type: Input
}], actualHighlightValueOpacity: [{
type: Input
}], highlightValueOpacity: [{
type: Input
}], actualHighlightValueDisplayMode: [{
type: Input
}], highlightValueDisplayMode: [{
type: Input
}], brushes: [{
type: Input
}], outlines: [{
type: Input
}], bottomEdgeWidth: [{
type: Input
}], innerLabelMemberPath: [{
type: Input
}], outerLabelMemberPath: [{
type: Input
}], innerLabelVisibility: [{
type: Input
}], outerLabelVisibility: [{
type: Input
}], outerLabelAlignment: [{
type: Input
}], funnelSliceDisplay: [{
type: Input
}], formatInnerLabel: [{
type: Input
}], formatOuterLabel: [{
type: Input
}], transitionDuration: [{
type: Input
}], isInverted: [{
type: Input
}], useBezierCurve: [{
type: Input
}], allowSliceSelection: [{
type: Input
}], useUnselectedStyle: [{
type: Input
}], selectedSliceFill: [{
type: Input
}], selectedSliceStroke: [{
type: Input
}], selectedSliceStrokeThickness: [{
type: Input
}], selectedSliceOpacity: [{
type: Input
}], unselectedSliceFill: [{
type: Input
}], unselectedSliceStroke: [{
type: Input
}], unselectedSliceStrokeThickness: [{
type: Input
}], unselectedSliceOpacity: [{
type: Input
}], selectedItems: [{
type: Input
}], legendItemBadgeTemplate: [{
type: Input
}], useOuterLabelsForLegend: [{
type: Input
}], textStyle: [{
type: Input
}], outerLabelTextStyle: [{
type: Input
}], outlineThickness: [{
type: Input
}], pixelScalingRatio: [{
type: Input
}], outerLabelTextColor: [{
type: Input
}], textColor: [{
type: Input
}], selectedItemsChanged: [{
type: Output
}], sliceClicked: [{
type: Output
}], sliceEnter: [{
type: Output
}], sliceLeave: [{
type: Output
}], sliceHover: [{
type: Output
}] } });