igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
164 lines (162 loc) • 5.3 kB
JavaScript
import { IgrValueBrushScale } from "./igr-value-brush-scale";
import { IgrContourValueResolver } from "./igr-contour-value-resolver";
import { IgrScatterTriangulationSeries } from "./igr-scatter-triangulation-series";
import { ScatterContourSeries } from "./ScatterContourSeries";
/**
* Series class for rendering isarithmic contours based on a triangulation of X+Y+Value points in the ItemsSource.
*/
export class IgrScatterContourSeries extends IgrScatterTriangulationSeries {
createImplementation() {
return new ScatterContourSeries();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
/**
* Gets whether the current series shows a line contour shape.
*/
get isLineContour() {
return this.i.fk;
}
/**
* Gets or set the name of the property from which to retrieve the numeric values from the ItemsSource items.
*/
get valueMemberPath() {
return this.i.zg;
}
set valueMemberPath(v) {
this.i.zg = v;
}
/**
* Gets or sets the label displayed before series value in the Data Legend.
*/
get valueMemberAsLegendLabel() {
return this.i.zc;
}
set valueMemberAsLegendLabel(v) {
this.i.zc = v;
}
/**
* Gets or sets the unit displayed after series value in the Data Legend.
*/
get valueMemberAsLegendUnit() {
return this.i.ze;
}
set valueMemberAsLegendUnit(v) {
this.i.ze = 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.y6;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgrValueBrushScale._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.y6 = null : this.i.y6 = v.i;
}
/**
* Gets actual fill scale that is set on the FillScale property or default FillScale
*/
get actualFillScale() {
const r = this.i.y5;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgrValueBrushScale._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.y5 = null : this.i.y5 = v.i;
}
/**
* Gets or set the ContourValueResolver used to determine the numeric values of contours.
*/
get valueResolver() {
const r = this.i.y3;
if (r == null) {
return null;
}
if (!r.externalObject) {
let e = IgrContourValueResolver._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.y3 = null : this.i.y3 = 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.ku(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.mi(memberPathName);
return (iv);
}
}