igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
427 lines (424 loc) • 15.3 kB
JavaScript
import { __extends } from "tslib";
import { Component, Input } from '@angular/core';
import { IndicatorDisplayType_$type } from "./IndicatorDisplayType";
import { TrendLineType_$type } from "igniteui-angular-core";
import { IgxFinancialSeriesComponent } from "./igx-financial-series-component";
import { ensureEnum, brushToString, stringToBrush, toDoubleCollection, fromDoubleCollection, toPoint, fromRect } from "igniteui-angular-core";
import * as i0 from "@angular/core";
/**
* Represents the base functionality for a IgxDataChartComponent financial indicator series.
*
* The `FinancialIndicator` class represents the base functionality for a IgxDataChartComponent financial indicator series.
*
* ```html
* <igx-data-chart #chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis
* minimumValue="0"
* #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume" >
* </igx-mass-index-indicator >
* </igx-data-chart>
* ```
*
* ```ts
* let series = new IgxMassIndexIndicatorComponent();
* series.xAxis = this.xAxis;
* series.yAxis = this.yAxis;
* series.openMemberPath = "open";
* series.highMemberPath = "high";
* series.lowMemberPath = "low";
* series.closeMemberPath = "close";
* this.chart.series.add(series);
*
* ```
*/
var IgxFinancialIndicatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgxFinancialIndicatorComponent, _super);
function IgxFinancialIndicatorComponent() {
return _super.call(this) || this;
}
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "isFinancialIndicator", {
/**
* Gets whether the series is financial indicator
*/
get: function () {
return this.i.fb;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "displayType", {
/**
* Gets or sets the display for the current FinancialIndicator object.
*
* The `DisplayType` property is used to display the current FinancialIndicator object.
*
* ```ts
* series.displayType= IndicatorDisplayType.Column;
* ```
*
* ```html
* <igx-data-chart #chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis
* minimumValue="0"
* #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume"
* displayType="Column" >
* </igx-mass-index-indicator >
* </igx-data-chart>
* ```
*/
get: function () {
return this.i.abo;
},
set: function (v) {
this.i.abo = ensureEnum(IndicatorDisplayType_$type, v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "defaultDisplayType", {
/**
* Gets default display type for the current Financial Indicator
*/
get: function () {
return this.i.abn;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "ignoreFirst", {
/**
* Gets or sets the number of values to hide at the beginning of the indicator.
*
* Use the `IgnoreFirst` propert to hide the number of values at the beginning of the indicator.
*
* ```html
* <igx-data-chart #chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis
* minimumValue="0"
* #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume"
* ignoreFirst="2" >
* </igx-mass-index-indicator >
* </igx-data-chart>
* ```
*
* ```ts
* series.ignoreFirst = 2;
* ```
*/
get: function () {
return this.i.abu;
},
set: function (v) {
this.i.abu = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "trendLineType", {
/**
* Gets or sets the trend type for the current indicator series.
*
* Use `TrendLineType` property to get the trend type for the current indicator series.
*
* ```html
* <igx-data-chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* trendLineType="CubicFit">
* </igx-mass-index-indicator>
* </igx-data-chart>
* ```
*
* ```ts
* series.trendLineType= TrendLineType.CubicFit;
* ```
*/
get: function () {
return this.i.trendLineType;
},
set: function (v) {
this.i.trendLineType = ensureEnum(TrendLineType_$type, v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "trendLineBrush", {
/**
* Gets or sets the brush to use to draw the trend line.
*
* Use the `TrendLineBrush` propert to draw the trend line.
*
* ```html
* <igx-data-chart #chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis
* minimumValue="0"
* #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume"
* trendLineBrush="Red">
* </igx-mass-index-indicator >
* </igx-data-chart>
* ```
*/
get: function () {
return brushToString(this.i.trendLineBrush);
},
set: function (v) {
this.i.trendLineBrush = stringToBrush(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "actualTrendLineBrush", {
/**
* Gets the effective TrendLineBrush for this indicator.
*
* Use the `ActualTrendLineBrush` property to Gets the effective TrendLineBrush for the FinancialIndicator.
*/
get: function () {
return brushToString(this.i.acc);
},
set: function (v) {
this.i.acc = stringToBrush(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "trendLineThickness", {
/**
* Gets or sets the thickness of the current indicator object's trend line.
*
* Use `TrendLineThickness` property for the thickness of the current indicator object's trend line.
*
* ```html
* <igx-data-chart #chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis
* minimumValue="0"
* #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume"
* trendLineThickness="2" >
* </igx-mass-index-indicator >
* </igx-data-chart>
* ```
*
* ```ts
* series.trendLineThickness=2 ;
* ```
*/
get: function () {
return this.i.trendLineThickness;
},
set: function (v) {
this.i.trendLineThickness = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "trendLineDashArray", {
/**
* Gets or sets a collection of double values that indicate the pattern of dashes and gaps that
* is used to draw the trend line for the current indicator object.
*/
get: function () {
return fromDoubleCollection(this.i.acd);
},
set: function (v) {
this.i.acd = toDoubleCollection(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFinancialIndicatorComponent.prototype, "trendLinePeriod", {
/**
* Gets or sets the trend line period for the current series.
* The typical, and initial, value for trend line period is 7.
*
* Use `TrendLinePeriod` property for the trend line period of the current series.
*
* ```html
* <igx-data-chart #chart
* [dataSource]="data" >
* <igx-ordinal-time-x-axis
* label="label"
* #xAxis>
* </igx-ordinal-time-x-axis>
* <igx-numeric-y-axis
* minimumValue="0"
* #yAxis>
* </igx-numeric-y-axis>
* <igx-mass-index-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume"
* trendLinePeriod="30" >
* </igx-mass-index-indicator >
* </igx-data-chart>
* ```
*
* ```ts
* series.trendLinePeriod =30;
* ```
*/
get: function () {
return this.i.trendLinePeriod;
},
set: function (v) {
this.i.trendLinePeriod = +v;
},
enumerable: false,
configurable: true
});
/**
* If possible, will return the best available value bounding box within the series that has the best value match for the world position provided.
* @param world * The world coordinate for which to get a value bounding box for
*
* The `GetSeriesValueBoundingBox` method returns the best available value bounding box within the series that has the best value match for the world position provided.
*/
IgxFinancialIndicatorComponent.prototype.getSeriesValueBoundingBox = function (world) {
var iv = this.i.w8(toPoint(world));
return fromRect(iv);
};
IgxFinancialIndicatorComponent.prototype.getSeriesValue = function (world, useInterpolation, skipUnknowns) {
var iv = this.i.jd(toPoint(world), useInterpolation, skipUnknowns);
return (iv);
};
IgxFinancialIndicatorComponent.prototype.getPreviousOrExactIndex = function (world, skipUnknowns) {
var iv = this.i.kj(toPoint(world), skipUnknowns);
return (iv);
};
IgxFinancialIndicatorComponent.prototype.getNextOrExactIndex = function (world, skipUnknowns) {
var iv = this.i.kh(toPoint(world), skipUnknowns);
return (iv);
};
/**
* Scrolls the series to display the item for the specified data item.
* The series is scrolled by the minimum amount required to place the specified data item within
* the central 80% of the visible axis.
* @param item * The data item (item) to scroll to.
*
* The `ScrollIntoView` method scrolls the series to display the item for the specified data item.
*/
IgxFinancialIndicatorComponent.prototype.scrollIntoView = function (item) {
var iv = this.i.gj(item);
return (iv);
};
IgxFinancialIndicatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxFinancialIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
IgxFinancialIndicatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxFinancialIndicatorComponent, selector: "ng-component", inputs: { displayType: "displayType", ignoreFirst: "ignoreFirst", trendLineType: "trendLineType", trendLineBrush: "trendLineBrush", actualTrendLineBrush: "actualTrendLineBrush", trendLineThickness: "trendLineThickness", trendLineDashArray: "trendLineDashArray", trendLinePeriod: "trendLinePeriod" }, usesInheritance: true, ngImport: i0, template: "", isInline: true });
return IgxFinancialIndicatorComponent;
}(IgxFinancialSeriesComponent));
export { IgxFinancialIndicatorComponent };
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxFinancialIndicatorComponent, decorators: [{
type: Component,
args: [{
template: "",
}]
}], ctorParameters: function () { return []; }, propDecorators: { displayType: [{
type: Input
}], ignoreFirst: [{
type: Input
}], trendLineType: [{
type: Input
}], trendLineBrush: [{
type: Input
}], actualTrendLineBrush: [{
type: Input
}], trendLineThickness: [{
type: Input
}], trendLineDashArray: [{
type: Input
}], trendLinePeriod: [{
type: Input
}] } });