igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
193 lines (191 loc) • 8.43 kB
JavaScript
import { Component, forwardRef, Input, ChangeDetectionStrategy } from '@angular/core';
import { IgxValueBrushScaleComponent } from "./igx-value-brush-scale-component";
import { IgxContourValueResolverComponent } from "./igx-contour-value-resolver-component";
import { IgxScatterTriangulationSeriesComponent } from "./igx-scatter-triangulation-series-component";
import { IgxSeriesComponent } from "./igx-series-component";
import { ScatterContourSeries } from "./ScatterContourSeries";
import * as i0 from "@angular/core";
/**
* Series class for rendering isarithmic contours based on a triangulation of X+Y+Value points in the ItemsSource.
*/
export let IgxScatterContourSeriesComponent = /*@__PURE__*/ (() => {
class IgxScatterContourSeriesComponent extends IgxScatterTriangulationSeriesComponent {
constructor() {
super();
}
createImplementation() {
return new ScatterContourSeries();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
/**
* Gets whether the current series shows a line contour shape.
*/
get isLineContour() {
return this.i.fm;
}
/**
* Gets or set the name of the property from which to retrieve the numeric values from the ItemsSource items.
*/
get valueMemberPath() {
return this.i.zp;
}
set valueMemberPath(v) {
this.i.zp = v;
}
/**
* Gets or sets the label displayed before series value in the Data Legend.
*/
get valueMemberAsLegendLabel() {
return this.i.zl;
}
set valueMemberAsLegendLabel(v) {
this.i.zl = v;
}
/**
* Gets or sets the unit displayed after series value in the Data Legend.
*/
get valueMemberAsLegendUnit() {
return this.i.zn;
}
set valueMemberAsLegendUnit(v) {
this.i.zn = v;
}
/**
* Gets or sets the ValueBrushScale to use when determining Brushes for each contour line, based on the values found in ValueMemberPath.
*/
get fillScale() {
const r = this.i.zf;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgxValueBrushScaleComponent._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
}
set fillScale(v) {
if (v != null && this._stylingContainer && v._styling)
v._styling(this._stylingContainer, this, this);
v == null ? this.i.zf = null : this.i.zf = v.i;
}
/**
* Gets actual fill scale that is set on the FillScale property or default FillScale
*/
get actualFillScale() {
const r = this.i.ze;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgxValueBrushScaleComponent._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
}
set actualFillScale(v) {
if (v != null && this._stylingContainer && v._styling)
v._styling(this._stylingContainer, this, this);
v == null ? this.i.ze = null : this.i.ze = v.i;
}
/**
* Gets or set the ContourValueResolver used to determine the numeric values of contours.
*/
get valueResolver() {
const r = this.i.zc;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgxContourValueResolverComponent._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
}
set valueResolver(v) {
if (v != null && this._stylingContainer && v._styling)
v._styling(this._stylingContainer, this, this);
v == null ? this.i.zc = null : this.i.zc = v.i;
}
findByName(name) {
var baseResult = super.findByName(name);
if (baseResult) {
return baseResult;
}
if (this.fillScale && this.fillScale.name && this.fillScale.name == name) {
return this.fillScale;
}
if (this.actualFillScale && this.actualFillScale.name && this.actualFillScale.name == name) {
return this.actualFillScale;
}
if (this.valueResolver && this.valueResolver.name && this.valueResolver.name == name) {
return this.valueResolver;
}
return null;
}
_styling(container, component, parent) {
super._styling(container, component, parent);
this._inStyling = true;
if (this.fillScale && this.fillScale._styling) {
this.fillScale._styling(container, component, this);
}
if (this.actualFillScale && this.actualFillScale._styling) {
this.actualFillScale._styling(container, component, this);
}
if (this.valueResolver && this.valueResolver._styling) {
this.valueResolver._styling(container, component, this);
}
this._inStyling = false;
}
getItemValue(item, memberPathName) {
let iv = this.i.kz(item, memberPathName);
return (iv);
}
/**
* Gets the value of a requested member path from the series.
* @param memberPathName * The property name of a valid member path for the series
*/
getMemberPathValue(memberPathName) {
let iv = this.i.mo(memberPathName);
return (iv);
}
}
IgxScatterContourSeriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxScatterContourSeriesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
IgxScatterContourSeriesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxScatterContourSeriesComponent, selector: "igx-scatter-contour-series", inputs: { valueMemberPath: "valueMemberPath", valueMemberAsLegendLabel: "valueMemberAsLegendLabel", valueMemberAsLegendUnit: "valueMemberAsLegendUnit", fillScale: "fillScale", actualFillScale: "actualFillScale", valueResolver: "valueResolver" }, providers: [{ provide: IgxScatterTriangulationSeriesComponent, useExisting: forwardRef(() => IgxScatterContourSeriesComponent) }, { provide: IgxSeriesComponent, useExisting: forwardRef(() => IgxScatterContourSeriesComponent) }], usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
return IgxScatterContourSeriesComponent;
})();
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxScatterContourSeriesComponent, decorators: [{
type: Component,
args: [{
selector: 'igx-scatter-contour-series',
template: ``,
providers: [{ provide: IgxScatterTriangulationSeriesComponent, useExisting: forwardRef(() => IgxScatterContourSeriesComponent) }, { provide: IgxSeriesComponent, useExisting: forwardRef(() => IgxScatterContourSeriesComponent) }],
changeDetection: ChangeDetectionStrategy.OnPush
}]
}], ctorParameters: function () { return []; }, propDecorators: { valueMemberPath: [{
type: Input
}], valueMemberAsLegendLabel: [{
type: Input
}], valueMemberAsLegendUnit: [{
type: Input
}], fillScale: [{
type: Input
}], actualFillScale: [{
type: Input
}], valueResolver: [{
type: Input
}] } });